From 5b0f613f15457a294973344b3984d2f282a6e2f1 Mon Sep 17 00:00:00 2001 From: may Date: Mon, 3 Mar 2025 17:17:04 +0100 Subject: [PATCH 1/2] parse asnyc closures --- grammar.js | 1 + test/corpus/async.txt | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/grammar.js b/grammar.js index f03417f..765e8de 100644 --- a/grammar.js +++ b/grammar.js @@ -1291,6 +1291,7 @@ module.exports = grammar({ closure_expression: $ => prec(PREC.closure, seq( optional('static'), + optional('async'), optional('move'), field('parameters', $.closure_parameters), choice( diff --git a/test/corpus/async.txt b/test/corpus/async.txt index 8bb76fe..a50180e 100644 --- a/test/corpus/async.txt +++ b/test/corpus/async.txt @@ -87,6 +87,37 @@ async move {} (async_block (block)))) +================================================================================ +Async closure +================================================================================ + +let _ = async || (); + +-------------------------------------------------------------------------------- + +(source_file + (let_declaration + (closure_expression + (closure_parameters) + (unit_expression)))) + +================================================================================ +Async move async move closure +================================================================================ + +let a = async move || async move {}; + +-------------------------------------------------------------------------------- + +(source_file + (let_declaration + (identifier) + (closure_expression + (closure_parameters) + (async_block + (block))))) + + ================================================================================ Try Block ================================================================================ From 4ec3ecbeba92c4316a519f4547baff795c3b9e8d Mon Sep 17 00:00:00 2001 From: may Date: Fri, 7 Mar 2025 02:09:31 +0100 Subject: [PATCH 2/2] chore: tree-sitter generate --- src/grammar.json | 12 + src/parser.c | 216981 ++++++++++++++++++++++---------------------- 2 files changed, 109416 insertions(+), 107577 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 53e0fd7..6301a42 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -7610,6 +7610,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ diff --git a/src/parser.c b/src/parser.c index ba87a65..cf9500b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3785 -#define LARGE_STATE_COUNT 1054 +#define STATE_COUNT 3821 +#define LARGE_STATE_COUNT 1061 #define SYMBOL_COUNT 349 #define ALIAS_COUNT 4 #define TOKEN_COUNT 155 @@ -16,7 +16,7 @@ #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 293 +#define PRODUCTION_ID_COUNT 295 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -2604,20 +2604,20 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [29] = {.index = 25, .length = 1}, [30] = {.index = 26, .length = 2}, [31] = {.index = 26, .length = 2}, - [32] = {.index = 28, .length = 1}, - [33] = {.index = 29, .length = 2}, + [32] = {.index = 28, .length = 2}, + [33] = {.index = 30, .length = 1}, [34] = {.index = 31, .length = 2}, - [35] = {.index = 33, .length = 1}, - [36] = {.index = 33, .length = 1}, - [37] = {.index = 34, .length = 2}, - [38] = {.index = 36, .length = 1}, - [39] = {.index = 37, .length = 2}, - [40] = {.index = 29, .length = 2}, - [41] = {.index = 39, .length = 2}, + [35] = {.index = 33, .length = 2}, + [36] = {.index = 35, .length = 1}, + [37] = {.index = 35, .length = 1}, + [38] = {.index = 36, .length = 2}, + [39] = {.index = 38, .length = 1}, + [40] = {.index = 39, .length = 2}, + [41] = {.index = 31, .length = 2}, [42] = {.index = 41, .length = 1}, [43] = {.index = 42, .length = 1}, [44] = {.index = 43, .length = 2}, - [45] = {.index = 28, .length = 1}, + [45] = {.index = 30, .length = 1}, [46] = {.index = 16, .length = 2}, [47] = {.index = 16, .length = 2}, [48] = {.index = 45, .length = 2}, @@ -2638,7 +2638,7 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [63] = {.index = 53, .length = 2}, [64] = {.index = 60, .length = 1}, [65] = {.index = 60, .length = 1}, - [66] = {.index = 33, .length = 1}, + [66] = {.index = 35, .length = 1}, [67] = {.index = 53, .length = 2}, [68] = {.index = 61, .length = 1}, [69] = {.index = 62, .length = 2}, @@ -2652,17 +2652,17 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [77] = {.index = 71, .length = 1}, [78] = {.index = 71, .length = 1}, [79] = {.index = 72, .length = 2}, - [80] = {.index = 74, .length = 3}, - [81] = {.index = 77, .length = 2}, - [82] = {.index = 79, .length = 3}, - [83] = {.index = 82, .length = 3}, - [84] = {.index = 85, .length = 2}, - [85] = {.index = 85, .length = 2}, + [80] = {.index = 74, .length = 2}, + [81] = {.index = 76, .length = 3}, + [82] = {.index = 79, .length = 2}, + [83] = {.index = 81, .length = 3}, + [84] = {.index = 84, .length = 3}, + [85] = {.index = 87, .length = 2}, [86] = {.index = 87, .length = 2}, - [87] = {.index = 89, .length = 3}, - [88] = {.index = 92, .length = 2}, - [89] = {.index = 94, .length = 1}, - [90] = {.index = 95, .length = 2}, + [87] = {.index = 89, .length = 2}, + [88] = {.index = 91, .length = 3}, + [89] = {.index = 94, .length = 2}, + [90] = {.index = 96, .length = 1}, [91] = {.index = 97, .length = 2}, [92] = {.index = 99, .length = 3}, [93] = {.index = 102, .length = 2}, @@ -2689,179 +2689,181 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [115] = {.index = 128, .length = 1}, [116] = {.index = 125, .length = 3}, [117] = {.index = 18, .length = 1}, - [118] = {.index = 129, .length = 2}, - [119] = {.index = 131, .length = 2}, - [120] = {.index = 131, .length = 2}, - [121] = {.index = 133, .length = 3}, + [118] = {.index = 129, .length = 3}, + [119] = {.index = 132, .length = 2}, + [120] = {.index = 134, .length = 2}, + [121] = {.index = 134, .length = 2}, [122] = {.index = 136, .length = 3}, - [123] = {.index = 139, .length = 4}, - [124] = {.index = 143, .length = 3}, + [123] = {.index = 139, .length = 3}, + [124] = {.index = 142, .length = 4}, [125] = {.index = 146, .length = 3}, - [126] = {.index = 149, .length = 2}, - [127] = {.index = 151, .length = 2}, - [128] = {.index = 153, .length = 2}, - [129] = {.index = 155, .length = 3}, + [126] = {.index = 149, .length = 3}, + [127] = {.index = 152, .length = 2}, + [128] = {.index = 154, .length = 2}, + [129] = {.index = 156, .length = 2}, [130] = {.index = 158, .length = 3}, - [131] = {.index = 153, .length = 2}, - [132] = {.index = 155, .length = 3}, - [133] = {.index = 161, .length = 2}, - [135] = {.index = 163, .length = 3}, - [136] = {.index = 166, .length = 3}, - [137] = {.index = 169, .length = 4}, - [138] = {.index = 129, .length = 2}, - [139] = {.index = 173, .length = 3}, - [140] = {.index = 176, .length = 2}, - [141] = {.index = 178, .length = 3}, - [142] = {.index = 181, .length = 2}, + [131] = {.index = 161, .length = 3}, + [132] = {.index = 156, .length = 2}, + [133] = {.index = 158, .length = 3}, + [134] = {.index = 164, .length = 2}, + [136] = {.index = 166, .length = 2}, + [137] = {.index = 168, .length = 3}, + [138] = {.index = 171, .length = 4}, + [139] = {.index = 132, .length = 2}, + [140] = {.index = 175, .length = 3}, + [141] = {.index = 178, .length = 2}, + [142] = {.index = 180, .length = 3}, [143] = {.index = 183, .length = 2}, - [144] = {.index = 185, .length = 3}, - [145] = {.index = 188, .length = 3}, - [146] = {.index = 191, .length = 2}, - [147] = {.index = 191, .length = 2}, + [144] = {.index = 185, .length = 2}, + [145] = {.index = 187, .length = 3}, + [146] = {.index = 190, .length = 3}, + [147] = {.index = 193, .length = 2}, [148] = {.index = 193, .length = 2}, - [149] = {.index = 195, .length = 3}, - [150] = {.index = 198, .length = 2}, + [149] = {.index = 195, .length = 2}, + [150] = {.index = 197, .length = 3}, [151] = {.index = 200, .length = 2}, - [152] = {.index = 202, .length = 1}, - [153] = {.index = 203, .length = 2}, - [154] = {.index = 205, .length = 1}, - [155] = {.index = 206, .length = 2}, - [156] = {.index = 112, .length = 1}, - [157] = {.index = 208, .length = 2}, + [152] = {.index = 202, .length = 2}, + [153] = {.index = 204, .length = 1}, + [154] = {.index = 205, .length = 2}, + [155] = {.index = 207, .length = 1}, + [156] = {.index = 208, .length = 2}, + [157] = {.index = 112, .length = 1}, [158] = {.index = 210, .length = 2}, - [159] = {.index = 212, .length = 1}, - [161] = {.index = 213, .length = 2}, - [162] = {.index = 215, .length = 3}, - [163] = {.index = 215, .length = 3}, - [164] = {.index = 218, .length = 2}, - [165] = {.index = 220, .length = 4}, - [166] = {.index = 224, .length = 3}, - [167] = {.index = 227, .length = 4}, - [168] = {.index = 231, .length = 2}, - [169] = {.index = 233, .length = 3}, - [170] = {.index = 231, .length = 2}, - [171] = {.index = 233, .length = 3}, - [172] = {.index = 236, .length = 3}, - [173] = {.index = 239, .length = 3}, - [174] = {.index = 242, .length = 3}, - [175] = {.index = 245, .length = 4}, - [176] = {.index = 242, .length = 3}, - [177] = {.index = 245, .length = 4}, - [178] = {.index = 239, .length = 3}, - [179] = {.index = 249, .length = 2}, - [180] = {.index = 251, .length = 2}, - [181] = {.index = 253, .length = 2}, - [182] = {.index = 255, .length = 2}, - [183] = {.index = 257, .length = 1}, - [184] = {.index = 258, .length = 2}, - [185] = {.index = 260, .length = 3}, + [159] = {.index = 212, .length = 2}, + [160] = {.index = 214, .length = 1}, + [162] = {.index = 215, .length = 2}, + [163] = {.index = 217, .length = 3}, + [164] = {.index = 217, .length = 3}, + [165] = {.index = 220, .length = 3}, + [166] = {.index = 223, .length = 2}, + [167] = {.index = 225, .length = 4}, + [168] = {.index = 229, .length = 3}, + [169] = {.index = 232, .length = 4}, + [170] = {.index = 236, .length = 2}, + [171] = {.index = 238, .length = 3}, + [172] = {.index = 236, .length = 2}, + [173] = {.index = 238, .length = 3}, + [174] = {.index = 241, .length = 3}, + [175] = {.index = 244, .length = 3}, + [176] = {.index = 247, .length = 3}, + [177] = {.index = 250, .length = 4}, + [178] = {.index = 247, .length = 3}, + [179] = {.index = 250, .length = 4}, + [180] = {.index = 244, .length = 3}, + [181] = {.index = 254, .length = 2}, + [182] = {.index = 256, .length = 2}, + [183] = {.index = 258, .length = 2}, + [184] = {.index = 260, .length = 2}, + [185] = {.index = 262, .length = 1}, [186] = {.index = 263, .length = 2}, [187] = {.index = 265, .length = 2}, - [188] = {.index = 206, .length = 2}, - [189] = {.index = 267, .length = 4}, - [190] = {.index = 271, .length = 2}, - [191] = {.index = 273, .length = 3}, - [192] = {.index = 276, .length = 3}, - [193] = {.index = 279, .length = 3}, - [194] = {.index = 282, .length = 3}, - [195] = {.index = 285, .length = 4}, - [196] = {.index = 289, .length = 2}, + [188] = {.index = 267, .length = 2}, + [189] = {.index = 208, .length = 2}, + [190] = {.index = 269, .length = 4}, + [191] = {.index = 273, .length = 2}, + [192] = {.index = 275, .length = 3}, + [193] = {.index = 278, .length = 3}, + [194] = {.index = 281, .length = 3}, + [195] = {.index = 284, .length = 3}, + [196] = {.index = 287, .length = 4}, [197] = {.index = 291, .length = 2}, - [198] = {.index = 291, .length = 2}, - [199] = {.index = 293, .length = 3}, - [200] = {.index = 296, .length = 4}, - [201] = {.index = 300, .length = 3}, - [202] = {.index = 258, .length = 2}, - [203] = {.index = 303, .length = 2}, - [204] = {.index = 305, .length = 3}, - [205] = {.index = 308, .length = 3}, - [206] = {.index = 311, .length = 2}, - [207] = {.index = 313, .length = 3}, - [208] = {.index = 206, .length = 2}, - [209] = {.index = 316, .length = 3}, - [210] = {.index = 319, .length = 2}, + [198] = {.index = 293, .length = 2}, + [199] = {.index = 293, .length = 2}, + [200] = {.index = 295, .length = 3}, + [201] = {.index = 298, .length = 4}, + [202] = {.index = 302, .length = 3}, + [203] = {.index = 263, .length = 2}, + [204] = {.index = 305, .length = 2}, + [205] = {.index = 307, .length = 3}, + [206] = {.index = 310, .length = 3}, + [207] = {.index = 313, .length = 2}, + [208] = {.index = 315, .length = 3}, + [209] = {.index = 208, .length = 2}, + [210] = {.index = 318, .length = 3}, [211] = {.index = 321, .length = 2}, - [212] = {.index = 323, .length = 3}, - [213] = {.index = 326, .length = 3}, - [214] = {.index = 329, .length = 2}, - [215] = {.index = 331, .length = 4}, - [216] = {.index = 335, .length = 5}, - [217] = {.index = 340, .length = 4}, - [218] = {.index = 344, .length = 3}, - [219] = {.index = 344, .length = 3}, - [220] = {.index = 347, .length = 3}, - [221] = {.index = 350, .length = 4}, - [222] = {.index = 347, .length = 3}, - [223] = {.index = 350, .length = 4}, - [224] = {.index = 354, .length = 4}, - [225] = {.index = 354, .length = 4}, - [226] = {.index = 358, .length = 3}, - [227] = {.index = 361, .length = 3}, - [228] = {.index = 364, .length = 3}, - [229] = {.index = 367, .length = 2}, - [230] = {.index = 369, .length = 2}, - [231] = {.index = 129, .length = 2}, - [232] = {.index = 371, .length = 3}, - [233] = {.index = 374, .length = 2}, + [212] = {.index = 323, .length = 2}, + [213] = {.index = 325, .length = 3}, + [214] = {.index = 328, .length = 3}, + [215] = {.index = 331, .length = 2}, + [216] = {.index = 333, .length = 4}, + [217] = {.index = 337, .length = 5}, + [218] = {.index = 342, .length = 4}, + [219] = {.index = 346, .length = 3}, + [220] = {.index = 346, .length = 3}, + [221] = {.index = 349, .length = 3}, + [222] = {.index = 352, .length = 4}, + [223] = {.index = 349, .length = 3}, + [224] = {.index = 352, .length = 4}, + [225] = {.index = 356, .length = 4}, + [226] = {.index = 356, .length = 4}, + [227] = {.index = 360, .length = 3}, + [228] = {.index = 363, .length = 3}, + [229] = {.index = 366, .length = 3}, + [230] = {.index = 369, .length = 3}, + [231] = {.index = 372, .length = 2}, + [232] = {.index = 374, .length = 2}, + [233] = {.index = 132, .length = 2}, [234] = {.index = 376, .length = 3}, - [235] = {.index = 374, .length = 2}, - [236] = {.index = 376, .length = 3}, - [237] = {.index = 379, .length = 3}, - [238] = {.index = 382, .length = 4}, - [239] = {.index = 379, .length = 3}, - [240] = {.index = 382, .length = 4}, - [241] = {.index = 386, .length = 4}, - [242] = {.index = 390, .length = 4}, - [243] = {.index = 394, .length = 3}, - [244] = {.index = 397, .length = 4}, - [245] = {.index = 401, .length = 2}, - [246] = {.index = 403, .length = 3}, - [247] = {.index = 406, .length = 3}, - [248] = {.index = 409, .length = 3}, - [249] = {.index = 412, .length = 4}, - [250] = {.index = 416, .length = 2}, - [251] = {.index = 418, .length = 3}, - [252] = {.index = 421, .length = 4}, - [253] = {.index = 425, .length = 3}, - [254] = {.index = 428, .length = 3}, - [255] = {.index = 431, .length = 2}, + [235] = {.index = 379, .length = 2}, + [236] = {.index = 381, .length = 3}, + [237] = {.index = 379, .length = 2}, + [238] = {.index = 381, .length = 3}, + [239] = {.index = 384, .length = 3}, + [240] = {.index = 387, .length = 4}, + [241] = {.index = 384, .length = 3}, + [242] = {.index = 387, .length = 4}, + [243] = {.index = 391, .length = 4}, + [244] = {.index = 395, .length = 4}, + [245] = {.index = 399, .length = 3}, + [246] = {.index = 402, .length = 4}, + [247] = {.index = 406, .length = 2}, + [248] = {.index = 408, .length = 3}, + [249] = {.index = 411, .length = 3}, + [250] = {.index = 414, .length = 3}, + [251] = {.index = 417, .length = 4}, + [252] = {.index = 421, .length = 2}, + [253] = {.index = 423, .length = 3}, + [254] = {.index = 426, .length = 4}, + [255] = {.index = 430, .length = 3}, [256] = {.index = 433, .length = 3}, - [257] = {.index = 436, .length = 5}, - [258] = {.index = 441, .length = 4}, - [259] = {.index = 441, .length = 4}, - [260] = {.index = 445, .length = 3}, - [261] = {.index = 448, .length = 3}, - [262] = {.index = 451, .length = 3}, - [263] = {.index = 454, .length = 3}, - [264] = {.index = 457, .length = 2}, + [257] = {.index = 436, .length = 2}, + [258] = {.index = 438, .length = 3}, + [259] = {.index = 441, .length = 5}, + [260] = {.index = 446, .length = 4}, + [261] = {.index = 446, .length = 4}, + [262] = {.index = 450, .length = 3}, + [263] = {.index = 453, .length = 3}, + [264] = {.index = 456, .length = 3}, [265] = {.index = 459, .length = 3}, - [266] = {.index = 459, .length = 3}, - [267] = {.index = 462, .length = 3}, - [268] = {.index = 465, .length = 4}, - [269] = {.index = 462, .length = 3}, - [270] = {.index = 465, .length = 4}, - [271] = {.index = 469, .length = 4}, - [272] = {.index = 469, .length = 4}, - [273] = {.index = 473, .length = 4}, - [274] = {.index = 477, .length = 5}, - [275] = {.index = 482, .length = 4}, - [276] = {.index = 486, .length = 2}, - [277] = {.index = 488, .length = 3}, - [278] = {.index = 491, .length = 4}, - [279] = {.index = 495, .length = 4}, - [280] = {.index = 499, .length = 3}, - [281] = {.index = 502, .length = 4}, - [282] = {.index = 506, .length = 4}, - [283] = {.index = 510, .length = 3}, - [284] = {.index = 513, .length = 4}, - [285] = {.index = 513, .length = 4}, - [286] = {.index = 517, .length = 5}, - [287] = {.index = 522, .length = 4}, - [288] = {.index = 526, .length = 5}, - [289] = {.index = 531, .length = 4}, - [290] = {.index = 535, .length = 4}, - [291] = {.index = 539, .length = 3}, - [292] = {.index = 542, .length = 5}, + [266] = {.index = 462, .length = 2}, + [267] = {.index = 464, .length = 3}, + [268] = {.index = 464, .length = 3}, + [269] = {.index = 467, .length = 3}, + [270] = {.index = 470, .length = 4}, + [271] = {.index = 467, .length = 3}, + [272] = {.index = 470, .length = 4}, + [273] = {.index = 474, .length = 4}, + [274] = {.index = 474, .length = 4}, + [275] = {.index = 478, .length = 4}, + [276] = {.index = 482, .length = 5}, + [277] = {.index = 487, .length = 4}, + [278] = {.index = 491, .length = 2}, + [279] = {.index = 493, .length = 3}, + [280] = {.index = 496, .length = 4}, + [281] = {.index = 500, .length = 4}, + [282] = {.index = 504, .length = 3}, + [283] = {.index = 507, .length = 4}, + [284] = {.index = 511, .length = 4}, + [285] = {.index = 515, .length = 3}, + [286] = {.index = 518, .length = 4}, + [287] = {.index = 518, .length = 4}, + [288] = {.index = 522, .length = 5}, + [289] = {.index = 527, .length = 4}, + [290] = {.index = 531, .length = 5}, + [291] = {.index = 536, .length = 4}, + [292] = {.index = 540, .length = 4}, + [293] = {.index = 544, .length = 3}, + [294] = {.index = 547, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2913,26 +2915,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 1}, {field_trait, 0}, [28] = + {field_body, 2}, + {field_parameters, 1}, + [30] = {field_macro, 0}, - [29] = + [31] = {field_body, 2}, {field_name, 1}, - [31] = + [33] = {field_condition, 1}, {field_consequence, 2}, - [33] = + [35] = {field_name, 0}, - [34] = + [36] = {field_body, 2}, {field_type, 1}, - [36] = + [38] = {field_pattern, 1}, - [37] = - {field_body, 2}, - {field_value, 1}, [39] = {field_body, 2}, - {field_parameters, 1}, + {field_value, 1}, [41] = {field_list, 1}, [42] = @@ -2986,40 +2988,40 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_arguments, 1}, [72] = {field_body, 3}, - {field_name, 1}, + {field_parameters, 2}, [74] = {field_body, 3}, {field_name, 1}, + [76] = + {field_body, 3}, + {field_name, 1}, {field_type_parameters, 2}, - [77] = + [79] = {field_name, 1}, {field_parameters, 2}, - [79] = + [81] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [82] = + [84] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [85] = + [87] = {field_bounds, 1}, {field_name, 0}, - [87] = + [89] = {field_type, 2}, {field_type_parameters, 1}, - [89] = + [91] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [92] = + [94] = {field_body, 3}, {field_type, 1}, - [94] = + [96] = {field_pattern, 2}, - [95] = - {field_body, 3}, - {field_parameters, 2}, [97] = {field_name, 1}, {field_type_parameters, 2}, @@ -3071,560 +3073,567 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [128] = {field_parameters, 3}, [129] = + {field_body, 4}, + {field_parameters, 1}, + {field_return_type, 3}, + [132] = {field_name, 1}, {field_type, 3}, - [131] = + [134] = {field_bounds, 1}, {field_left, 0}, - [133] = + [136] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [136] = + [139] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [139] = + [142] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [143] = + [146] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [146] = + [149] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [149] = + [152] = {field_pattern, 1}, {field_value, 3}, - [151] = + [154] = {field_default_type, 2}, {field_name, 0}, - [153] = + [156] = {field_trait, 1}, {field_type, 3}, - [155] = + [158] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [158] = + [161] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [161] = + [164] = {field_alternative, 3}, {field_pattern, 1}, - [163] = - {field_body, 4}, - {field_parameters, 1}, - {field_return_type, 3}, [166] = + {field_body, 4}, + {field_parameters, 3}, + [168] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [169] = + [171] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [173] = + [175] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [176] = + [178] = {field_type, 3}, {field_type_parameters, 2}, - [178] = + [180] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [181] = + [183] = {field_body, 4}, {field_type, 2}, - [183] = + [185] = {field_body, 4}, {field_name, 2}, - [185] = + [187] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [188] = + [190] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [191] = + [193] = {field_field, 0}, {field_value, 2}, - [193] = + [195] = {field_name, 2}, {field_parameters, 3}, - [195] = + [197] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [198] = + [200] = {field_name, 2}, {field_type_parameters, 3}, - [200] = + [202] = {field_body, 4}, {field_name, 3}, - [202] = + [204] = {field_name, 3}, - [203] = + [205] = {field_body, 4}, {field_condition, 3}, - [205] = + [207] = {field_length, 4}, - [206] = + [208] = {field_name, 0}, {field_type, 2}, - [208] = + [210] = {field_name, 0}, {field_pattern, 2}, - [210] = + [212] = {field_element, 1}, {field_length, 3}, - [212] = + [214] = {field_pattern, 0}, - [213] = + [215] = {field_parameters, 2}, {field_return_type, 4}, - [215] = + [217] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [218] = + [220] = + {field_body, 5}, + {field_parameters, 2}, + {field_return_type, 4}, + [223] = {field_name, 0}, {field_value, 2}, - [220] = + [225] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [224] = + [229] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [227] = + [232] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [231] = + [236] = {field_trait, 2}, {field_type, 4}, - [233] = + [238] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [236] = + [241] = {field_bounds, 1}, {field_default_type, 3}, {field_name, 0}, - [239] = + [244] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [242] = + [247] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [245] = + [250] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [249] = + [254] = {field_pattern, 2}, {field_type, 4}, - [251] = + [256] = {field_pattern, 2}, {field_value, 4}, - [253] = + [258] = {field_alternative, 4}, {field_pattern, 2}, - [255] = + [260] = {field_pattern, 0}, {field_value, 2}, - [257] = + [262] = {field_condition, 2}, - [258] = + [263] = {field_name, 2}, {field_type, 4}, - [260] = - {field_body, 5}, - {field_parameters, 2}, - {field_return_type, 4}, - [263] = + [265] = {field_type, 1}, {field_type, 2, .inherited = true}, - [265] = + [267] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [267] = + [269] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [271] = + [273] = {field_name, 1}, {field_type, 4}, - [273] = + [275] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [276] = + [278] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [279] = + [281] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [282] = + [284] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [285] = + [287] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [289] = + [291] = {field_alias, 4}, {field_name, 2}, - [291] = + [293] = {field_field, 1}, {field_value, 3}, - [293] = + [295] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [296] = + [298] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [300] = + [302] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [303] = + [305] = {field_body, 5}, {field_name, 3}, - [305] = + [307] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [308] = + [310] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [311] = + [313] = {field_name, 3}, {field_parameters, 4}, - [313] = + [315] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [316] = + [318] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [319] = + [321] = {field_name, 1}, {field_pattern, 3}, - [321] = + [323] = {field_parameters, 3}, {field_return_type, 5}, - [323] = + [325] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [326] = + [328] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [329] = + [331] = {field_name, 1}, {field_value, 3}, - [331] = + [333] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [335] = + [337] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [340] = + [342] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [344] = + [346] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [347] = + [349] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [350] = + [352] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [354] = + [356] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [358] = + [360] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [361] = + [363] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [364] = + [366] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [367] = + [369] = + {field_body, 6}, + {field_parameters, 3}, + {field_return_type, 5}, + [372] = {field_name, 3}, {field_type, 5}, - [369] = + [374] = {field_type, 2}, {field_type, 3, .inherited = true}, - [371] = + [376] = {field_name, 1}, {field_type, 5}, {field_type_parameters, 2}, - [374] = + [379] = {field_trait, 3}, {field_type, 5}, - [376] = + [381] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [379] = + [384] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [382] = + [387] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [386] = + [391] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [390] = + [395] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [394] = + [399] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [397] = + [402] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [401] = + [406] = {field_name, 2}, {field_type, 5}, - [403] = + [408] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [406] = + [411] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [409] = + [414] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [412] = + [417] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [416] = + [421] = {field_alias, 5}, {field_name, 3}, - [418] = + [423] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [421] = + [426] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [425] = + [430] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [428] = + [433] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [431] = + [436] = {field_name, 2}, {field_pattern, 4}, - [433] = + [438] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [436] = + [441] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [441] = + [446] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [445] = + [450] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [448] = + [453] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [451] = + [456] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [454] = + [459] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [457] = + [462] = {field_type, 3}, {field_type, 4, .inherited = true}, - [459] = + [464] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [462] = + [467] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [465] = + [470] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [469] = + [474] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [473] = + [478] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [477] = + [482] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [482] = + [487] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [486] = + [491] = {field_name, 4}, {field_type, 6}, - [488] = + [493] = {field_name, 2}, {field_type, 6}, {field_type_parameters, 3}, - [491] = + [496] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [495] = + [500] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [499] = + [504] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [502] = + [507] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [506] = + [511] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [510] = + [515] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [513] = + [518] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [517] = + [522] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [522] = + [527] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [526] = + [531] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [531] = + [536] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [535] = + [540] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [539] = + [544] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [542] = + [547] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3674,13 +3683,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [30] = { [0] = alias_sym_type_identifier, }, - [32] = { + [33] = { [0] = sym_identifier, }, - [33] = { + [34] = { [1] = alias_sym_type_identifier, }, - [35] = { + [36] = { [0] = alias_sym_type_identifier, }, [47] = { @@ -3730,13 +3739,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [77] = { [0] = sym_identifier, }, - [79] = { + [80] = { [1] = alias_sym_type_identifier, }, - [80] = { + [81] = { [1] = alias_sym_type_identifier, }, - [84] = { + [85] = { [0] = alias_sym_type_identifier, }, [91] = { @@ -3775,27 +3784,24 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [117] = { [0] = sym_identifier, }, - [120] = { + [121] = { [0] = alias_sym_type_identifier, }, - [121] = { + [122] = { [1] = alias_sym_type_identifier, }, - [127] = { + [128] = { [0] = alias_sym_type_identifier, }, - [128] = { + [129] = { [1] = alias_sym_type_identifier, }, - [129] = { + [130] = { [1] = alias_sym_type_identifier, }, - [134] = { + [135] = { [3] = sym_identifier, }, - [136] = { - [1] = alias_sym_type_identifier, - }, [137] = { [1] = alias_sym_type_identifier, }, @@ -3805,8 +3811,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [139] = { [1] = alias_sym_type_identifier, }, - [143] = { - [2] = alias_sym_type_identifier, + [140] = { + [1] = alias_sym_type_identifier, }, [144] = { [2] = alias_sym_type_identifier, @@ -3814,53 +3820,53 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [145] = { [2] = alias_sym_type_identifier, }, - [147] = { + [146] = { + [2] = alias_sym_type_identifier, + }, + [148] = { [0] = alias_sym_field_identifier, }, - [150] = { + [151] = { [2] = alias_sym_type_identifier, }, - [151] = { + [152] = { [3] = alias_sym_type_identifier, }, - [155] = { + [156] = { [0] = alias_sym_type_identifier, }, - [156] = { + [157] = { [2] = alias_sym_shorthand_field_identifier, }, - [157] = { + [158] = { [0] = alias_sym_field_identifier, }, - [160] = { + [161] = { [1] = alias_sym_type_identifier, }, - [162] = { + [163] = { [1] = alias_sym_type_identifier, }, - [168] = { + [170] = { [2] = alias_sym_type_identifier, }, - [169] = { + [171] = { [2] = alias_sym_type_identifier, }, - [172] = { + [174] = { [0] = alias_sym_type_identifier, }, - [173] = { + [175] = { [1] = alias_sym_type_identifier, }, - [174] = { + [176] = { [2] = alias_sym_type_identifier, }, - [175] = { + [177] = { [2] = alias_sym_type_identifier, }, - [188] = { - [0] = alias_sym_field_identifier, - }, [189] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [190] = { [1] = alias_sym_type_identifier, @@ -3868,8 +3874,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [191] = { [1] = alias_sym_type_identifier, }, - [193] = { - [2] = alias_sym_type_identifier, + [192] = { + [1] = alias_sym_type_identifier, }, [194] = { [2] = alias_sym_type_identifier, @@ -3877,14 +3883,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [195] = { [2] = alias_sym_type_identifier, }, - [198] = { - [1] = alias_sym_field_identifier, - }, - [202] = { + [196] = { [2] = alias_sym_type_identifier, }, + [199] = { + [1] = alias_sym_field_identifier, + }, [203] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [204] = { [3] = alias_sym_type_identifier, @@ -3892,85 +3898,88 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [205] = { [3] = alias_sym_type_identifier, }, - [209] = { - [0] = alias_sym_type_identifier, + [206] = { + [3] = alias_sym_type_identifier, }, [210] = { + [0] = alias_sym_type_identifier, + }, + [211] = { [1] = alias_sym_field_identifier, }, - [218] = { + [219] = { [2] = alias_sym_type_identifier, }, - [220] = { + [221] = { [3] = alias_sym_type_identifier, }, - [221] = { + [222] = { [3] = alias_sym_type_identifier, }, - [224] = { + [225] = { [2] = alias_sym_type_identifier, }, - [231] = { + [233] = { [1] = alias_sym_field_identifier, }, - [232] = { + [234] = { [1] = alias_sym_type_identifier, }, - [233] = { + [235] = { [3] = alias_sym_type_identifier, }, - [234] = { + [236] = { [3] = alias_sym_type_identifier, }, - [237] = { + [239] = { [3] = alias_sym_type_identifier, }, - [238] = { + [240] = { [3] = alias_sym_type_identifier, }, - [241] = { + [243] = { [2] = alias_sym_type_identifier, }, - [245] = { + [247] = { [2] = alias_sym_type_identifier, }, - [246] = { + [248] = { [2] = alias_sym_type_identifier, }, - [247] = { + [249] = { [3] = alias_sym_type_identifier, }, - [248] = { + [250] = { [3] = alias_sym_type_identifier, }, - [249] = { + [251] = { [3] = alias_sym_type_identifier, }, - [255] = { + [257] = { [2] = alias_sym_field_identifier, }, - [258] = { + [260] = { [3] = alias_sym_type_identifier, }, - [265] = { + [267] = { [3] = alias_sym_type_identifier, }, - [267] = { + [269] = { [4] = alias_sym_type_identifier, }, - [268] = { + [270] = { [4] = alias_sym_type_identifier, }, - [271] = { + [273] = { [3] = alias_sym_type_identifier, }, - [277] = { + [279] = { [2] = alias_sym_type_identifier, }, - [278] = { + [280] = { [3] = alias_sym_type_identifier, }, - [284] = { + [286] = { [4] = alias_sym_type_identifier, }, }; @@ -3995,145 +4004,145 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 3, - [10] = 5, + [9] = 2, + [10] = 3, [11] = 11, - [12] = 11, - [13] = 6, - [14] = 8, - [15] = 5, + [12] = 6, + [13] = 8, + [14] = 2, + [15] = 3, [16] = 11, [17] = 6, - [18] = 3, - [19] = 5, + [18] = 2, + [19] = 3, [20] = 11, [21] = 6, - [22] = 3, - [23] = 5, + [22] = 2, + [23] = 3, [24] = 11, [25] = 6, [26] = 3, - [27] = 5, - [28] = 11, - [29] = 6, + [27] = 11, + [28] = 6, + [29] = 2, [30] = 3, - [31] = 5, - [32] = 11, - [33] = 6, - [34] = 3, + [31] = 11, + [32] = 6, + [33] = 2, + [34] = 11, [35] = 35, [36] = 36, - [37] = 37, + [37] = 36, [38] = 38, [39] = 39, - [40] = 39, + [40] = 40, [41] = 41, - [42] = 41, + [42] = 39, [43] = 35, - [44] = 41, - [45] = 39, - [46] = 35, - [47] = 38, - [48] = 36, - [49] = 37, - [50] = 35, - [51] = 39, - [52] = 41, - [53] = 41, - [54] = 39, - [55] = 38, + [44] = 35, + [45] = 38, + [46] = 40, + [47] = 41, + [48] = 39, + [49] = 36, + [50] = 39, + [51] = 36, + [52] = 35, + [53] = 38, + [54] = 40, + [55] = 36, [56] = 36, - [57] = 41, - [58] = 39, - [59] = 41, - [60] = 39, - [61] = 41, + [57] = 39, + [58] = 36, + [59] = 40, + [60] = 41, + [61] = 39, [62] = 39, - [63] = 37, - [64] = 37, - [65] = 38, - [66] = 36, + [63] = 36, + [64] = 39, + [65] = 41, + [66] = 38, [67] = 67, [68] = 68, [69] = 69, - [70] = 70, - [71] = 68, - [72] = 69, + [70] = 68, + [71] = 69, + [72] = 72, [73] = 73, [74] = 74, - [75] = 73, - [76] = 76, - [77] = 74, - [78] = 78, - [79] = 79, - [80] = 76, + [75] = 75, + [76] = 75, + [77] = 72, + [78] = 73, + [79] = 74, + [80] = 80, [81] = 81, [82] = 82, - [83] = 70, + [83] = 83, [84] = 84, [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 84, - [91] = 91, - [92] = 91, - [93] = 93, + [90] = 90, + [91] = 85, + [92] = 86, + [93] = 87, [94] = 94, [95] = 95, - [96] = 95, + [96] = 84, [97] = 97, - [98] = 84, - [99] = 97, - [100] = 95, - [101] = 97, - [102] = 91, - [103] = 93, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 88, + [102] = 89, + [103] = 90, [104] = 94, - [105] = 105, - [106] = 95, - [107] = 97, - [108] = 105, - [109] = 85, - [110] = 86, - [111] = 84, - [112] = 91, - [113] = 93, - [114] = 94, - [115] = 87, - [116] = 95, - [117] = 97, + [105] = 98, + [106] = 99, + [107] = 85, + [108] = 97, + [109] = 87, + [110] = 110, + [111] = 95, + [112] = 84, + [113] = 97, + [114] = 85, + [115] = 86, + [116] = 87, + [117] = 95, [118] = 84, - [119] = 88, - [120] = 89, - [121] = 121, - [122] = 91, - [123] = 93, - [124] = 94, - [125] = 93, - [126] = 95, - [127] = 97, - [128] = 91, - [129] = 129, - [130] = 94, - [131] = 93, - [132] = 94, - [133] = 84, + [119] = 97, + [120] = 85, + [121] = 86, + [122] = 87, + [123] = 95, + [124] = 95, + [125] = 84, + [126] = 97, + [127] = 84, + [128] = 97, + [129] = 85, + [130] = 86, + [131] = 87, + [132] = 95, + [133] = 86, [134] = 134, - [135] = 135, + [135] = 134, [136] = 136, [137] = 137, - [138] = 135, + [138] = 138, [139] = 139, - [140] = 134, + [140] = 139, [141] = 141, - [142] = 141, - [143] = 143, - [144] = 139, + [142] = 137, + [143] = 138, + [144] = 144, [145] = 145, [146] = 146, - [147] = 147, + [147] = 146, [148] = 148, [149] = 149, [150] = 150, @@ -4143,125 +4152,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 156, - [157] = 145, + [157] = 157, [158] = 158, [159] = 159, [160] = 160, - [161] = 158, + [161] = 161, [162] = 162, [163] = 163, - [164] = 164, + [164] = 144, [165] = 165, - [166] = 160, + [166] = 145, [167] = 167, [168] = 168, [169] = 169, [170] = 170, [171] = 171, - [172] = 143, + [172] = 172, [173] = 173, [174] = 174, [175] = 175, - [176] = 173, + [176] = 156, [177] = 177, - [178] = 178, - [179] = 162, - [180] = 164, - [181] = 181, + [178] = 175, + [179] = 179, + [180] = 180, + [181] = 179, [182] = 182, [183] = 183, [184] = 184, - [185] = 171, - [186] = 175, - [187] = 153, - [188] = 168, - [189] = 189, - [190] = 189, - [191] = 153, - [192] = 168, - [193] = 189, - [194] = 153, - [195] = 168, - [196] = 189, + [185] = 170, + [186] = 161, + [187] = 168, + [188] = 165, + [189] = 169, + [190] = 161, + [191] = 168, + [192] = 169, + [193] = 161, + [194] = 168, + [195] = 169, + [196] = 154, [197] = 197, [198] = 198, [199] = 199, [200] = 200, - [201] = 201, - [202] = 170, - [203] = 203, - [204] = 177, - [205] = 147, - [206] = 149, - [207] = 151, - [208] = 152, + [201] = 148, + [202] = 158, + [203] = 167, + [204] = 197, + [205] = 171, + [206] = 173, + [207] = 207, + [208] = 208, [209] = 209, [210] = 210, [211] = 211, - [212] = 199, - [213] = 213, - [214] = 213, + [212] = 212, + [213] = 198, + [214] = 199, [215] = 215, [216] = 216, - [217] = 217, + [217] = 216, [218] = 218, [219] = 219, - [220] = 219, + [220] = 220, [221] = 221, - [222] = 222, - [223] = 216, + [222] = 220, + [223] = 220, [224] = 215, - [225] = 221, - [226] = 226, - [227] = 226, - [228] = 216, - [229] = 229, - [230] = 216, - [231] = 231, - [232] = 217, - [233] = 218, - [234] = 234, - [235] = 231, - [236] = 231, - [237] = 229, - [238] = 229, - [239] = 239, - [240] = 240, - [241] = 239, - [242] = 240, - [243] = 231, - [244] = 234, - [245] = 216, - [246] = 219, - [247] = 234, - [248] = 229, - [249] = 219, - [250] = 231, - [251] = 226, - [252] = 229, - [253] = 253, + [225] = 225, + [226] = 216, + [227] = 219, + [228] = 219, + [229] = 220, + [230] = 219, + [231] = 215, + [232] = 216, + [233] = 216, + [234] = 225, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 220, + [240] = 218, + [241] = 221, + [242] = 242, + [243] = 238, + [244] = 242, + [245] = 225, + [246] = 225, + [247] = 236, + [248] = 248, + [249] = 235, + [250] = 242, + [251] = 236, + [252] = 215, + [253] = 248, [254] = 254, - [255] = 255, - [256] = 253, - [257] = 255, - [258] = 253, - [259] = 254, - [260] = 254, - [261] = 255, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, + [255] = 254, + [256] = 215, + [257] = 219, + [258] = 258, + [259] = 259, + [260] = 259, + [261] = 261, + [262] = 258, + [263] = 258, + [264] = 261, + [265] = 261, + [266] = 259, [267] = 267, [268] = 268, [269] = 269, - [270] = 270, + [270] = 269, [271] = 271, - [272] = 272, + [272] = 271, [273] = 273, [274] = 274, - [275] = 263, + [275] = 275, [276] = 276, [277] = 277, [278] = 278, @@ -4272,114 +4281,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [283] = 283, [284] = 284, [285] = 285, - [286] = 286, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, + [286] = 273, + [287] = 274, + [288] = 284, + [289] = 275, + [290] = 276, + [291] = 283, + [292] = 284, [293] = 293, - [294] = 294, - [295] = 295, + [294] = 284, + [295] = 277, [296] = 296, - [297] = 297, + [297] = 284, [298] = 298, - [299] = 290, - [300] = 300, - [301] = 265, - [302] = 266, - [303] = 270, - [304] = 274, - [305] = 276, - [306] = 277, - [307] = 278, - [308] = 279, - [309] = 280, - [310] = 281, - [311] = 282, - [312] = 289, - [313] = 296, - [314] = 314, + [299] = 299, + [300] = 271, + [301] = 301, + [302] = 273, + [303] = 274, + [304] = 275, + [305] = 305, + [306] = 276, + [307] = 277, + [308] = 278, + [309] = 279, + [310] = 310, + [311] = 278, + [312] = 279, + [313] = 280, + [314] = 269, [315] = 315, - [316] = 316, - [317] = 300, - [318] = 300, - [319] = 319, - [320] = 265, - [321] = 266, - [322] = 270, - [323] = 274, - [324] = 276, - [325] = 277, - [326] = 278, - [327] = 279, - [328] = 280, - [329] = 281, - [330] = 282, - [331] = 296, - [332] = 332, - [333] = 300, - [334] = 265, - [335] = 266, - [336] = 270, - [337] = 274, - [338] = 276, - [339] = 277, - [340] = 278, - [341] = 279, - [342] = 280, - [343] = 281, - [344] = 282, - [345] = 289, - [346] = 296, - [347] = 289, + [316] = 280, + [317] = 315, + [318] = 318, + [319] = 281, + [320] = 282, + [321] = 281, + [322] = 322, + [323] = 271, + [324] = 273, + [325] = 325, + [326] = 326, + [327] = 274, + [328] = 275, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 284, + [333] = 301, + [334] = 277, + [335] = 278, + [336] = 336, + [337] = 279, + [338] = 280, + [339] = 315, + [340] = 340, + [341] = 341, + [342] = 281, + [343] = 282, + [344] = 284, + [345] = 282, + [346] = 346, + [347] = 347, [348] = 348, - [349] = 289, - [350] = 289, - [351] = 289, - [352] = 290, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 354, + [349] = 349, + [350] = 350, + [351] = 267, + [352] = 285, + [353] = 285, + [354] = 301, + [355] = 269, + [356] = 356, [357] = 357, [358] = 358, - [359] = 290, - [360] = 354, - [361] = 314, + [359] = 359, + [360] = 360, + [361] = 361, [362] = 362, - [363] = 363, - [364] = 364, - [365] = 315, - [366] = 262, - [367] = 291, - [368] = 316, - [369] = 332, - [370] = 353, - [371] = 355, - [372] = 362, - [373] = 264, - [374] = 268, - [375] = 271, - [376] = 263, - [377] = 285, - [378] = 287, - [379] = 288, - [380] = 295, - [381] = 298, - [382] = 315, - [383] = 316, - [384] = 355, - [385] = 263, - [386] = 315, - [387] = 316, - [388] = 289, - [389] = 389, - [390] = 390, + [363] = 284, + [364] = 341, + [365] = 285, + [366] = 299, + [367] = 340, + [368] = 368, + [369] = 360, + [370] = 370, + [371] = 370, + [372] = 305, + [373] = 310, + [374] = 293, + [375] = 318, + [376] = 325, + [377] = 329, + [378] = 336, + [379] = 348, + [380] = 350, + [381] = 359, + [382] = 362, + [383] = 341, + [384] = 360, + [385] = 301, + [386] = 310, + [387] = 336, + [388] = 388, + [389] = 341, + [390] = 360, [391] = 391, - [392] = 392, - [393] = 393, + [392] = 336, + [393] = 276, [394] = 394, [395] = 395, [396] = 396, @@ -4387,108 +4396,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [398] = 398, [399] = 399, [400] = 400, - [401] = 200, + [401] = 401, [402] = 402, [403] = 403, [404] = 404, [405] = 405, [406] = 406, - [407] = 394, - [408] = 198, + [407] = 407, + [408] = 408, [409] = 409, [410] = 410, - [411] = 411, + [411] = 210, [412] = 412, [413] = 413, [414] = 414, [415] = 415, [416] = 416, - [417] = 417, - [418] = 418, - [419] = 394, + [417] = 211, + [418] = 415, + [419] = 419, [420] = 420, [421] = 421, - [422] = 422, - [423] = 416, + [422] = 415, + [423] = 423, [424] = 424, [425] = 425, [426] = 426, [427] = 427, - [428] = 425, + [428] = 409, [429] = 429, - [430] = 429, - [431] = 429, - [432] = 426, - [433] = 427, - [434] = 426, - [435] = 435, - [436] = 435, - [437] = 437, - [438] = 438, - [439] = 439, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 430, + [435] = 431, + [436] = 432, + [437] = 430, + [438] = 433, + [439] = 431, [440] = 440, - [441] = 439, + [441] = 440, [442] = 442, - [443] = 442, - [444] = 439, - [445] = 440, - [446] = 440, - [447] = 442, - [448] = 440, - [449] = 442, - [450] = 439, - [451] = 451, - [452] = 451, - [453] = 453, - [454] = 451, - [455] = 451, + [443] = 443, + [444] = 444, + [445] = 444, + [446] = 446, + [447] = 447, + [448] = 446, + [449] = 446, + [450] = 444, + [451] = 446, + [452] = 447, + [453] = 447, + [454] = 447, + [455] = 444, [456] = 456, - [457] = 456, + [457] = 457, [458] = 456, - [459] = 319, + [459] = 456, [460] = 456, - [461] = 392, - [462] = 462, - [463] = 389, - [464] = 390, - [465] = 391, - [466] = 462, - [467] = 393, - [468] = 462, - [469] = 462, - [470] = 421, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 399, - [475] = 405, - [476] = 397, - [477] = 420, - [478] = 400, - [479] = 414, - [480] = 415, - [481] = 410, - [482] = 413, - [483] = 418, - [484] = 412, - [485] = 409, - [486] = 406, - [487] = 395, - [488] = 411, - [489] = 403, - [490] = 398, - [491] = 422, - [492] = 492, - [493] = 492, - [494] = 494, - [495] = 495, - [496] = 496, + [461] = 461, + [462] = 368, + [463] = 461, + [464] = 461, + [465] = 461, + [466] = 466, + [467] = 466, + [468] = 466, + [469] = 398, + [470] = 394, + [471] = 395, + [472] = 397, + [473] = 396, + [474] = 466, + [475] = 427, + [476] = 404, + [477] = 410, + [478] = 420, + [479] = 425, + [480] = 419, + [481] = 400, + [482] = 416, + [483] = 401, + [484] = 399, + [485] = 402, + [486] = 413, + [487] = 407, + [488] = 488, + [489] = 424, + [490] = 490, + [491] = 491, + [492] = 403, + [493] = 406, + [494] = 414, + [495] = 412, + [496] = 488, [497] = 497, - [498] = 498, + [498] = 421, [499] = 499, [500] = 500, - [501] = 501, - [502] = 502, + [501] = 499, + [502] = 500, [503] = 503, [504] = 504, [505] = 505, @@ -4617,7 +4626,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [628] = 628, [629] = 629, [630] = 630, - [631] = 391, + [631] = 631, [632] = 632, [633] = 633, [634] = 634, @@ -4630,49 +4639,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 641, [642] = 642, [643] = 643, - [644] = 393, + [644] = 644, [645] = 645, [646] = 646, - [647] = 392, + [647] = 647, [648] = 648, - [649] = 389, - [650] = 390, + [649] = 649, + [650] = 650, [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, [656] = 656, - [657] = 657, + [657] = 398, [658] = 658, [659] = 659, [660] = 660, [661] = 661, - [662] = 662, + [662] = 394, [663] = 663, [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, + [665] = 395, + [666] = 397, + [667] = 396, [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 584, + [672] = 672, [673] = 673, [674] = 674, [675] = 675, - [676] = 664, + [676] = 676, [677] = 677, [678] = 678, [679] = 679, - [680] = 679, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, [685] = 685, - [686] = 589, + [686] = 654, [687] = 687, [688] = 688, [689] = 689, @@ -4727,7 +4736,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [738] = 738, [739] = 739, [740] = 740, - [741] = 741, + [741] = 694, [742] = 742, [743] = 743, [744] = 744, @@ -4779,309 +4788,309 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [790] = 790, [791] = 791, [792] = 792, - [793] = 792, + [793] = 793, [794] = 794, [795] = 795, [796] = 796, [797] = 797, - [798] = 796, - [799] = 795, + [798] = 798, + [799] = 797, [800] = 800, - [801] = 801, + [801] = 798, [802] = 802, [803] = 800, [804] = 804, [805] = 805, - [806] = 802, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, - [810] = 810, - [811] = 801, + [810] = 806, + [811] = 811, [812] = 812, - [813] = 805, + [813] = 813, [814] = 807, - [815] = 809, - [816] = 816, + [815] = 808, + [816] = 811, [817] = 817, [818] = 818, - [819] = 819, - [820] = 820, + [819] = 812, + [820] = 813, [821] = 821, [822] = 822, [823] = 823, [824] = 824, [825] = 825, [826] = 826, - [827] = 827, + [827] = 824, [828] = 828, - [829] = 822, - [830] = 830, + [829] = 826, + [830] = 823, [831] = 831, [832] = 832, - [833] = 819, - [834] = 817, - [835] = 818, - [836] = 826, - [837] = 816, - [838] = 820, - [839] = 824, - [840] = 825, + [833] = 822, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 828, + [840] = 840, [841] = 841, [842] = 831, - [843] = 823, - [844] = 819, - [845] = 823, - [846] = 819, - [847] = 823, - [848] = 841, - [849] = 849, - [850] = 849, - [851] = 849, - [852] = 849, + [843] = 821, + [844] = 825, + [845] = 836, + [846] = 838, + [847] = 841, + [848] = 835, + [849] = 822, + [850] = 835, + [851] = 822, + [852] = 835, [853] = 853, - [854] = 849, - [855] = 855, + [854] = 854, + [855] = 854, [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 859, - [861] = 861, - [862] = 857, + [857] = 854, + [858] = 854, + [859] = 854, + [860] = 860, + [861] = 860, + [862] = 860, [863] = 863, - [864] = 863, - [865] = 859, - [866] = 855, - [867] = 867, - [868] = 868, - [869] = 867, - [870] = 859, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 865, + [868] = 860, + [869] = 869, + [870] = 869, [871] = 871, - [872] = 867, - [873] = 856, - [874] = 874, - [875] = 863, - [876] = 859, - [877] = 877, - [878] = 863, - [879] = 856, - [880] = 863, + [872] = 872, + [873] = 873, + [874] = 866, + [875] = 875, + [876] = 860, + [877] = 864, + [878] = 873, + [879] = 873, + [880] = 873, [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 882, + [882] = 866, + [883] = 864, + [884] = 873, + [885] = 885, [886] = 886, [887] = 887, [888] = 888, - [889] = 884, + [889] = 889, [890] = 890, - [891] = 891, + [891] = 887, [892] = 892, - [893] = 893, + [893] = 890, [894] = 894, - [895] = 891, + [895] = 895, [896] = 896, [897] = 897, [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, + [899] = 895, + [900] = 897, + [901] = 887, [902] = 902, [903] = 903, [904] = 904, [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, + [906] = 892, + [907] = 890, + [908] = 895, [909] = 909, - [910] = 910, + [910] = 897, [911] = 911, [912] = 912, - [913] = 888, - [914] = 883, + [913] = 913, + [914] = 914, [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 882, + [919] = 919, [920] = 920, - [921] = 921, + [921] = 902, [922] = 922, [923] = 923, - [924] = 906, - [925] = 925, - [926] = 888, + [924] = 903, + [925] = 904, + [926] = 926, [927] = 927, [928] = 928, [929] = 929, - [930] = 907, + [930] = 889, [931] = 931, - [932] = 932, + [932] = 909, [933] = 933, [934] = 934, - [935] = 882, - [936] = 887, - [937] = 884, - [938] = 894, - [939] = 891, + [935] = 935, + [936] = 936, + [937] = 889, + [938] = 938, + [939] = 939, [940] = 940, - [941] = 941, - [942] = 908, - [943] = 911, + [941] = 922, + [942] = 902, + [943] = 903, [944] = 944, - [945] = 928, - [946] = 946, + [945] = 887, + [946] = 904, [947] = 947, [948] = 948, [949] = 949, [950] = 950, [951] = 951, [952] = 952, - [953] = 899, - [954] = 887, - [955] = 955, - [956] = 908, + [953] = 909, + [954] = 923, + [955] = 890, + [956] = 956, [957] = 957, - [958] = 911, - [959] = 941, - [960] = 922, - [961] = 923, - [962] = 901, - [963] = 957, - [964] = 922, - [965] = 923, - [966] = 888, + [958] = 892, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 940, + [965] = 950, + [966] = 914, [967] = 967, - [968] = 900, - [969] = 881, - [970] = 952, - [971] = 971, - [972] = 971, + [968] = 968, + [969] = 960, + [970] = 970, + [971] = 911, + [972] = 913, [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 922, - [978] = 973, - [979] = 906, - [980] = 882, - [981] = 884, - [982] = 887, - [983] = 883, - [984] = 884, - [985] = 894, - [986] = 891, - [987] = 910, - [988] = 917, - [989] = 918, - [990] = 921, - [991] = 925, - [992] = 929, - [993] = 923, - [994] = 994, - [995] = 932, - [996] = 933, - [997] = 944, - [998] = 946, - [999] = 976, - [1000] = 1000, - [1001] = 908, - [1002] = 911, - [1003] = 928, - [1004] = 1004, + [974] = 936, + [975] = 952, + [976] = 956, + [977] = 977, + [978] = 978, + [979] = 938, + [980] = 939, + [981] = 981, + [982] = 982, + [983] = 887, + [984] = 984, + [985] = 892, + [986] = 889, + [987] = 890, + [988] = 895, + [989] = 897, + [990] = 898, + [991] = 959, + [992] = 962, + [993] = 967, + [994] = 970, + [995] = 995, + [996] = 905, + [997] = 997, + [998] = 920, + [999] = 948, + [1000] = 957, + [1001] = 997, + [1002] = 1002, + [1003] = 902, + [1004] = 903, [1005] = 904, - [1006] = 912, - [1007] = 886, - [1008] = 907, - [1009] = 950, - [1010] = 949, - [1011] = 897, - [1012] = 898, - [1013] = 902, - [1014] = 903, - [1015] = 909, - [1016] = 1016, - [1017] = 931, - [1018] = 1018, - [1019] = 949, + [1006] = 963, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 888, + [1011] = 922, + [1012] = 912, + [1013] = 915, + [1014] = 916, + [1015] = 917, + [1016] = 919, + [1017] = 926, + [1018] = 933, + [1019] = 934, [1020] = 1020, - [1021] = 1016, - [1022] = 994, - [1023] = 1004, + [1021] = 909, + [1022] = 995, + [1023] = 923, [1024] = 1024, [1025] = 1025, - [1026] = 1026, - [1027] = 890, - [1028] = 896, - [1029] = 916, - [1030] = 1024, - [1031] = 928, + [1026] = 1007, + [1027] = 1027, + [1028] = 935, + [1029] = 928, + [1030] = 1030, + [1031] = 931, [1032] = 1032, - [1033] = 967, - [1034] = 957, - [1035] = 1026, - [1036] = 1036, - [1037] = 974, - [1038] = 922, - [1039] = 1000, - [1040] = 923, - [1041] = 949, - [1042] = 975, - [1043] = 906, - [1044] = 1044, - [1045] = 907, - [1046] = 894, - [1047] = 1018, - [1048] = 883, - [1049] = 1049, - [1050] = 1050, - [1051] = 691, - [1052] = 1052, + [1033] = 1008, + [1034] = 1032, + [1035] = 960, + [1036] = 1002, + [1037] = 940, + [1038] = 960, + [1039] = 886, + [1040] = 1024, + [1041] = 961, + [1042] = 960, + [1043] = 961, + [1044] = 973, + [1045] = 961, + [1046] = 973, + [1047] = 1027, + [1048] = 1025, + [1049] = 978, + [1050] = 922, + [1051] = 923, + [1052] = 973, [1053] = 1053, - [1054] = 1054, - [1055] = 691, + [1054] = 1009, + [1055] = 961, [1056] = 1056, [1057] = 1057, - [1058] = 1058, + [1058] = 600, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1062, + [1062] = 600, [1063] = 1063, [1064] = 1064, - [1065] = 390, - [1066] = 200, - [1067] = 393, - [1068] = 404, - [1069] = 389, - [1070] = 402, - [1071] = 392, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 396, [1072] = 1072, - [1073] = 391, - [1074] = 198, - [1075] = 753, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1049, - [1080] = 1080, - [1081] = 694, + [1073] = 210, + [1074] = 211, + [1075] = 426, + [1076] = 398, + [1077] = 408, + [1078] = 394, + [1079] = 395, + [1080] = 397, + [1081] = 1081, [1082] = 1082, - [1083] = 514, + [1083] = 614, [1084] = 1084, [1085] = 1085, - [1086] = 1086, + [1086] = 555, [1087] = 1087, [1088] = 1088, - [1089] = 634, + [1089] = 515, [1090] = 1090, - [1091] = 724, + [1091] = 1091, [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, + [1093] = 701, + [1094] = 769, + [1095] = 1056, [1096] = 1096, [1097] = 1097, [1098] = 1098, @@ -5090,427 +5099,427 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 1060, + [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, [1108] = 1108, [1109] = 1109, [1110] = 1110, - [1111] = 1111, - [1112] = 435, + [1111] = 1069, + [1112] = 1112, [1113] = 1113, - [1114] = 685, - [1115] = 1050, - [1116] = 1057, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1119, - [1120] = 583, - [1121] = 585, - [1122] = 1059, - [1123] = 1123, - [1124] = 1058, + [1119] = 440, + [1120] = 1120, + [1121] = 768, + [1122] = 1057, + [1123] = 1065, + [1124] = 1124, [1125] = 1125, [1126] = 1126, - [1127] = 1056, - [1128] = 1128, - [1129] = 1129, + [1127] = 653, + [1128] = 655, + [1129] = 1064, [1130] = 1130, - [1131] = 1131, + [1131] = 1066, [1132] = 1132, - [1133] = 588, - [1134] = 319, - [1135] = 607, - [1136] = 609, - [1137] = 616, - [1138] = 629, - [1139] = 630, - [1140] = 633, - [1141] = 643, - [1142] = 646, - [1143] = 648, - [1144] = 651, - [1145] = 653, - [1146] = 663, - [1147] = 666, - [1148] = 667, - [1149] = 673, - [1150] = 674, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 699, - [1157] = 700, - [1158] = 701, - [1159] = 702, - [1160] = 704, - [1161] = 711, - [1162] = 712, - [1163] = 713, - [1164] = 714, - [1165] = 715, - [1166] = 725, - [1167] = 726, - [1168] = 727, - [1169] = 728, - [1170] = 729, - [1171] = 730, - [1172] = 731, - [1173] = 732, - [1174] = 733, - [1175] = 734, - [1176] = 735, - [1177] = 736, - [1178] = 737, - [1179] = 738, - [1180] = 739, - [1181] = 740, - [1182] = 744, - [1183] = 751, - [1184] = 763, - [1185] = 765, - [1186] = 768, - [1187] = 773, - [1188] = 777, - [1189] = 780, - [1190] = 597, - [1191] = 687, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 569, - [1197] = 570, - [1198] = 587, - [1199] = 591, - [1200] = 592, - [1201] = 593, - [1202] = 595, - [1203] = 596, - [1204] = 598, - [1205] = 599, - [1206] = 601, - [1207] = 622, - [1208] = 625, - [1209] = 626, - [1210] = 628, - [1211] = 661, + [1133] = 1133, + [1134] = 1063, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 658, + [1141] = 368, + [1142] = 663, + [1143] = 664, + [1144] = 671, + [1145] = 682, + [1146] = 692, + [1147] = 696, + [1148] = 700, + [1149] = 721, + [1150] = 734, + [1151] = 735, + [1152] = 736, + [1153] = 739, + [1154] = 742, + [1155] = 743, + [1156] = 647, + [1157] = 648, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 602, + [1164] = 603, + [1165] = 604, + [1166] = 605, + [1167] = 606, + [1168] = 607, + [1169] = 608, + [1170] = 609, + [1171] = 610, + [1172] = 611, + [1173] = 615, + [1174] = 616, + [1175] = 617, + [1176] = 618, + [1177] = 619, + [1178] = 620, + [1179] = 621, + [1180] = 622, + [1181] = 623, + [1182] = 624, + [1183] = 626, + [1184] = 631, + [1185] = 632, + [1186] = 633, + [1187] = 634, + [1188] = 635, + [1189] = 636, + [1190] = 638, + [1191] = 639, + [1192] = 640, + [1193] = 641, + [1194] = 642, + [1195] = 643, + [1196] = 646, + [1197] = 656, + [1198] = 659, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 668, + [1204] = 503, + [1205] = 676, + [1206] = 677, + [1207] = 678, + [1208] = 679, + [1209] = 680, + [1210] = 681, + [1211] = 683, [1212] = 684, - [1213] = 689, - [1214] = 697, - [1215] = 746, - [1216] = 748, - [1217] = 750, - [1218] = 499, - [1219] = 500, - [1220] = 501, - [1221] = 512, - [1222] = 534, - [1223] = 556, - [1224] = 561, - [1225] = 562, - [1226] = 563, - [1227] = 564, - [1228] = 565, - [1229] = 566, - [1230] = 567, - [1231] = 568, - [1232] = 571, - [1233] = 572, - [1234] = 573, - [1235] = 574, - [1236] = 575, - [1237] = 576, - [1238] = 577, - [1239] = 578, - [1240] = 579, - [1241] = 580, - [1242] = 581, - [1243] = 582, - [1244] = 590, - [1245] = 594, - [1246] = 1246, - [1247] = 1247, - [1248] = 600, - [1249] = 602, - [1250] = 603, - [1251] = 604, - [1252] = 605, - [1253] = 606, - [1254] = 608, - [1255] = 610, - [1256] = 611, - [1257] = 612, - [1258] = 613, - [1259] = 614, - [1260] = 615, - [1261] = 617, - [1262] = 618, - [1263] = 619, - [1264] = 620, - [1265] = 621, - [1266] = 623, - [1267] = 624, - [1268] = 632, - [1269] = 635, - [1270] = 636, - [1271] = 637, - [1272] = 781, - [1273] = 639, - [1274] = 640, - [1275] = 641, - [1276] = 1276, - [1277] = 645, - [1278] = 652, - [1279] = 654, - [1280] = 494, - [1281] = 656, - [1282] = 657, - [1283] = 658, - [1284] = 659, - [1285] = 660, - [1286] = 662, - [1287] = 665, - [1288] = 668, - [1289] = 669, - [1290] = 670, - [1291] = 675, - [1292] = 677, - [1293] = 678, - [1294] = 681, - [1295] = 682, - [1296] = 683, - [1297] = 690, - [1298] = 692, - [1299] = 1299, - [1300] = 1300, - [1301] = 695, - [1302] = 696, - [1303] = 698, - [1304] = 703, - [1305] = 705, - [1306] = 706, - [1307] = 707, - [1308] = 708, - [1309] = 709, - [1310] = 710, - [1311] = 716, - [1312] = 717, - [1313] = 718, - [1314] = 719, - [1315] = 721, - [1316] = 722, - [1317] = 723, - [1318] = 741, - [1319] = 742, - [1320] = 743, - [1321] = 745, - [1322] = 749, - [1323] = 752, - [1324] = 754, - [1325] = 755, - [1326] = 756, - [1327] = 757, - [1328] = 758, - [1329] = 759, - [1330] = 760, - [1331] = 761, - [1332] = 762, - [1333] = 764, - [1334] = 766, - [1335] = 767, - [1336] = 769, - [1337] = 770, - [1338] = 771, - [1339] = 772, - [1340] = 774, - [1341] = 775, - [1342] = 776, - [1343] = 778, - [1344] = 779, - [1345] = 655, - [1346] = 638, - [1347] = 671, - [1348] = 495, - [1349] = 496, - [1350] = 497, - [1351] = 498, - [1352] = 1352, - [1353] = 1353, - [1354] = 502, - [1355] = 503, - [1356] = 504, - [1357] = 505, - [1358] = 506, - [1359] = 507, - [1360] = 508, - [1361] = 509, - [1362] = 510, - [1363] = 511, - [1364] = 513, - [1365] = 515, - [1366] = 516, - [1367] = 517, - [1368] = 518, - [1369] = 519, - [1370] = 520, - [1371] = 521, - [1372] = 522, - [1373] = 523, - [1374] = 524, - [1375] = 525, - [1376] = 526, - [1377] = 527, - [1378] = 528, - [1379] = 529, - [1380] = 530, - [1381] = 531, - [1382] = 532, - [1383] = 533, - [1384] = 535, - [1385] = 536, - [1386] = 537, - [1387] = 538, - [1388] = 539, - [1389] = 540, - [1390] = 541, - [1391] = 542, - [1392] = 543, - [1393] = 544, - [1394] = 545, - [1395] = 546, - [1396] = 547, - [1397] = 548, - [1398] = 549, - [1399] = 550, - [1400] = 551, - [1401] = 552, - [1402] = 553, - [1403] = 554, - [1404] = 555, - [1405] = 557, - [1406] = 558, - [1407] = 559, - [1408] = 560, - [1409] = 1409, - [1410] = 691, - [1411] = 569, - [1412] = 1412, - [1413] = 1413, - [1414] = 691, - [1415] = 691, + [1213] = 687, + [1214] = 688, + [1215] = 689, + [1216] = 690, + [1217] = 691, + [1218] = 693, + [1219] = 695, + [1220] = 699, + [1221] = 702, + [1222] = 703, + [1223] = 704, + [1224] = 706, + [1225] = 707, + [1226] = 708, + [1227] = 709, + [1228] = 710, + [1229] = 711, + [1230] = 712, + [1231] = 713, + [1232] = 714, + [1233] = 715, + [1234] = 716, + [1235] = 717, + [1236] = 718, + [1237] = 719, + [1238] = 720, + [1239] = 722, + [1240] = 723, + [1241] = 724, + [1242] = 725, + [1243] = 726, + [1244] = 727, + [1245] = 728, + [1246] = 729, + [1247] = 730, + [1248] = 731, + [1249] = 732, + [1250] = 733, + [1251] = 737, + [1252] = 738, + [1253] = 1253, + [1254] = 1254, + [1255] = 744, + [1256] = 745, + [1257] = 746, + [1258] = 747, + [1259] = 748, + [1260] = 749, + [1261] = 750, + [1262] = 751, + [1263] = 752, + [1264] = 753, + [1265] = 754, + [1266] = 755, + [1267] = 756, + [1268] = 757, + [1269] = 758, + [1270] = 759, + [1271] = 760, + [1272] = 761, + [1273] = 762, + [1274] = 763, + [1275] = 767, + [1276] = 770, + [1277] = 771, + [1278] = 772, + [1279] = 773, + [1280] = 774, + [1281] = 775, + [1282] = 776, + [1283] = 1283, + [1284] = 779, + [1285] = 780, + [1286] = 781, + [1287] = 782, + [1288] = 783, + [1289] = 784, + [1290] = 785, + [1291] = 786, + [1292] = 670, + [1293] = 519, + [1294] = 650, + [1295] = 512, + [1296] = 612, + [1297] = 625, + [1298] = 627, + [1299] = 628, + [1300] = 629, + [1301] = 630, + [1302] = 644, + [1303] = 645, + [1304] = 651, + [1305] = 652, + [1306] = 1306, + [1307] = 1307, + [1308] = 661, + [1309] = 669, + [1310] = 672, + [1311] = 673, + [1312] = 674, + [1313] = 675, + [1314] = 685, + [1315] = 697, + [1316] = 698, + [1317] = 705, + [1318] = 764, + [1319] = 766, + [1320] = 777, + [1321] = 504, + [1322] = 505, + [1323] = 506, + [1324] = 507, + [1325] = 508, + [1326] = 509, + [1327] = 510, + [1328] = 511, + [1329] = 513, + [1330] = 514, + [1331] = 516, + [1332] = 517, + [1333] = 518, + [1334] = 787, + [1335] = 520, + [1336] = 521, + [1337] = 522, + [1338] = 523, + [1339] = 524, + [1340] = 525, + [1341] = 526, + [1342] = 527, + [1343] = 528, + [1344] = 529, + [1345] = 530, + [1346] = 531, + [1347] = 532, + [1348] = 533, + [1349] = 534, + [1350] = 535, + [1351] = 536, + [1352] = 537, + [1353] = 538, + [1354] = 539, + [1355] = 540, + [1356] = 541, + [1357] = 542, + [1358] = 543, + [1359] = 1359, + [1360] = 1360, + [1361] = 544, + [1362] = 545, + [1363] = 546, + [1364] = 547, + [1365] = 548, + [1366] = 549, + [1367] = 550, + [1368] = 551, + [1369] = 552, + [1370] = 553, + [1371] = 554, + [1372] = 556, + [1373] = 557, + [1374] = 558, + [1375] = 559, + [1376] = 560, + [1377] = 561, + [1378] = 562, + [1379] = 563, + [1380] = 564, + [1381] = 565, + [1382] = 566, + [1383] = 567, + [1384] = 568, + [1385] = 569, + [1386] = 570, + [1387] = 571, + [1388] = 572, + [1389] = 573, + [1390] = 574, + [1391] = 575, + [1392] = 576, + [1393] = 577, + [1394] = 578, + [1395] = 579, + [1396] = 580, + [1397] = 581, + [1398] = 582, + [1399] = 583, + [1400] = 584, + [1401] = 585, + [1402] = 586, + [1403] = 587, + [1404] = 588, + [1405] = 589, + [1406] = 590, + [1407] = 591, + [1408] = 592, + [1409] = 593, + [1410] = 594, + [1411] = 595, + [1412] = 596, + [1413] = 597, + [1414] = 598, + [1415] = 599, [1416] = 1416, - [1417] = 1060, - [1418] = 1418, - [1419] = 642, - [1420] = 1060, + [1417] = 600, + [1418] = 668, + [1419] = 1419, + [1420] = 600, [1421] = 1421, - [1422] = 1422, + [1422] = 600, [1423] = 1423, - [1424] = 147, + [1424] = 1069, [1425] = 1425, - [1426] = 1426, + [1426] = 778, [1427] = 1427, [1428] = 1428, - [1429] = 198, + [1429] = 396, [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 415, + [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1439, + [1439] = 211, [1440] = 1440, - [1441] = 390, + [1441] = 1441, [1442] = 1442, [1443] = 1443, [1444] = 1444, [1445] = 1445, - [1446] = 391, - [1447] = 1447, + [1446] = 401, + [1447] = 399, [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 421, - [1452] = 410, - [1453] = 411, - [1454] = 412, + [1451] = 171, + [1452] = 1452, + [1453] = 404, + [1454] = 408, [1455] = 1455, - [1456] = 1456, - [1457] = 409, + [1456] = 410, + [1457] = 402, [1458] = 1458, [1459] = 1459, - [1460] = 397, + [1460] = 420, [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 398, - [1465] = 1465, - [1466] = 1466, - [1467] = 200, - [1468] = 393, + [1464] = 1464, + [1465] = 425, + [1466] = 426, + [1467] = 395, + [1468] = 407, [1469] = 1469, - [1470] = 418, - [1471] = 406, + [1470] = 1470, + [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 1476, + [1474] = 158, + [1475] = 397, + [1476] = 413, [1477] = 1477, - [1478] = 395, - [1479] = 413, + [1478] = 1478, + [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 152, + [1484] = 1484, [1485] = 1485, - [1486] = 399, - [1487] = 404, + [1486] = 1486, + [1487] = 210, [1488] = 1488, - [1489] = 405, + [1489] = 1489, [1490] = 1490, - [1491] = 170, + [1491] = 1491, [1492] = 1492, - [1493] = 420, - [1494] = 1494, + [1493] = 419, + [1494] = 148, [1495] = 1495, - [1496] = 400, - [1497] = 402, - [1498] = 389, - [1499] = 403, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 400, [1500] = 1500, [1501] = 1501, - [1502] = 1502, + [1502] = 427, [1503] = 1503, - [1504] = 1504, + [1504] = 398, [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 392, + [1509] = 1509, [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 149, - [1514] = 1514, - [1515] = 1515, + [1511] = 403, + [1512] = 424, + [1513] = 406, + [1514] = 414, + [1515] = 412, [1516] = 1516, - [1517] = 1517, + [1517] = 421, [1518] = 1518, [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1522, + [1520] = 1069, + [1521] = 394, + [1522] = 416, [1523] = 1523, - [1524] = 1524, + [1524] = 167, [1525] = 1525, [1526] = 1526, [1527] = 1527, @@ -5519,1659 +5528,1659 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1530] = 1530, [1531] = 1531, [1532] = 1532, - [1533] = 151, + [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 422, + [1536] = 1536, [1537] = 1537, [1538] = 1538, - [1539] = 414, + [1539] = 1539, [1540] = 1540, - [1541] = 1540, - [1542] = 1060, - [1543] = 1060, + [1541] = 1541, + [1542] = 1542, + [1543] = 197, [1544] = 1544, [1545] = 1545, - [1546] = 1540, - [1547] = 1540, + [1546] = 1546, + [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1062, - [1553] = 1063, - [1554] = 1061, - [1555] = 1555, + [1552] = 1550, + [1553] = 1069, + [1554] = 1550, + [1555] = 1550, [1556] = 1556, - [1557] = 1557, + [1557] = 1069, [1558] = 1558, - [1559] = 1559, + [1559] = 1070, [1560] = 1560, - [1561] = 1561, + [1561] = 1067, [1562] = 1562, [1563] = 1563, - [1564] = 1100, + [1564] = 1564, [1565] = 1565, [1566] = 1566, - [1567] = 1567, + [1567] = 1566, [1568] = 1568, - [1569] = 1566, + [1569] = 1569, [1570] = 1570, [1571] = 1571, [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1565, + [1573] = 1558, + [1574] = 1068, + [1575] = 1575, [1576] = 1576, - [1577] = 1570, + [1577] = 1577, [1578] = 1578, [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1100, + [1582] = 1582, [1583] = 1100, - [1584] = 1072, + [1584] = 1584, [1585] = 1585, - [1586] = 1080, - [1587] = 1105, - [1588] = 1107, - [1589] = 1531, - [1590] = 1276, - [1591] = 1084, - [1592] = 1105, - [1593] = 1276, - [1594] = 1078, - [1595] = 1508, - [1596] = 1082, - [1597] = 1087, - [1598] = 1085, - [1599] = 1110, - [1600] = 1086, - [1601] = 1531, - [1602] = 1110, - [1603] = 1090, - [1604] = 1107, - [1605] = 1605, - [1606] = 1409, - [1607] = 1605, - [1608] = 1409, - [1609] = 1430, - [1610] = 1610, - [1611] = 1246, - [1612] = 1299, - [1613] = 1352, - [1614] = 1614, - [1615] = 319, - [1616] = 1488, - [1617] = 1092, - [1618] = 1094, - [1619] = 1619, - [1620] = 1531, - [1621] = 1192, - [1622] = 1610, - [1623] = 1508, - [1624] = 1614, - [1625] = 1619, - [1626] = 1610, - [1627] = 1614, - [1628] = 1610, - [1629] = 1614, - [1630] = 1545, - [1631] = 1544, - [1632] = 1093, - [1633] = 1488, - [1634] = 1605, - [1635] = 1097, - [1636] = 1430, + [1586] = 1580, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1081, + [1594] = 1100, + [1595] = 1595, + [1596] = 1100, + [1597] = 1088, + [1598] = 1541, + [1599] = 1117, + [1600] = 1082, + [1601] = 1283, + [1602] = 1112, + [1603] = 1112, + [1604] = 1283, + [1605] = 1117, + [1606] = 1114, + [1607] = 1087, + [1608] = 1085, + [1609] = 1458, + [1610] = 1091, + [1611] = 1096, + [1612] = 1541, + [1613] = 1114, + [1614] = 1098, + [1615] = 1092, + [1616] = 1616, + [1617] = 1617, + [1618] = 1416, + [1619] = 1541, + [1620] = 1458, + [1621] = 1621, + [1622] = 1416, + [1623] = 1101, + [1624] = 1109, + [1625] = 1099, + [1626] = 1459, + [1627] = 1459, + [1628] = 1103, + [1629] = 1489, + [1630] = 1199, + [1631] = 1253, + [1632] = 1616, + [1633] = 1306, + [1634] = 1359, + [1635] = 368, + [1636] = 1617, [1637] = 1637, - [1638] = 1605, - [1639] = 1637, - [1640] = 1418, - [1641] = 1300, - [1642] = 1109, - [1643] = 1123, - [1644] = 1193, - [1645] = 1416, - [1646] = 1125, - [1647] = 1571, - [1648] = 1573, - [1649] = 1555, - [1650] = 1563, - [1651] = 1353, - [1652] = 1108, - [1653] = 1545, - [1654] = 1654, - [1655] = 1655, - [1656] = 1656, - [1657] = 1117, - [1658] = 1658, - [1659] = 1126, - [1660] = 1194, - [1661] = 1247, - [1662] = 1128, - [1663] = 1580, - [1664] = 1658, - [1665] = 1568, - [1666] = 1129, - [1667] = 1549, - [1668] = 1579, - [1669] = 1130, - [1670] = 1548, - [1671] = 1131, - [1672] = 1560, - [1673] = 1132, - [1674] = 1655, - [1675] = 1574, - [1676] = 1118, - [1677] = 1677, - [1678] = 1678, - [1679] = 1119, - [1680] = 1551, - [1681] = 1654, - [1682] = 1576, - [1683] = 391, - [1684] = 1557, - [1685] = 393, - [1686] = 392, - [1687] = 1558, - [1688] = 1572, - [1689] = 1544, - [1690] = 389, - [1691] = 390, - [1692] = 1151, - [1693] = 1578, - [1694] = 1152, - [1695] = 1195, - [1696] = 1153, - [1697] = 1154, - [1698] = 1155, - [1699] = 1567, - [1700] = 1550, - [1701] = 1701, - [1702] = 1448, - [1703] = 1524, - [1704] = 1449, + [1638] = 1638, + [1639] = 1621, + [1640] = 1489, + [1641] = 1616, + [1642] = 1638, + [1643] = 1621, + [1644] = 1638, + [1645] = 1621, + [1646] = 1551, + [1647] = 1556, + [1648] = 1616, + [1649] = 1637, + [1650] = 1638, + [1651] = 1560, + [1652] = 1158, + [1653] = 1159, + [1654] = 1160, + [1655] = 1161, + [1656] = 1162, + [1657] = 1591, + [1658] = 1200, + [1659] = 1201, + [1660] = 1202, + [1661] = 1661, + [1662] = 1254, + [1663] = 1423, + [1664] = 1124, + [1665] = 1307, + [1666] = 1125, + [1667] = 1360, + [1668] = 1668, + [1669] = 1126, + [1670] = 1579, + [1671] = 1671, + [1672] = 1562, + [1673] = 398, + [1674] = 394, + [1675] = 395, + [1676] = 1565, + [1677] = 397, + [1678] = 396, + [1679] = 1592, + [1680] = 1575, + [1681] = 1577, + [1682] = 1578, + [1683] = 1581, + [1684] = 1584, + [1685] = 1551, + [1686] = 1115, + [1687] = 1116, + [1688] = 1590, + [1689] = 1589, + [1690] = 1564, + [1691] = 1570, + [1692] = 1425, + [1693] = 1582, + [1694] = 1661, + [1695] = 1695, + [1696] = 1130, + [1697] = 1697, + [1698] = 1132, + [1699] = 1133, + [1700] = 1697, + [1701] = 1135, + [1702] = 1136, + [1703] = 1137, + [1704] = 1138, [1705] = 1705, - [1706] = 1473, - [1707] = 1707, - [1708] = 1574, - [1709] = 1485, - [1710] = 1537, - [1711] = 1515, - [1712] = 1480, - [1713] = 1474, - [1714] = 1475, - [1715] = 1056, - [1716] = 1490, - [1717] = 1481, - [1718] = 1422, - [1719] = 1434, - [1720] = 1483, - [1721] = 1492, - [1722] = 1447, - [1723] = 1568, - [1724] = 1572, - [1725] = 1495, - [1726] = 1726, - [1727] = 1576, - [1728] = 1578, - [1729] = 1579, - [1730] = 1580, - [1731] = 1549, - [1732] = 1550, - [1733] = 1548, - [1734] = 1551, - [1735] = 1557, - [1736] = 1558, - [1737] = 1567, - [1738] = 1738, - [1739] = 1739, - [1740] = 1516, - [1741] = 1520, - [1742] = 1571, - [1743] = 1423, - [1744] = 1744, - [1745] = 1426, - [1746] = 1512, - [1747] = 1433, - [1748] = 1560, - [1749] = 1455, - [1750] = 1573, - [1751] = 1458, - [1752] = 1427, - [1753] = 1459, - [1754] = 1431, - [1755] = 1461, - [1756] = 1462, - [1757] = 1428, - [1758] = 1463, - [1759] = 1759, - [1760] = 1432, - [1761] = 1465, - [1762] = 1435, - [1763] = 1763, - [1764] = 1438, - [1765] = 1500, - [1766] = 1501, - [1767] = 1502, - [1768] = 1503, - [1769] = 1504, - [1770] = 1505, - [1771] = 1506, + [1706] = 1139, + [1707] = 1695, + [1708] = 1556, + [1709] = 1585, + [1710] = 1569, + [1711] = 1563, + [1712] = 1572, + [1713] = 1713, + [1714] = 1714, + [1715] = 1495, + [1716] = 1461, + [1717] = 1717, + [1718] = 1518, + [1719] = 1523, + [1720] = 1443, + [1721] = 1497, + [1722] = 1722, + [1723] = 1507, + [1724] = 1509, + [1725] = 1725, + [1726] = 1526, + [1727] = 1727, + [1728] = 1501, + [1729] = 1585, + [1730] = 1452, + [1731] = 1534, + [1732] = 1444, + [1733] = 1440, + [1734] = 1441, + [1735] = 1063, + [1736] = 1547, + [1737] = 1503, + [1738] = 1445, + [1739] = 1448, + [1740] = 1505, + [1741] = 1506, + [1742] = 1449, + [1743] = 1481, + [1744] = 1549, + [1745] = 1563, + [1746] = 1591, + [1747] = 1500, + [1748] = 1510, + [1749] = 1749, + [1750] = 1579, + [1751] = 1560, + [1752] = 1562, + [1753] = 1565, + [1754] = 1572, + [1755] = 1575, + [1756] = 1577, + [1757] = 1578, + [1758] = 1581, + [1759] = 1584, + [1760] = 1582, + [1761] = 1761, + [1762] = 1469, + [1763] = 1470, + [1764] = 1455, + [1765] = 1477, + [1766] = 1478, + [1767] = 1527, + [1768] = 1592, + [1769] = 1769, + [1770] = 1530, + [1771] = 1428, [1772] = 1772, - [1773] = 1442, - [1774] = 1443, - [1775] = 1444, - [1776] = 1555, - [1777] = 435, - [1778] = 410, - [1779] = 412, - [1780] = 409, - [1781] = 397, - [1782] = 398, - [1783] = 1563, - [1784] = 1574, - [1785] = 1785, - [1786] = 1476, - [1787] = 399, - [1788] = 1568, - [1789] = 405, - [1790] = 1425, - [1791] = 420, - [1792] = 1572, - [1793] = 400, - [1794] = 1576, - [1795] = 1578, - [1796] = 1579, - [1797] = 1580, - [1798] = 1549, - [1799] = 1550, - [1800] = 1548, - [1801] = 1551, - [1802] = 1557, - [1803] = 1558, - [1804] = 1567, - [1805] = 1526, - [1806] = 1421, - [1807] = 414, - [1808] = 415, - [1809] = 1560, - [1810] = 421, - [1811] = 1456, - [1812] = 1507, - [1813] = 418, - [1814] = 406, - [1815] = 395, - [1816] = 403, - [1817] = 422, - [1818] = 413, - [1819] = 170, - [1820] = 147, - [1821] = 411, - [1822] = 149, - [1823] = 1514, - [1824] = 1574, - [1825] = 151, - [1826] = 404, - [1827] = 1827, - [1828] = 1572, - [1829] = 152, - [1830] = 402, - [1831] = 1560, - [1832] = 1518, - [1833] = 1523, - [1834] = 1525, - [1835] = 198, - [1836] = 200, - [1837] = 1530, - [1838] = 1437, - [1839] = 1494, - [1840] = 1532, - [1841] = 1534, - [1842] = 1535, - [1843] = 1827, - [1844] = 1439, - [1845] = 1772, - [1846] = 1440, - [1847] = 1445, - [1848] = 1848, - [1849] = 1744, - [1850] = 1538, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1510, - [1857] = 1785, - [1858] = 1511, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 1862, - [1863] = 1738, - [1864] = 1862, - [1865] = 1865, - [1866] = 1772, - [1867] = 1853, - [1868] = 1571, - [1869] = 1573, - [1870] = 1744, - [1871] = 1555, - [1872] = 1563, - [1873] = 1852, - [1874] = 1859, - [1875] = 1701, - [1876] = 1876, - [1877] = 1859, - [1878] = 1862, - [1879] = 1772, - [1880] = 1744, - [1881] = 1852, - [1882] = 1517, - [1883] = 1860, - [1884] = 1859, - [1885] = 1862, - [1886] = 1450, - [1887] = 1772, - [1888] = 1852, - [1889] = 1859, - [1890] = 1862, - [1891] = 1772, - [1892] = 1852, - [1893] = 1859, - [1894] = 1862, - [1895] = 1772, - [1896] = 1852, - [1897] = 1859, - [1898] = 1862, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1519, - [1903] = 1521, - [1904] = 1522, - [1905] = 1466, - [1906] = 1527, - [1907] = 1907, - [1908] = 1528, - [1909] = 1529, - [1910] = 1852, - [1911] = 1469, - [1912] = 1865, - [1913] = 1472, - [1914] = 1914, - [1915] = 1861, - [1916] = 1477, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1917, - [1921] = 1921, - [1922] = 1922, - [1923] = 1763, - [1924] = 1924, - [1925] = 1925, - [1926] = 1926, - [1927] = 1707, - [1928] = 1928, + [1773] = 1430, + [1774] = 1590, + [1775] = 1431, + [1776] = 1432, + [1777] = 1436, + [1778] = 1437, + [1779] = 1508, + [1780] = 1569, + [1781] = 1479, + [1782] = 1480, + [1783] = 1482, + [1784] = 1483, + [1785] = 1484, + [1786] = 1485, + [1787] = 1589, + [1788] = 1486, + [1789] = 1529, + [1790] = 1433, + [1791] = 1434, + [1792] = 1435, + [1793] = 1531, + [1794] = 1532, + [1795] = 1795, + [1796] = 1462, + [1797] = 440, + [1798] = 403, + [1799] = 406, + [1800] = 414, + [1801] = 412, + [1802] = 421, + [1803] = 1492, + [1804] = 1585, + [1805] = 1442, + [1806] = 404, + [1807] = 1563, + [1808] = 1591, + [1809] = 1809, + [1810] = 410, + [1811] = 1811, + [1812] = 420, + [1813] = 425, + [1814] = 1579, + [1815] = 1560, + [1816] = 1562, + [1817] = 1565, + [1818] = 1572, + [1819] = 1575, + [1820] = 1577, + [1821] = 1578, + [1822] = 1581, + [1823] = 1584, + [1824] = 1582, + [1825] = 1471, + [1826] = 1472, + [1827] = 1464, + [1828] = 1592, + [1829] = 1537, + [1830] = 419, + [1831] = 400, + [1832] = 416, + [1833] = 1536, + [1834] = 1519, + [1835] = 401, + [1836] = 399, + [1837] = 402, + [1838] = 1569, + [1839] = 413, + [1840] = 427, + [1841] = 407, + [1842] = 148, + [1843] = 158, + [1844] = 424, + [1845] = 167, + [1846] = 1585, + [1847] = 197, + [1848] = 1563, + [1849] = 408, + [1850] = 171, + [1851] = 426, + [1852] = 1592, + [1853] = 1538, + [1854] = 1569, + [1855] = 1539, + [1856] = 1564, + [1857] = 210, + [1858] = 211, + [1859] = 1570, + [1860] = 1525, + [1861] = 1463, + [1862] = 1811, + [1863] = 1528, + [1864] = 1713, + [1865] = 1473, + [1866] = 1533, + [1867] = 1535, + [1868] = 1769, + [1869] = 1544, + [1870] = 1540, + [1871] = 1516, + [1872] = 1872, + [1873] = 1542, + [1874] = 1874, + [1875] = 1875, + [1876] = 1545, + [1877] = 1877, + [1878] = 1488, + [1879] = 1546, + [1880] = 1809, + [1881] = 1881, + [1882] = 1882, + [1883] = 1714, + [1884] = 1884, + [1885] = 1717, + [1886] = 1886, + [1887] = 1490, + [1888] = 1888, + [1889] = 1713, + [1890] = 1890, + [1891] = 1491, + [1892] = 1881, + [1893] = 1496, + [1894] = 1894, + [1895] = 1590, + [1896] = 1589, + [1897] = 1769, + [1898] = 1564, + [1899] = 1570, + [1900] = 1872, + [1901] = 1498, + [1902] = 1548, + [1903] = 1903, + [1904] = 1881, + [1905] = 1884, + [1906] = 1906, + [1907] = 1713, + [1908] = 1769, + [1909] = 1872, + [1910] = 1882, + [1911] = 1881, + [1912] = 1912, + [1913] = 1884, + [1914] = 1713, + [1915] = 1872, + [1916] = 1881, + [1917] = 1884, + [1918] = 1713, + [1919] = 1872, + [1920] = 1881, + [1921] = 1884, + [1922] = 1874, + [1923] = 1713, + [1924] = 1872, + [1925] = 1881, + [1926] = 1884, + [1927] = 1888, + [1928] = 1438, [1929] = 1929, - [1930] = 1919, - [1931] = 1931, - [1932] = 1932, - [1933] = 1928, - [1934] = 1907, + [1930] = 1930, + [1931] = 1872, + [1932] = 1886, + [1933] = 1884, + [1934] = 1427, [1935] = 1935, [1936] = 1936, [1937] = 1937, - [1938] = 1931, + [1938] = 1938, [1939] = 1939, - [1940] = 1940, - [1941] = 1931, - [1942] = 1937, + [1940] = 1795, + [1941] = 1941, + [1942] = 1942, [1943] = 1943, - [1944] = 1924, + [1944] = 1935, [1945] = 1945, - [1946] = 1922, - [1947] = 1932, - [1948] = 1925, + [1946] = 1942, + [1947] = 1947, + [1948] = 1727, [1949] = 1949, - [1950] = 1926, - [1951] = 1921, - [1952] = 1918, - [1953] = 1936, + [1950] = 1936, + [1951] = 1951, + [1952] = 1952, + [1953] = 1929, [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1955, + [1955] = 1951, + [1956] = 1938, + [1957] = 1957, [1958] = 1958, - [1959] = 1954, - [1960] = 1958, - [1961] = 1956, - [1962] = 1962, + [1959] = 1943, + [1960] = 1952, + [1961] = 1941, + [1962] = 1945, [1963] = 1963, - [1964] = 1964, + [1964] = 1935, [1965] = 1965, [1966] = 1966, - [1967] = 1965, - [1968] = 1966, - [1969] = 1966, - [1970] = 1965, - [1971] = 1965, - [1972] = 1965, - [1973] = 1965, - [1974] = 1974, - [1975] = 1974, - [1976] = 149, - [1977] = 152, - [1978] = 1078, - [1979] = 1082, - [1980] = 1084, - [1981] = 1080, + [1967] = 1967, + [1968] = 1963, + [1969] = 1939, + [1970] = 1949, + [1971] = 1947, + [1972] = 1972, + [1973] = 1973, + [1974] = 1973, + [1975] = 1975, + [1976] = 1972, + [1977] = 1977, + [1978] = 1977, + [1979] = 1975, + [1980] = 1980, + [1981] = 1981, [1982] = 1982, - [1983] = 1063, - [1984] = 1192, - [1985] = 1352, - [1986] = 1246, - [1987] = 1080, - [1988] = 1084, - [1989] = 1082, - [1990] = 1078, - [1991] = 1061, - [1992] = 1299, - [1993] = 1062, - [1994] = 1994, - [1995] = 1093, - [1996] = 1097, - [1997] = 1092, - [1998] = 1151, - [1999] = 1072, - [2000] = 1094, - [2001] = 2001, - [2002] = 2002, - [2003] = 1123, - [2004] = 2004, - [2005] = 2002, - [2006] = 1125, - [2007] = 1085, - [2008] = 1126, - [2009] = 1087, - [2010] = 1086, - [2011] = 1090, - [2012] = 1247, - [2013] = 1562, - [2014] = 2014, - [2015] = 1130, - [2016] = 1300, - [2017] = 2014, - [2018] = 200, - [2019] = 1194, - [2020] = 404, - [2021] = 1117, - [2022] = 402, - [2023] = 1353, - [2024] = 1119, - [2025] = 1193, - [2026] = 1129, - [2027] = 1152, - [2028] = 2004, - [2029] = 2014, - [2030] = 198, - [2031] = 1118, + [1983] = 1983, + [1984] = 1984, + [1985] = 1983, + [1986] = 1984, + [1987] = 1984, + [1988] = 1983, + [1989] = 1983, + [1990] = 1983, + [1991] = 1983, + [1992] = 1992, + [1993] = 1992, + [1994] = 171, + [1995] = 167, + [1996] = 1085, + [1997] = 1088, + [1998] = 1998, + [1999] = 1096, + [2000] = 1098, + [2001] = 1067, + [2002] = 1085, + [2003] = 1306, + [2004] = 1253, + [2005] = 1098, + [2006] = 1068, + [2007] = 1199, + [2008] = 1096, + [2009] = 1359, + [2010] = 1070, + [2011] = 1088, + [2012] = 1158, + [2013] = 2013, + [2014] = 1109, + [2015] = 1099, + [2016] = 1101, + [2017] = 1081, + [2018] = 1103, + [2019] = 2019, + [2020] = 1132, + [2021] = 1130, + [2022] = 2019, + [2023] = 1091, + [2024] = 1092, + [2025] = 1133, + [2026] = 1082, + [2027] = 1087, + [2028] = 2028, + [2029] = 2029, + [2030] = 1201, + [2031] = 2031, [2032] = 2032, - [2033] = 1462, - [2034] = 1442, - [2035] = 1443, - [2036] = 1444, - [2037] = 1500, - [2038] = 1501, - [2039] = 1559, - [2040] = 1556, - [2041] = 2041, - [2042] = 1516, - [2043] = 1561, - [2044] = 1502, - [2045] = 1503, - [2046] = 1504, - [2047] = 1505, - [2048] = 1449, - [2049] = 2004, - [2050] = 1474, - [2051] = 1423, - [2052] = 1475, - [2053] = 1476, - [2054] = 1426, - [2055] = 2055, - [2056] = 1481, - [2057] = 1520, - [2058] = 1526, - [2059] = 1421, - [2060] = 1483, - [2061] = 1455, - [2062] = 1456, - [2063] = 1458, - [2064] = 1459, - [2065] = 1461, - [2066] = 1507, - [2067] = 1463, - [2068] = 1465, - [2069] = 1448, - [2070] = 1506, - [2071] = 1132, - [2072] = 147, - [2073] = 2073, - [2074] = 2074, - [2075] = 151, - [2076] = 1155, - [2077] = 1153, - [2078] = 2078, - [2079] = 1131, - [2080] = 1128, - [2081] = 1154, - [2082] = 1195, - [2083] = 1080, - [2084] = 2084, - [2085] = 1082, - [2086] = 1078, - [2087] = 2087, - [2088] = 1084, - [2089] = 1082, - [2090] = 1084, - [2091] = 1080, - [2092] = 1082, - [2093] = 1080, - [2094] = 1078, - [2095] = 1084, + [2033] = 2031, + [2034] = 1159, + [2035] = 1136, + [2036] = 2031, + [2037] = 1137, + [2038] = 211, + [2039] = 2028, + [2040] = 1307, + [2041] = 1576, + [2042] = 1124, + [2043] = 210, + [2044] = 1360, + [2045] = 1126, + [2046] = 1200, + [2047] = 426, + [2048] = 1254, + [2049] = 408, + [2050] = 1125, + [2051] = 1433, + [2052] = 1442, + [2053] = 1431, + [2054] = 1432, + [2055] = 1519, + [2056] = 1436, + [2057] = 1437, + [2058] = 1441, + [2059] = 1484, + [2060] = 2060, + [2061] = 1470, + [2062] = 1588, + [2063] = 1509, + [2064] = 1471, + [2065] = 1469, + [2066] = 2028, + [2067] = 1472, + [2068] = 1440, + [2069] = 1482, + [2070] = 1434, + [2071] = 1479, + [2072] = 1435, + [2073] = 1571, + [2074] = 1483, + [2075] = 1449, + [2076] = 1587, + [2077] = 1445, + [2078] = 1530, + [2079] = 1480, + [2080] = 1477, + [2081] = 1507, + [2082] = 1536, + [2083] = 2083, + [2084] = 1486, + [2085] = 1478, + [2086] = 1428, + [2087] = 1430, + [2088] = 1485, + [2089] = 1135, + [2090] = 2090, + [2091] = 1138, + [2092] = 1139, + [2093] = 1160, + [2094] = 1161, + [2095] = 1162, [2096] = 2096, - [2097] = 1982, - [2098] = 1078, + [2097] = 197, + [2098] = 158, [2099] = 2099, - [2100] = 2100, + [2100] = 1202, [2101] = 2101, [2102] = 2102, - [2103] = 2103, - [2104] = 2100, - [2105] = 2105, - [2106] = 2105, - [2107] = 2103, - [2108] = 2108, + [2103] = 1998, + [2104] = 1096, + [2105] = 1085, + [2106] = 1098, + [2107] = 1088, + [2108] = 1085, [2109] = 2109, - [2110] = 392, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 1062, - [2116] = 2116, + [2110] = 1096, + [2111] = 1098, + [2112] = 1088, + [2113] = 1085, + [2114] = 1096, + [2115] = 1098, + [2116] = 1088, [2117] = 2117, [2118] = 2118, [2119] = 2119, [2120] = 2120, [2121] = 2121, - [2122] = 2117, - [2123] = 391, - [2124] = 2124, - [2125] = 1061, + [2122] = 2122, + [2123] = 2119, + [2124] = 2120, + [2125] = 2121, [2126] = 2126, - [2127] = 1078, + [2127] = 2127, [2128] = 2128, - [2129] = 2121, - [2130] = 2130, + [2129] = 1068, + [2130] = 394, [2131] = 2131, - [2132] = 1082, - [2133] = 389, + [2132] = 2132, + [2133] = 2133, [2134] = 2134, - [2135] = 2001, - [2136] = 2136, - [2137] = 1084, - [2138] = 2138, - [2139] = 2139, - [2140] = 390, + [2135] = 2135, + [2136] = 395, + [2137] = 1070, + [2138] = 397, + [2139] = 396, + [2140] = 2140, [2141] = 2141, - [2142] = 2141, + [2142] = 2142, [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 1080, - [2147] = 2144, - [2148] = 2128, - [2149] = 2118, - [2150] = 2143, - [2151] = 2151, - [2152] = 393, - [2153] = 2120, - [2154] = 1063, - [2155] = 2114, + [2146] = 2146, + [2147] = 2147, + [2148] = 1085, + [2149] = 1096, + [2150] = 1098, + [2151] = 1088, + [2152] = 2152, + [2153] = 2152, + [2154] = 2154, + [2155] = 2155, [2156] = 2156, [2157] = 2157, [2158] = 2158, - [2159] = 2159, + [2159] = 398, [2160] = 2160, [2161] = 2161, - [2162] = 2158, - [2163] = 2163, - [2164] = 2164, - [2165] = 411, - [2166] = 2164, + [2162] = 2142, + [2163] = 2147, + [2164] = 1067, + [2165] = 2165, + [2166] = 2029, [2167] = 2167, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, + [2168] = 2161, + [2169] = 2131, + [2170] = 2156, [2171] = 2171, - [2172] = 2172, - [2173] = 2173, - [2174] = 2174, + [2172] = 2155, + [2173] = 2165, + [2174] = 2128, [2175] = 2175, [2176] = 2176, [2177] = 2177, [2178] = 2178, [2179] = 2179, - [2180] = 2180, + [2180] = 2178, [2181] = 2181, [2182] = 2182, [2183] = 2183, [2184] = 2184, - [2185] = 2185, - [2186] = 1072, + [2185] = 2184, + [2186] = 2186, [2187] = 2187, - [2188] = 2188, + [2188] = 2175, [2189] = 2189, [2190] = 2190, - [2191] = 2191, + [2191] = 2177, [2192] = 2192, - [2193] = 2001, - [2194] = 2194, - [2195] = 2160, + [2193] = 2193, + [2194] = 2181, + [2195] = 2195, [2196] = 2196, - [2197] = 2172, - [2198] = 2172, + [2197] = 2197, + [2198] = 2029, [2199] = 2199, - [2200] = 2032, - [2201] = 2168, - [2202] = 2001, - [2203] = 2172, + [2200] = 2200, + [2201] = 2201, + [2202] = 2202, + [2203] = 2203, [2204] = 2204, [2205] = 2205, [2206] = 2206, [2207] = 2207, [2208] = 2208, [2209] = 2209, - [2210] = 2172, + [2210] = 2210, [2211] = 2211, - [2212] = 2001, - [2213] = 2213, - [2214] = 2214, + [2212] = 2212, + [2213] = 2177, + [2214] = 2177, [2215] = 2215, - [2216] = 1085, - [2217] = 2217, - [2218] = 1093, - [2219] = 1097, - [2220] = 2220, - [2221] = 2213, + [2216] = 2032, + [2217] = 2177, + [2218] = 2218, + [2219] = 424, + [2220] = 2029, + [2221] = 2221, [2222] = 2222, - [2223] = 2220, + [2223] = 2223, [2224] = 2224, - [2225] = 2225, + [2225] = 1081, [2226] = 2226, - [2227] = 2225, - [2228] = 2225, - [2229] = 1086, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, [2230] = 2230, - [2231] = 2220, + [2231] = 2231, [2232] = 2232, - [2233] = 1094, - [2234] = 2217, - [2235] = 1090, - [2236] = 2236, - [2237] = 1087, - [2238] = 2214, - [2239] = 2032, + [2233] = 2233, + [2234] = 2234, + [2235] = 2235, + [2236] = 1109, + [2237] = 2237, + [2238] = 2231, + [2239] = 2239, [2240] = 2240, - [2241] = 2241, + [2241] = 1099, [2242] = 2242, - [2243] = 2241, - [2244] = 2215, - [2245] = 2245, + [2243] = 1103, + [2244] = 2244, + [2245] = 2230, [2246] = 2246, - [2247] = 2245, + [2247] = 1091, [2248] = 2248, - [2249] = 2032, - [2250] = 2250, - [2251] = 2236, + [2249] = 2249, + [2250] = 2237, + [2251] = 2251, [2252] = 2252, - [2253] = 2226, - [2254] = 2254, + [2253] = 2231, + [2254] = 2232, [2255] = 2255, - [2256] = 2232, - [2257] = 2255, - [2258] = 2252, - [2259] = 2246, - [2260] = 1092, - [2261] = 2250, - [2262] = 2254, - [2263] = 2263, - [2264] = 2264, + [2256] = 1087, + [2257] = 2239, + [2258] = 2246, + [2259] = 2248, + [2260] = 2029, + [2261] = 2261, + [2262] = 2235, + [2263] = 2242, + [2264] = 1082, [2265] = 2265, - [2266] = 2266, - [2267] = 2267, + [2266] = 2240, + [2267] = 2032, [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 2269, - [2272] = 2272, - [2273] = 2266, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 2277, + [2271] = 1101, + [2272] = 2032, + [2273] = 2233, + [2274] = 2234, + [2275] = 2268, + [2276] = 2244, + [2277] = 1092, [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2277, + [2279] = 2278, + [2280] = 2249, + [2281] = 2239, [2282] = 2282, [2283] = 2283, - [2284] = 2282, - [2285] = 2264, + [2284] = 2284, + [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, [2289] = 2289, [2290] = 2290, [2291] = 2291, - [2292] = 2292, - [2293] = 2289, - [2294] = 2280, + [2292] = 2032, + [2293] = 2293, + [2294] = 2294, [2295] = 2295, - [2296] = 2283, + [2296] = 2290, [2297] = 2297, - [2298] = 2291, - [2299] = 2299, - [2300] = 2263, - [2301] = 2286, + [2298] = 2298, + [2299] = 2283, + [2300] = 2300, + [2301] = 2301, [2302] = 2302, - [2303] = 2290, - [2304] = 2292, + [2303] = 2303, + [2304] = 2289, [2305] = 2305, - [2306] = 2272, - [2307] = 2295, - [2308] = 2308, - [2309] = 2032, - [2310] = 2305, - [2311] = 2268, - [2312] = 2275, - [2313] = 2313, - [2314] = 2302, - [2315] = 2267, + [2306] = 2306, + [2307] = 2307, + [2308] = 2305, + [2309] = 2309, + [2310] = 2309, + [2311] = 2311, + [2312] = 2312, + [2313] = 2293, + [2314] = 2312, + [2315] = 2282, [2316] = 2316, [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2320, + [2318] = 2285, + [2319] = 2300, + [2320] = 2298, [2321] = 2321, [2322] = 2322, - [2323] = 2322, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2317, + [2323] = 2316, + [2324] = 2291, + [2325] = 2284, + [2326] = 2288, + [2327] = 2301, + [2328] = 2322, [2329] = 2329, - [2330] = 2330, + [2330] = 2302, [2331] = 2331, - [2332] = 2318, - [2333] = 2333, - [2334] = 2320, - [2335] = 2321, + [2332] = 2332, + [2333] = 2306, + [2334] = 2317, + [2335] = 2335, [2336] = 2336, - [2337] = 2337, + [2337] = 2336, [2338] = 2338, [2339] = 2339, [2340] = 2340, - [2341] = 2324, + [2341] = 2341, [2342] = 2342, - [2343] = 2078, + [2343] = 2343, [2344] = 2344, - [2345] = 2331, + [2345] = 2345, [2346] = 2346, [2347] = 2347, [2348] = 2348, [2349] = 2349, - [2350] = 2329, + [2350] = 2344, [2351] = 2351, - [2352] = 2337, - [2353] = 2353, - [2354] = 2324, + [2352] = 2352, + [2353] = 2351, + [2354] = 2352, [2355] = 2355, - [2356] = 2346, - [2357] = 2357, - [2358] = 2319, + [2356] = 2356, + [2357] = 2090, + [2358] = 2356, [2359] = 2359, - [2360] = 2360, - [2361] = 2361, - [2362] = 2340, - [2363] = 2349, - [2364] = 2336, - [2365] = 2342, - [2366] = 2347, - [2367] = 2351, + [2360] = 2356, + [2361] = 2340, + [2362] = 2362, + [2363] = 2347, + [2364] = 2356, + [2365] = 2348, + [2366] = 2366, + [2367] = 2367, [2368] = 2368, - [2369] = 2326, - [2370] = 2353, + [2369] = 2369, + [2370] = 2370, [2371] = 2371, - [2372] = 2333, - [2373] = 2357, - [2374] = 2359, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, [2375] = 2375, [2376] = 2376, [2377] = 2377, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 147, - [2382] = 2378, - [2383] = 2383, - [2384] = 149, - [2385] = 2377, - [2386] = 151, - [2387] = 2387, + [2378] = 2376, + [2379] = 2366, + [2380] = 2367, + [2381] = 2381, + [2382] = 2368, + [2383] = 2369, + [2384] = 2338, + [2385] = 2372, + [2386] = 2386, + [2387] = 2377, [2388] = 2388, [2389] = 2389, - [2390] = 1195, - [2391] = 2391, - [2392] = 2380, - [2393] = 2379, - [2394] = 2087, + [2390] = 2373, + [2391] = 2377, + [2392] = 2342, + [2393] = 2356, + [2394] = 2374, [2395] = 2395, - [2396] = 2396, - [2397] = 1128, - [2398] = 2383, - [2399] = 2399, + [2396] = 2346, + [2397] = 2375, + [2398] = 2343, + [2399] = 2341, [2400] = 2400, [2401] = 2401, [2402] = 2402, [2403] = 2403, - [2404] = 2404, + [2404] = 2402, [2405] = 2405, [2406] = 2406, [2407] = 2407, [2408] = 2408, - [2409] = 2376, + [2409] = 2405, [2410] = 2410, [2411] = 2411, [2412] = 2412, - [2413] = 2410, - [2414] = 2411, - [2415] = 152, + [2413] = 2413, + [2414] = 1139, + [2415] = 2415, [2416] = 2416, - [2417] = 2417, - [2418] = 2379, + [2417] = 2102, + [2418] = 2413, [2419] = 2419, - [2420] = 2420, - [2421] = 2421, - [2422] = 2422, + [2420] = 2412, + [2421] = 1160, + [2422] = 2413, [2423] = 2423, - [2424] = 2424, - [2425] = 2425, - [2426] = 2383, - [2427] = 2375, - [2428] = 2420, - [2429] = 2404, - [2430] = 2074, + [2424] = 2415, + [2425] = 1161, + [2426] = 2415, + [2427] = 2412, + [2428] = 2428, + [2429] = 2412, + [2430] = 2401, [2431] = 2431, - [2432] = 2416, + [2432] = 2432, [2433] = 2433, - [2434] = 2399, - [2435] = 2433, - [2436] = 2407, - [2437] = 2417, - [2438] = 2423, + [2434] = 2406, + [2435] = 2435, + [2436] = 2403, + [2437] = 2437, + [2438] = 2437, [2439] = 2439, [2440] = 2440, - [2441] = 1132, + [2441] = 2412, [2442] = 2442, - [2443] = 2443, - [2444] = 2444, - [2445] = 2431, - [2446] = 2446, - [2447] = 2388, - [2448] = 2439, - [2449] = 1153, - [2450] = 2425, - [2451] = 2380, - [2452] = 2433, - [2453] = 2402, - [2454] = 2444, - [2455] = 2387, - [2456] = 2395, - [2457] = 2412, - [2458] = 2443, - [2459] = 2459, - [2460] = 2422, - [2461] = 2396, - [2462] = 1131, - [2463] = 2389, - [2464] = 2383, - [2465] = 2096, - [2466] = 2421, - [2467] = 2424, - [2468] = 1154, - [2469] = 2469, - [2470] = 1155, - [2471] = 2401, - [2472] = 2419, - [2473] = 2406, - [2474] = 2380, - [2475] = 2442, - [2476] = 2476, - [2477] = 2477, + [2443] = 1162, + [2444] = 1135, + [2445] = 2413, + [2446] = 2440, + [2447] = 2447, + [2448] = 2096, + [2449] = 1138, + [2450] = 2432, + [2451] = 2451, + [2452] = 2452, + [2453] = 2101, + [2454] = 2454, + [2455] = 158, + [2456] = 2456, + [2457] = 2442, + [2458] = 2458, + [2459] = 167, + [2460] = 2460, + [2461] = 2415, + [2462] = 197, + [2463] = 2463, + [2464] = 2464, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, + [2468] = 2400, + [2469] = 2465, + [2470] = 171, + [2471] = 2452, + [2472] = 2411, + [2473] = 2473, + [2474] = 2428, + [2475] = 2475, + [2476] = 2463, + [2477] = 2464, [2478] = 2478, [2479] = 2479, - [2480] = 2480, - [2481] = 2481, + [2480] = 2437, + [2481] = 2452, [2482] = 2482, - [2483] = 1056, + [2483] = 2475, [2484] = 2484, [2485] = 2485, - [2486] = 2486, - [2487] = 2487, - [2488] = 1102, - [2489] = 2489, - [2490] = 2490, - [2491] = 1192, - [2492] = 1246, - [2493] = 1299, - [2494] = 2494, - [2495] = 1352, - [2496] = 2496, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, + [2486] = 2456, + [2487] = 2466, + [2488] = 2478, + [2489] = 2407, + [2490] = 2467, + [2491] = 2485, + [2492] = 2408, + [2493] = 2423, + [2494] = 2433, + [2495] = 2495, + [2496] = 2479, + [2497] = 2447, + [2498] = 2451, + [2499] = 2495, + [2500] = 2484, + [2501] = 2412, + [2502] = 2439, + [2503] = 2458, + [2504] = 2482, + [2505] = 1202, [2506] = 2506, [2507] = 2507, - [2508] = 1099, + [2508] = 1306, [2509] = 2509, - [2510] = 2510, + [2510] = 1105, [2511] = 2511, - [2512] = 2512, - [2513] = 2498, + [2512] = 1359, + [2513] = 2513, [2514] = 2514, [2515] = 2515, [2516] = 2516, - [2517] = 2512, + [2517] = 2515, [2518] = 2518, - [2519] = 2487, - [2520] = 2516, - [2521] = 2478, + [2519] = 2519, + [2520] = 2519, + [2521] = 2521, [2522] = 2522, - [2523] = 2499, + [2523] = 2523, [2524] = 2524, - [2525] = 1103, + [2525] = 2525, [2526] = 2526, [2527] = 2527, - [2528] = 2528, - [2529] = 2514, - [2530] = 2515, + [2528] = 2527, + [2529] = 2529, + [2530] = 2530, [2531] = 2531, [2532] = 2532, - [2533] = 2518, - [2534] = 2528, + [2533] = 2533, + [2534] = 2534, [2535] = 2535, [2536] = 2536, - [2537] = 2532, - [2538] = 2489, - [2539] = 2494, - [2540] = 2503, - [2541] = 2507, - [2542] = 2498, - [2543] = 2515, - [2544] = 2516, - [2545] = 2478, - [2546] = 2546, - [2547] = 2526, + [2537] = 2507, + [2538] = 2516, + [2539] = 2539, + [2540] = 1063, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2544, + [2545] = 2545, + [2546] = 2525, + [2547] = 2547, [2548] = 2548, - [2549] = 2516, - [2550] = 2535, - [2551] = 2551, + [2549] = 2530, + [2550] = 2518, + [2551] = 1110, [2552] = 2552, [2553] = 2553, - [2554] = 2554, - [2555] = 2479, - [2556] = 2556, + [2554] = 1108, + [2555] = 2555, + [2556] = 2521, [2557] = 2557, - [2558] = 2526, - [2559] = 2509, + [2558] = 2553, + [2559] = 2559, [2560] = 2560, - [2561] = 2099, + [2561] = 2514, [2562] = 2562, - [2563] = 2102, - [2564] = 2564, - [2565] = 2565, - [2566] = 2566, - [2567] = 2567, - [2568] = 2527, - [2569] = 2531, - [2570] = 2478, - [2571] = 2510, + [2563] = 2515, + [2564] = 2543, + [2565] = 2514, + [2566] = 2547, + [2567] = 2542, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2527, [2572] = 2572, [2573] = 2573, - [2574] = 2507, - [2575] = 2510, - [2576] = 1098, + [2574] = 2118, + [2575] = 2553, + [2576] = 2576, [2577] = 2577, - [2578] = 2536, - [2579] = 2579, - [2580] = 2579, - [2581] = 2479, - [2582] = 2522, - [2583] = 2515, - [2584] = 2477, + [2578] = 2578, + [2579] = 2531, + [2580] = 2519, + [2581] = 2573, + [2582] = 1107, + [2583] = 2514, + [2584] = 2584, [2585] = 2585, - [2586] = 2586, + [2586] = 2534, [2587] = 2587, [2588] = 2588, [2589] = 2589, - [2590] = 2590, + [2590] = 2523, [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, - [2595] = 2595, + [2592] = 2521, + [2593] = 1199, + [2594] = 2509, + [2595] = 2547, [2596] = 2596, - [2597] = 2597, - [2598] = 2598, - [2599] = 2599, - [2600] = 2600, + [2597] = 2533, + [2598] = 2544, + [2599] = 2589, + [2600] = 2122, [2601] = 2601, - [2602] = 2602, - [2603] = 2601, + [2602] = 2532, + [2603] = 2603, [2604] = 2604, - [2605] = 2605, - [2606] = 2606, + [2605] = 2601, + [2606] = 1253, [2607] = 2607, - [2608] = 2608, - [2609] = 2609, - [2610] = 2610, - [2611] = 2593, - [2612] = 2612, + [2608] = 2588, + [2609] = 2526, + [2610] = 2515, + [2611] = 2611, + [2612] = 2553, [2613] = 2613, [2614] = 2614, [2615] = 2615, [2616] = 2616, [2617] = 2617, - [2618] = 2592, - [2619] = 2597, - [2620] = 2607, - [2621] = 2608, + [2618] = 2618, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, [2622] = 2622, [2623] = 2623, - [2624] = 2624, + [2624] = 2621, [2625] = 2625, - [2626] = 2589, + [2626] = 2626, [2627] = 2627, [2628] = 2628, [2629] = 2629, - [2630] = 2605, + [2630] = 2616, [2631] = 2631, [2632] = 2632, [2633] = 2633, - [2634] = 2634, - [2635] = 2635, + [2634] = 2618, + [2635] = 2631, [2636] = 2636, [2637] = 2637, - [2638] = 2599, + [2638] = 2619, [2639] = 2639, - [2640] = 2631, + [2640] = 2640, [2641] = 2641, [2642] = 2642, [2643] = 2643, - [2644] = 2627, - [2645] = 2610, - [2646] = 2616, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, [2647] = 2647, - [2648] = 2642, + [2648] = 2648, [2649] = 2649, - [2650] = 2635, - [2651] = 2595, - [2652] = 2652, - [2653] = 2653, + [2650] = 2650, + [2651] = 2651, + [2652] = 2626, + [2653] = 2646, [2654] = 2654, - [2655] = 2604, - [2656] = 2606, - [2657] = 2643, + [2655] = 2655, + [2656] = 2656, + [2657] = 2657, [2658] = 2658, [2659] = 2659, [2660] = 2660, [2661] = 2661, [2662] = 2662, - [2663] = 2663, - [2664] = 2659, + [2663] = 2623, + [2664] = 2615, [2665] = 2665, [2666] = 2666, [2667] = 2667, [2668] = 2668, - [2669] = 2669, + [2669] = 2632, [2670] = 2670, [2671] = 2671, - [2672] = 2671, + [2672] = 2649, [2673] = 2673, [2674] = 2674, [2675] = 2675, [2676] = 2676, [2677] = 2677, - [2678] = 2637, - [2679] = 182, + [2678] = 2678, + [2679] = 2679, [2680] = 2680, - [2681] = 2681, - [2682] = 2112, - [2683] = 2622, - [2684] = 2124, - [2685] = 2108, - [2686] = 2136, - [2687] = 2660, - [2688] = 2662, - [2689] = 2665, - [2690] = 2690, - [2691] = 2661, - [2692] = 2674, - [2693] = 2653, - [2694] = 2639, + [2681] = 2636, + [2682] = 2650, + [2683] = 2683, + [2684] = 2617, + [2685] = 2685, + [2686] = 2686, + [2687] = 2622, + [2688] = 2688, + [2689] = 2655, + [2690] = 2673, + [2691] = 2674, + [2692] = 2692, + [2693] = 2693, + [2694] = 2694, [2695] = 2695, [2696] = 2696, - [2697] = 2649, - [2698] = 2632, - [2699] = 2699, - [2700] = 2633, - [2701] = 2598, - [2702] = 2599, - [2703] = 2600, - [2704] = 2704, - [2705] = 2601, - [2706] = 2602, - [2707] = 2609, - [2708] = 2625, - [2709] = 2593, - [2710] = 2710, - [2711] = 2612, - [2712] = 2613, - [2713] = 2614, - [2714] = 2592, - [2715] = 2597, - [2716] = 2607, - [2717] = 2608, - [2718] = 2623, - [2719] = 2719, - [2720] = 2589, - [2721] = 2627, - [2722] = 2628, - [2723] = 2676, - [2724] = 2631, - [2725] = 2632, - [2726] = 2633, - [2727] = 2663, - [2728] = 2641, - [2729] = 2729, - [2730] = 2595, - [2731] = 2600, - [2732] = 2732, - [2733] = 2663, - [2734] = 2734, - [2735] = 2666, - [2736] = 2667, - [2737] = 2668, - [2738] = 2738, - [2739] = 2680, - [2740] = 2681, - [2741] = 2598, - [2742] = 2599, - [2743] = 2600, - [2744] = 2601, - [2745] = 2593, - [2746] = 2612, - [2747] = 2613, - [2748] = 2614, - [2749] = 2592, - [2750] = 2597, - [2751] = 2607, - [2752] = 2589, - [2753] = 2627, - [2754] = 2631, - [2755] = 2633, - [2756] = 2641, - [2757] = 183, - [2758] = 2663, - [2759] = 2600, - [2760] = 2601, - [2761] = 2641, - [2762] = 2612, - [2763] = 2597, - [2764] = 2607, - [2765] = 2589, - [2766] = 2627, - [2767] = 2631, - [2768] = 2633, + [2697] = 2697, + [2698] = 2698, + [2699] = 2665, + [2700] = 2700, + [2701] = 2701, + [2702] = 2702, + [2703] = 2642, + [2704] = 2643, + [2705] = 2633, + [2706] = 2615, + [2707] = 2707, + [2708] = 2622, + [2709] = 2709, + [2710] = 2693, + [2711] = 2620, + [2712] = 2688, + [2713] = 2633, + [2714] = 2714, + [2715] = 2614, + [2716] = 2640, + [2717] = 2641, + [2718] = 2718, + [2719] = 2656, + [2720] = 2657, + [2721] = 2666, + [2722] = 2678, + [2723] = 2679, + [2724] = 2680, + [2725] = 2647, + [2726] = 2636, + [2727] = 2650, + [2728] = 2667, + [2729] = 2688, + [2730] = 2655, + [2731] = 2673, + [2732] = 2693, + [2733] = 2694, + [2734] = 2695, + [2735] = 2735, + [2736] = 2698, + [2737] = 2665, + [2738] = 2702, + [2739] = 2643, + [2740] = 2702, + [2741] = 2615, + [2742] = 2656, + [2743] = 2668, + [2744] = 2633, + [2745] = 2648, + [2746] = 2680, + [2747] = 2657, + [2748] = 2636, + [2749] = 2650, + [2750] = 2698, + [2751] = 2688, + [2752] = 2694, + [2753] = 2695, + [2754] = 2698, + [2755] = 2665, + [2756] = 2702, + [2757] = 2643, + [2758] = 2758, + [2759] = 2759, + [2760] = 2143, + [2761] = 2761, + [2762] = 2680, + [2763] = 2763, + [2764] = 2144, + [2765] = 2694, + [2766] = 2145, + [2767] = 2702, + [2768] = 2643, [2769] = 2769, - [2770] = 2600, - [2771] = 2597, - [2772] = 2631, - [2773] = 2633, - [2774] = 2774, - [2775] = 2775, - [2776] = 2623, + [2770] = 2697, + [2771] = 2771, + [2772] = 2772, + [2773] = 183, + [2774] = 2702, + [2775] = 2643, + [2776] = 2654, [2777] = 2777, - [2778] = 2613, - [2779] = 2779, - [2780] = 2631, - [2781] = 2633, - [2782] = 2680, - [2783] = 2609, + [2778] = 2146, + [2779] = 2694, + [2780] = 2780, + [2781] = 2661, + [2782] = 2678, + [2783] = 2679, [2784] = 2784, - [2785] = 2605, + [2785] = 2680, [2786] = 2786, - [2787] = 2704, - [2788] = 2681, - [2789] = 2789, - [2790] = 2628, - [2791] = 2791, - [2792] = 2614, - [2793] = 2791, - [2794] = 2131, - [2795] = 2634, - [2796] = 2139, - [2797] = 2151, + [2787] = 2787, + [2788] = 2683, + [2789] = 2636, + [2790] = 2650, + [2791] = 2683, + [2792] = 2787, + [2793] = 2793, + [2794] = 2627, + [2795] = 2628, + [2796] = 2695, + [2797] = 2686, [2798] = 2798, [2799] = 2799, - [2800] = 2800, - [2801] = 2109, - [2802] = 2666, - [2803] = 2610, - [2804] = 2616, - [2805] = 2156, - [2806] = 2667, - [2807] = 2690, - [2808] = 2668, - [2809] = 2126, - [2810] = 2145, - [2811] = 2116, - [2812] = 2699, - [2813] = 2799, - [2814] = 2729, - [2815] = 2585, - [2816] = 2816, - [2817] = 2817, - [2818] = 2800, - [2819] = 2817, - [2820] = 2784, - [2821] = 2654, - [2822] = 2609, - [2823] = 2609, - [2824] = 2824, - [2825] = 2605, - [2826] = 2791, - [2827] = 2598, - [2828] = 2612, - [2829] = 2605, - [2830] = 2791, - [2831] = 2673, - [2832] = 2732, - [2833] = 2833, - [2834] = 2586, - [2835] = 2789, - [2836] = 2636, - [2837] = 2629, - [2838] = 2838, - [2839] = 2615, - [2840] = 2670, - [2841] = 2696, - [2842] = 2602, - [2843] = 2632, - [2844] = 2624, - [2845] = 2675, - [2846] = 2846, - [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2850, - [2851] = 2851, - [2852] = 2176, - [2853] = 2853, - [2854] = 2854, - [2855] = 2855, - [2856] = 2856, - [2857] = 2857, - [2858] = 2194, - [2859] = 2859, - [2860] = 2199, - [2861] = 2861, - [2862] = 2862, - [2863] = 2863, - [2864] = 2864, - [2865] = 2865, - [2866] = 2866, - [2867] = 2867, - [2868] = 2868, - [2869] = 2209, - [2870] = 2157, - [2871] = 2871, - [2872] = 2872, - [2873] = 2190, - [2874] = 2874, - [2875] = 2187, + [2800] = 2661, + [2801] = 2677, + [2802] = 2614, + [2803] = 2696, + [2804] = 2617, + [2805] = 2618, + [2806] = 2619, + [2807] = 2807, + [2808] = 2688, + [2809] = 2809, + [2810] = 2810, + [2811] = 2655, + [2812] = 2673, + [2813] = 2813, + [2814] = 2814, + [2815] = 2640, + [2816] = 2641, + [2817] = 2645, + [2818] = 2670, + [2819] = 2132, + [2820] = 184, + [2821] = 2693, + [2822] = 2133, + [2823] = 2758, + [2824] = 2676, + [2825] = 2694, + [2826] = 2695, + [2827] = 2696, + [2828] = 2828, + [2829] = 2697, + [2830] = 2660, + [2831] = 2662, + [2832] = 2832, + [2833] = 2134, + [2834] = 2135, + [2835] = 2701, + [2836] = 2639, + [2837] = 2837, + [2838] = 2617, + [2839] = 2813, + [2840] = 2617, + [2841] = 2841, + [2842] = 2842, + [2843] = 2698, + [2844] = 2661, + [2845] = 2665, + [2846] = 2700, + [2847] = 2787, + [2848] = 2700, + [2849] = 2661, + [2850] = 2787, + [2851] = 2702, + [2852] = 2709, + [2853] = 2642, + [2854] = 2643, + [2855] = 2680, + [2856] = 2659, + [2857] = 2158, + [2858] = 2671, + [2859] = 2171, + [2860] = 2679, + [2861] = 2772, + [2862] = 2141, + [2863] = 2637, + [2864] = 2841, + [2865] = 2154, + [2866] = 2809, + [2867] = 2678, + [2868] = 2786, + [2869] = 2869, + [2870] = 2644, + [2871] = 2869, + [2872] = 2784, + [2873] = 2642, + [2874] = 2837, + [2875] = 2875, [2876] = 2876, [2877] = 2877, - [2878] = 2850, + [2878] = 2878, [2879] = 2879, [2880] = 2880, [2881] = 2881, [2882] = 2882, - [2883] = 2883, + [2883] = 424, [2884] = 2884, [2885] = 2885, - [2886] = 170, - [2887] = 2887, + [2886] = 2886, + [2887] = 2877, [2888] = 2888, - [2889] = 2889, - [2890] = 2879, + [2889] = 2879, + [2890] = 2890, [2891] = 2891, - [2892] = 2884, + [2892] = 2886, [2893] = 2893, - [2894] = 2894, + [2894] = 2891, [2895] = 2895, [2896] = 2896, - [2897] = 2851, + [2897] = 2888, [2898] = 2898, [2899] = 2899, - [2900] = 2900, + [2900] = 2880, [2901] = 2901, [2902] = 2902, [2903] = 2903, [2904] = 2904, [2905] = 2905, [2906] = 2906, - [2907] = 2874, + [2907] = 2907, [2908] = 2908, [2909] = 2909, [2910] = 2910, [2911] = 2911, - [2912] = 2912, + [2912] = 2208, [2913] = 2913, - [2914] = 2914, + [2914] = 2878, [2915] = 2915, [2916] = 2916, - [2917] = 2917, + [2917] = 148, [2918] = 2918, - [2919] = 2868, - [2920] = 2920, - [2921] = 2921, - [2922] = 2922, + [2919] = 2919, + [2920] = 2908, + [2921] = 2893, + [2922] = 2910, [2923] = 2923, - [2924] = 2924, + [2924] = 2210, [2925] = 2925, [2926] = 2926, - [2927] = 2927, + [2927] = 2918, [2928] = 2928, [2929] = 2929, - [2930] = 2885, - [2931] = 2889, - [2932] = 2182, - [2933] = 2204, + [2930] = 2211, + [2931] = 2931, + [2932] = 2884, + [2933] = 2885, [2934] = 2934, - [2935] = 2846, + [2935] = 2896, [2936] = 2936, - [2937] = 2181, - [2938] = 2938, - [2939] = 2939, + [2937] = 2937, + [2938] = 2926, + [2939] = 2212, [2940] = 2940, - [2941] = 2941, - [2942] = 2903, + [2941] = 2916, + [2942] = 2942, [2943] = 2943, - [2944] = 2173, + [2944] = 2944, [2945] = 2945, - [2946] = 2180, + [2946] = 2878, [2947] = 2947, [2948] = 2948, [2949] = 2949, - [2950] = 2208, - [2951] = 2948, - [2952] = 2952, + [2950] = 2189, + [2951] = 2190, + [2952] = 2896, [2953] = 2953, - [2954] = 2954, - [2955] = 2171, + [2954] = 2195, + [2955] = 2955, [2956] = 2956, - [2957] = 2957, + [2957] = 2201, [2958] = 2958, - [2959] = 2959, - [2960] = 2960, - [2961] = 2945, + [2959] = 2186, + [2960] = 2888, + [2961] = 2961, [2962] = 2962, [2963] = 2963, - [2964] = 2943, + [2964] = 2193, [2965] = 2965, - [2966] = 2920, + [2966] = 2966, [2967] = 2967, - [2968] = 2968, + [2968] = 2962, [2969] = 2969, - [2970] = 2939, + [2970] = 2970, [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2936, - [2975] = 2888, + [2972] = 2884, + [2973] = 2885, + [2974] = 2974, + [2975] = 2975, [2976] = 2976, [2977] = 2977, - [2978] = 2978, - [2979] = 2929, - [2980] = 2980, - [2981] = 2183, - [2982] = 2853, + [2978] = 2953, + [2979] = 2979, + [2980] = 2967, + [2981] = 2226, + [2982] = 2934, [2983] = 2983, - [2984] = 2871, + [2984] = 2984, [2985] = 2985, [2986] = 2986, [2987] = 2987, - [2988] = 2978, + [2988] = 2988, [2989] = 2989, - [2990] = 2167, - [2991] = 2877, + [2990] = 2990, + [2991] = 2895, [2992] = 2992, - [2993] = 2855, + [2993] = 2196, [2994] = 2994, - [2995] = 2859, - [2996] = 2862, - [2997] = 2863, + [2995] = 2995, + [2996] = 2197, + [2997] = 2881, [2998] = 2998, [2999] = 2999, [3000] = 3000, - [3001] = 2936, - [3002] = 2898, - [3003] = 2899, + [3001] = 3001, + [3002] = 3002, + [3003] = 2229, [3004] = 3004, - [3005] = 2906, - [3006] = 2908, - [3007] = 2910, - [3008] = 2911, - [3009] = 2889, - [3010] = 3010, - [3011] = 2855, - [3012] = 2179, + [3005] = 2970, + [3006] = 3006, + [3007] = 2200, + [3008] = 3008, + [3009] = 3009, + [3010] = 2202, + [3011] = 2203, + [3012] = 3012, [3013] = 3013, [3014] = 3014, - [3015] = 2846, - [3016] = 2881, - [3017] = 3017, + [3015] = 2992, + [3016] = 2999, + [3017] = 2942, [3018] = 3018, - [3019] = 3019, - [3020] = 3020, - [3021] = 2978, - [3022] = 3022, - [3023] = 3023, - [3024] = 2898, - [3025] = 2899, - [3026] = 3026, - [3027] = 3027, - [3028] = 2889, + [3019] = 2975, + [3020] = 2986, + [3021] = 3021, + [3022] = 2218, + [3023] = 2182, + [3024] = 2222, + [3025] = 3025, + [3026] = 2209, + [3027] = 2877, + [3028] = 3028, [3029] = 3029, - [3030] = 2927, - [3031] = 2872, - [3032] = 2936, + [3030] = 3030, + [3031] = 3031, + [3032] = 3032, [3033] = 3033, - [3034] = 3034, - [3035] = 411, - [3036] = 2918, - [3037] = 2211, - [3038] = 3010, - [3039] = 2896, + [3034] = 2879, + [3035] = 3035, + [3036] = 2223, + [3037] = 3037, + [3038] = 3038, + [3039] = 2945, [3040] = 3040, - [3041] = 3041, - [3042] = 2956, - [3043] = 2987, - [3044] = 2957, + [3041] = 2179, + [3042] = 3042, + [3043] = 3043, + [3044] = 2207, [3045] = 3045, - [3046] = 2188, - [3047] = 2189, - [3048] = 2898, - [3049] = 2862, - [3050] = 2899, - [3051] = 2863, - [3052] = 2978, + [3046] = 2227, + [3047] = 2974, + [3048] = 3013, + [3049] = 2925, + [3050] = 3050, + [3051] = 3051, + [3052] = 3052, [3053] = 3053, - [3054] = 2900, - [3055] = 3055, - [3056] = 3056, - [3057] = 2901, - [3058] = 2927, - [3059] = 3059, + [3054] = 3054, + [3055] = 2886, + [3056] = 2876, + [3057] = 3057, + [3058] = 2891, + [3059] = 2199, [3060] = 3060, [3061] = 3061, - [3062] = 3062, - [3063] = 3063, - [3064] = 3064, - [3065] = 2170, - [3066] = 3066, - [3067] = 2902, - [3068] = 2859, - [3069] = 2904, + [3062] = 3002, + [3063] = 3004, + [3064] = 2878, + [3065] = 3065, + [3066] = 2183, + [3067] = 3067, + [3068] = 3068, + [3069] = 2187, [3070] = 3070, - [3071] = 2847, + [3071] = 2944, [3072] = 3072, [3073] = 3073, - [3074] = 2865, + [3074] = 2915, [3075] = 3075, - [3076] = 2174, - [3077] = 2175, - [3078] = 3034, - [3079] = 2906, - [3080] = 3018, - [3081] = 2926, + [3076] = 3076, + [3077] = 3077, + [3078] = 2937, + [3079] = 3079, + [3080] = 3031, + [3081] = 2898, [3082] = 3082, - [3083] = 3083, - [3084] = 2908, - [3085] = 2905, - [3086] = 2177, - [3087] = 2987, - [3088] = 2967, - [3089] = 2178, + [3083] = 2899, + [3084] = 3084, + [3085] = 3085, + [3086] = 2992, + [3087] = 2948, + [3088] = 3088, + [3089] = 3089, [3090] = 3090, [3091] = 3091, - [3092] = 2196, - [3093] = 2205, - [3094] = 2191, - [3095] = 2922, - [3096] = 2910, - [3097] = 2953, - [3098] = 2911, - [3099] = 3099, - [3100] = 2163, + [3092] = 2228, + [3093] = 3093, + [3094] = 3052, + [3095] = 3089, + [3096] = 3096, + [3097] = 3097, + [3098] = 3098, + [3099] = 3073, + [3100] = 2890, [3101] = 3101, - [3102] = 2206, - [3103] = 2161, - [3104] = 2940, - [3105] = 2866, - [3106] = 2968, - [3107] = 2169, - [3108] = 2184, + [3102] = 3102, + [3103] = 3000, + [3104] = 3104, + [3105] = 3105, + [3106] = 3106, + [3107] = 3076, + [3108] = 2994, [3109] = 3109, - [3110] = 2912, - [3111] = 2913, - [3112] = 3062, - [3113] = 3113, - [3114] = 3114, + [3110] = 3110, + [3111] = 3111, + [3112] = 3112, + [3113] = 2995, + [3114] = 2878, [3115] = 3115, [3116] = 3116, - [3117] = 3017, + [3117] = 2215, [3118] = 3118, - [3119] = 2925, - [3120] = 3060, - [3121] = 3121, - [3122] = 3122, - [3123] = 3064, - [3124] = 3061, - [3125] = 3125, - [3126] = 2959, - [3127] = 2882, - [3128] = 3128, - [3129] = 2914, - [3130] = 2915, - [3131] = 2960, - [3132] = 2207, - [3133] = 2849, - [3134] = 3134, - [3135] = 2962, - [3136] = 3020, - [3137] = 2916, + [3119] = 3119, + [3120] = 2906, + [3121] = 3115, + [3122] = 2907, + [3123] = 2221, + [3124] = 2971, + [3125] = 3035, + [3126] = 2192, + [3127] = 3014, + [3128] = 2893, + [3129] = 3038, + [3130] = 2965, + [3131] = 2896, + [3132] = 3132, + [3133] = 2943, + [3134] = 2884, + [3135] = 2885, + [3136] = 3136, + [3137] = 2911, [3138] = 3138, - [3139] = 3139, - [3140] = 2159, - [3141] = 2963, - [3142] = 3142, - [3143] = 2938, - [3144] = 2947, - [3145] = 3116, - [3146] = 2985, - [3147] = 2867, - [3148] = 3045, - [3149] = 2965, - [3150] = 2934, - [3151] = 3013, - [3152] = 3152, - [3153] = 2891, - [3154] = 2986, - [3155] = 2936, - [3156] = 3156, + [3139] = 2923, + [3140] = 2205, + [3141] = 2979, + [3142] = 2176, + [3143] = 2931, + [3144] = 2901, + [3145] = 3145, + [3146] = 3115, + [3147] = 3032, + [3148] = 2990, + [3149] = 3061, + [3150] = 3050, + [3151] = 3033, + [3152] = 2936, + [3153] = 2987, + [3154] = 2893, + [3155] = 3001, + [3156] = 2989, [3157] = 3157, [3158] = 3158, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3072, - [3163] = 3163, - [3164] = 3164, - [3165] = 3073, + [3159] = 2976, + [3160] = 3116, + [3161] = 3006, + [3162] = 3162, + [3163] = 2224, + [3164] = 2958, + [3165] = 3165, [3166] = 3166, - [3167] = 3167, + [3167] = 2966, [3168] = 3168, - [3169] = 3169, - [3170] = 3170, + [3169] = 3162, + [3170] = 2890, [3171] = 3171, - [3172] = 3172, - [3173] = 3173, - [3174] = 3161, + [3172] = 2977, + [3173] = 3082, + [3174] = 3098, [3175] = 3175, - [3176] = 3164, - [3177] = 3177, - [3178] = 3178, - [3179] = 3179, + [3176] = 2915, + [3177] = 3042, + [3178] = 2919, + [3179] = 3158, [3180] = 3180, [3181] = 3181, [3182] = 3182, - [3183] = 3183, - [3184] = 3184, - [3185] = 3185, + [3183] = 3097, + [3184] = 2908, + [3185] = 2910, [3186] = 3186, [3187] = 3187, [3188] = 3188, @@ -7182,323 +7191,323 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3193] = 3193, [3194] = 3194, [3195] = 3195, - [3196] = 3169, + [3196] = 3196, [3197] = 3197, - [3198] = 3160, - [3199] = 3170, + [3198] = 3198, + [3199] = 3199, [3200] = 3200, - [3201] = 3171, - [3202] = 3166, + [3201] = 3201, + [3202] = 3202, [3203] = 3203, [3204] = 3204, - [3205] = 3169, + [3205] = 3205, [3206] = 3206, [3207] = 3207, - [3208] = 3173, + [3208] = 3208, [3209] = 3209, - [3210] = 3160, + [3210] = 3210, [3211] = 3211, - [3212] = 3179, - [3213] = 3213, + [3212] = 3212, + [3213] = 3201, [3214] = 3214, [3215] = 3215, [3216] = 3216, [3217] = 3217, [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 3164, + [3219] = 3204, + [3220] = 3215, + [3221] = 3221, [3222] = 3222, [3223] = 3223, - [3224] = 3170, + [3224] = 3224, [3225] = 3225, - [3226] = 3173, - [3227] = 3161, - [3228] = 3175, + [3226] = 3226, + [3227] = 3227, + [3228] = 3228, [3229] = 3229, [3230] = 3230, - [3231] = 3231, + [3231] = 1536, [3232] = 3232, - [3233] = 3173, - [3234] = 3234, - [3235] = 3173, - [3236] = 3192, - [3237] = 3156, + [3233] = 3233, + [3234] = 3199, + [3235] = 3224, + [3236] = 3236, + [3237] = 3199, [3238] = 3238, - [3239] = 3239, + [3239] = 3207, [3240] = 3240, - [3241] = 3241, - [3242] = 3187, - [3243] = 3160, + [3241] = 3225, + [3242] = 3242, + [3243] = 3243, [3244] = 3244, - [3245] = 3217, - [3246] = 3161, - [3247] = 3164, - [3248] = 3186, - [3249] = 3158, - [3250] = 3173, - [3251] = 3175, - [3252] = 3161, - [3253] = 3175, - [3254] = 3241, - [3255] = 3255, - [3256] = 3203, - [3257] = 3184, + [3245] = 3243, + [3246] = 3246, + [3247] = 3191, + [3248] = 3248, + [3249] = 3249, + [3250] = 3250, + [3251] = 3197, + [3252] = 3199, + [3253] = 3224, + [3254] = 3201, + [3255] = 3202, + [3256] = 3256, + [3257] = 3257, [3258] = 3258, - [3259] = 3170, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3217, - [3264] = 3264, - [3265] = 3173, - [3266] = 3161, - [3267] = 3175, + [3259] = 3259, + [3260] = 3215, + [3261] = 3195, + [3262] = 3200, + [3263] = 3203, + [3264] = 3211, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, [3268] = 3268, [3269] = 3269, [3270] = 3270, - [3271] = 3178, + [3271] = 3238, [3272] = 3272, - [3273] = 3217, - [3274] = 3173, - [3275] = 3161, - [3276] = 3175, - [3277] = 3180, + [3273] = 3273, + [3274] = 3274, + [3275] = 3242, + [3276] = 3193, + [3277] = 3277, [3278] = 3278, - [3279] = 3229, - [3280] = 3217, - [3281] = 3173, - [3282] = 3161, - [3283] = 3175, - [3284] = 3217, - [3285] = 3161, - [3286] = 3175, - [3287] = 3217, - [3288] = 3161, - [3289] = 3175, - [3290] = 3217, - [3291] = 3161, - [3292] = 3175, - [3293] = 3217, - [3294] = 3161, - [3295] = 3175, - [3296] = 3173, - [3297] = 3297, + [3279] = 3191, + [3280] = 3199, + [3281] = 3281, + [3282] = 3201, + [3283] = 3202, + [3284] = 3267, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, + [3289] = 3215, + [3290] = 3210, + [3291] = 3291, + [3292] = 3292, + [3293] = 3238, + [3294] = 3208, + [3295] = 3295, + [3296] = 3268, + [3297] = 3242, [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3301, - [3302] = 3209, - [3303] = 3303, - [3304] = 3270, - [3305] = 1117, - [3306] = 1118, - [3307] = 3232, + [3299] = 3199, + [3300] = 3201, + [3301] = 3202, + [3302] = 3236, + [3303] = 3258, + [3304] = 3304, + [3305] = 3305, + [3306] = 3238, + [3307] = 3307, [3308] = 3308, - [3309] = 3190, - [3310] = 3310, - [3311] = 3238, - [3312] = 3178, - [3313] = 3313, - [3314] = 3314, - [3315] = 3225, - [3316] = 3316, - [3317] = 3317, - [3318] = 3193, - [3319] = 3317, - [3320] = 3211, - [3321] = 3200, - [3322] = 3322, - [3323] = 3190, - [3324] = 3314, - [3325] = 3325, - [3326] = 3326, - [3327] = 3327, - [3328] = 3328, - [3329] = 3240, + [3309] = 3242, + [3310] = 3199, + [3311] = 3201, + [3312] = 3202, + [3313] = 3217, + [3314] = 3242, + [3315] = 3199, + [3316] = 3201, + [3317] = 3202, + [3318] = 3242, + [3319] = 3201, + [3320] = 3202, + [3321] = 3242, + [3322] = 3201, + [3323] = 3202, + [3324] = 3242, + [3325] = 3201, + [3326] = 3202, + [3327] = 3242, + [3328] = 3201, + [3329] = 3202, [3330] = 3330, - [3331] = 3331, + [3331] = 3281, [3332] = 3332, - [3333] = 3216, - [3334] = 3334, - [3335] = 3171, - [3336] = 3336, - [3337] = 3173, - [3338] = 3168, + [3333] = 3199, + [3334] = 3269, + [3335] = 3191, + [3336] = 3308, + [3337] = 3225, + [3338] = 3338, [3339] = 3339, - [3340] = 3255, - [3341] = 3300, - [3342] = 3239, - [3343] = 3159, - [3344] = 3261, - [3345] = 1476, - [3346] = 3346, - [3347] = 3310, - [3348] = 3316, - [3349] = 3299, - [3350] = 3298, - [3351] = 3217, - [3352] = 3346, - [3353] = 3331, - [3354] = 3204, - [3355] = 3207, - [3356] = 3230, - [3357] = 3231, - [3358] = 3262, - [3359] = 3327, + [3340] = 3242, + [3341] = 3259, + [3342] = 1124, + [3343] = 1125, + [3344] = 3344, + [3345] = 3212, + [3346] = 3259, + [3347] = 3223, + [3348] = 3277, + [3349] = 3349, + [3350] = 3350, + [3351] = 1442, + [3352] = 3352, + [3353] = 3244, + [3354] = 3008, + [3355] = 1472, + [3356] = 3256, + [3357] = 3357, + [3358] = 3021, + [3359] = 3359, [3360] = 3360, - [3361] = 3184, - [3362] = 3268, + [3361] = 3205, + [3362] = 3362, [3363] = 3363, - [3364] = 3189, + [3364] = 3364, [3365] = 3365, - [3366] = 3360, - [3367] = 3330, - [3368] = 3301, + [3366] = 3190, + [3367] = 3367, + [3368] = 3368, [3369] = 3369, - [3370] = 3238, + [3370] = 3189, [3371] = 3371, - [3372] = 3372, - [3373] = 3332, - [3374] = 3175, - [3375] = 3157, - [3376] = 1507, - [3377] = 3217, - [3378] = 3308, - [3379] = 3379, - [3380] = 3301, + [3372] = 3227, + [3373] = 3191, + [3374] = 3229, + [3375] = 3375, + [3376] = 3376, + [3377] = 3377, + [3378] = 3378, + [3379] = 3274, + [3380] = 3380, [3381] = 3381, - [3382] = 3270, - [3383] = 1117, - [3384] = 1118, - [3385] = 3328, - [3386] = 3308, - [3387] = 3223, - [3388] = 3193, - [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3392, - [3393] = 3393, - [3394] = 3394, - [3395] = 3395, - [3396] = 3173, - [3397] = 3397, - [3398] = 3301, - [3399] = 3218, - [3400] = 3308, - [3401] = 1526, - [3402] = 1421, - [3403] = 3301, - [3404] = 3308, - [3405] = 3405, + [3382] = 3382, + [3383] = 3380, + [3384] = 3339, + [3385] = 3286, + [3386] = 1519, + [3387] = 3196, + [3388] = 3197, + [3389] = 3305, + [3390] = 3196, + [3391] = 3230, + [3392] = 3233, + [3393] = 3240, + [3394] = 3257, + [3395] = 3197, + [3396] = 3198, + [3397] = 3198, + [3398] = 3288, + [3399] = 3272, + [3400] = 3400, + [3401] = 3401, + [3402] = 3216, + [3403] = 3403, + [3404] = 3404, + [3405] = 3273, [3406] = 3406, - [3407] = 3195, + [3407] = 3232, [3408] = 3408, - [3409] = 3191, - [3410] = 3157, - [3411] = 3216, - [3412] = 3270, - [3413] = 3260, - [3414] = 3300, - [3415] = 3160, - [3416] = 3219, - [3417] = 3158, - [3418] = 3193, - [3419] = 3178, - [3420] = 3420, - [3421] = 3395, - [3422] = 3185, - [3423] = 3393, - [3424] = 3424, - [3425] = 3334, - [3426] = 3214, - [3427] = 3336, + [3409] = 3199, + [3410] = 3244, + [3411] = 3411, + [3412] = 3199, + [3413] = 3201, + [3414] = 3414, + [3415] = 3415, + [3416] = 3202, + [3417] = 3417, + [3418] = 3418, + [3419] = 3265, + [3420] = 3338, + [3421] = 3266, + [3422] = 1124, + [3423] = 1125, + [3424] = 3212, + [3425] = 3425, + [3426] = 3360, + [3427] = 3256, [3428] = 3428, - [3429] = 3164, - [3430] = 3389, - [3431] = 3167, - [3432] = 3264, - [3433] = 3240, - [3434] = 1456, - [3435] = 3216, - [3436] = 3182, - [3437] = 3180, - [3438] = 3172, - [3439] = 3217, - [3440] = 3408, - [3441] = 3260, - [3442] = 3182, - [3443] = 3260, - [3444] = 3182, - [3445] = 3158, - [3446] = 3446, - [3447] = 3428, - [3448] = 3270, - [3449] = 3371, - [3450] = 3180, + [3429] = 3429, + [3430] = 3414, + [3431] = 3291, + [3432] = 3381, + [3433] = 3208, + [3434] = 3434, + [3435] = 3338, + [3436] = 3212, + [3437] = 3210, + [3438] = 3223, + [3439] = 3338, + [3440] = 3212, + [3441] = 3298, + [3442] = 3442, + [3443] = 3188, + [3444] = 3221, + [3445] = 3259, + [3446] = 3425, + [3447] = 3228, + [3448] = 3202, + [3449] = 3404, + [3450] = 3369, [3451] = 3451, - [3452] = 3408, - [3453] = 3446, - [3454] = 3424, - [3455] = 3190, - [3456] = 3197, - [3457] = 3313, - [3458] = 3458, - [3459] = 3459, + [3452] = 3256, + [3453] = 3208, + [3454] = 3242, + [3455] = 3192, + [3456] = 3451, + [3457] = 3457, + [3458] = 3215, + [3459] = 3352, [3460] = 3460, - [3461] = 3461, - [3462] = 3462, - [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 3466, - [3467] = 3467, - [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 3471, - [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 3476, - [3477] = 3477, - [3478] = 3478, - [3479] = 3479, - [3480] = 3480, - [3481] = 3481, - [3482] = 3482, - [3483] = 3483, - [3484] = 3484, - [3485] = 3485, - [3486] = 3486, - [3487] = 3487, - [3488] = 3488, - [3489] = 3488, - [3490] = 3490, - [3491] = 3491, - [3492] = 3492, - [3493] = 3493, - [3494] = 3494, + [3461] = 3199, + [3462] = 3364, + [3463] = 3270, + [3464] = 3415, + [3465] = 3298, + [3466] = 3307, + [3467] = 3238, + [3468] = 3206, + [3469] = 3332, + [3470] = 3368, + [3471] = 3278, + [3472] = 3365, + [3473] = 3188, + [3474] = 3228, + [3475] = 3206, + [3476] = 3228, + [3477] = 3206, + [3478] = 3344, + [3479] = 3277, + [3480] = 3377, + [3481] = 3292, + [3482] = 3308, + [3483] = 3225, + [3484] = 3242, + [3485] = 3210, + [3486] = 3259, + [3487] = 3338, + [3488] = 1471, + [3489] = 3248, + [3490] = 3277, + [3491] = 3224, + [3492] = 3216, + [3493] = 3246, + [3494] = 3403, [3495] = 3495, [3496] = 3496, [3497] = 3497, [3498] = 3498, - [3499] = 3469, + [3499] = 3499, [3500] = 3500, [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 3471, + [3504] = 3504, [3505] = 3505, [3506] = 3506, [3507] = 3507, [3508] = 3508, - [3509] = 3509, + [3509] = 3506, [3510] = 3510, [3511] = 3511, - [3512] = 3492, + [3512] = 3507, [3513] = 3513, [3514] = 3514, [3515] = 3515, @@ -7506,271 +7515,307 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 178, - [3521] = 3490, - [3522] = 3522, - [3523] = 3500, + [3520] = 3520, + [3521] = 3521, + [3522] = 3496, + [3523] = 3523, [3524] = 3524, [3525] = 3525, [3526] = 3526, - [3527] = 3459, - [3528] = 3459, + [3527] = 3527, + [3528] = 3528, [3529] = 3529, - [3530] = 3530, - [3531] = 3503, - [3532] = 3532, + [3530] = 3523, + [3531] = 3531, + [3532] = 3499, [3533] = 3533, [3534] = 3534, [3535] = 3535, - [3536] = 3500, - [3537] = 3488, + [3536] = 3536, + [3537] = 3528, [3538] = 3538, [3539] = 3539, [3540] = 3540, - [3541] = 3541, - [3542] = 3478, + [3541] = 3511, + [3542] = 3498, [3543] = 3543, [3544] = 3544, [3545] = 3545, [3546] = 3546, - [3547] = 3505, - [3548] = 3473, - [3549] = 3488, + [3547] = 3547, + [3548] = 3548, + [3549] = 3549, [3550] = 3550, - [3551] = 3551, + [3551] = 3516, [3552] = 3552, [3553] = 3553, - [3554] = 3492, - [3555] = 3555, + [3554] = 3554, + [3555] = 3531, [3556] = 3556, [3557] = 3557, - [3558] = 3492, - [3559] = 3559, - [3560] = 3468, - [3561] = 3561, - [3562] = 3562, - [3563] = 3476, + [3558] = 3558, + [3559] = 3502, + [3560] = 3560, + [3561] = 3517, + [3562] = 3526, + [3563] = 3563, [3564] = 3564, - [3565] = 3562, - [3566] = 3566, - [3567] = 3463, - [3568] = 3568, + [3565] = 3565, + [3566] = 3502, + [3567] = 3564, + [3568] = 3533, [3569] = 3569, [3570] = 3570, - [3571] = 3571, + [3571] = 3520, [3572] = 3572, - [3573] = 3515, - [3574] = 3574, - [3575] = 3488, + [3573] = 3573, + [3574] = 3544, + [3575] = 3575, [3576] = 3576, - [3577] = 3487, + [3577] = 3577, [3578] = 3578, - [3579] = 3484, - [3580] = 3469, + [3579] = 3579, + [3580] = 3580, [3581] = 3581, - [3582] = 3582, - [3583] = 3583, + [3582] = 3496, + [3583] = 3540, [3584] = 3584, - [3585] = 3543, - [3586] = 3586, - [3587] = 3587, - [3588] = 3477, - [3589] = 3460, - [3590] = 3461, - [3591] = 3507, - [3592] = 3503, - [3593] = 3583, + [3585] = 3585, + [3586] = 3539, + [3587] = 3517, + [3588] = 3588, + [3589] = 3589, + [3590] = 3590, + [3591] = 3591, + [3592] = 3592, + [3593] = 3593, [3594] = 3594, [3595] = 3595, - [3596] = 3491, - [3597] = 3493, - [3598] = 3576, - [3599] = 3486, - [3600] = 3472, + [3596] = 3519, + [3597] = 3597, + [3598] = 3538, + [3599] = 3554, + [3600] = 3528, [3601] = 3601, [3602] = 3602, [3603] = 3603, - [3604] = 3557, + [3604] = 3498, [3605] = 3605, - [3606] = 3545, + [3606] = 3506, [3607] = 3607, [3608] = 3608, - [3609] = 3510, + [3609] = 3609, [3610] = 3610, - [3611] = 3476, - [3612] = 3477, - [3613] = 3478, + [3611] = 3536, + [3612] = 3502, + [3613] = 3613, [3614] = 3614, - [3615] = 3480, + [3615] = 3594, [3616] = 3616, - [3617] = 3578, - [3618] = 3607, - [3619] = 3468, + [3617] = 3540, + [3618] = 3546, + [3619] = 3619, [3620] = 3620, [3621] = 3621, - [3622] = 3519, - [3623] = 3583, - [3624] = 3543, - [3625] = 3610, - [3626] = 3533, - [3627] = 3627, - [3628] = 3461, + [3622] = 3577, + [3623] = 3623, + [3624] = 3579, + [3625] = 3510, + [3626] = 3626, + [3627] = 3525, + [3628] = 3540, [3629] = 3629, - [3630] = 3518, - [3631] = 3594, - [3632] = 3516, - [3633] = 3553, - [3634] = 3557, + [3630] = 3630, + [3631] = 3631, + [3632] = 3632, + [3633] = 3502, + [3634] = 3634, [3635] = 3635, [3636] = 3636, - [3637] = 3583, - [3638] = 3638, - [3639] = 3477, - [3640] = 3480, + [3637] = 3495, + [3638] = 3544, + [3639] = 3558, + [3640] = 3563, [3641] = 3641, - [3642] = 3642, - [3643] = 3467, - [3644] = 3517, - [3645] = 3543, - [3646] = 3594, - [3647] = 3492, - [3648] = 3557, - [3649] = 3649, - [3650] = 3650, - [3651] = 3480, - [3652] = 3543, - [3653] = 3594, - [3654] = 3557, - [3655] = 3543, - [3656] = 3480, - [3657] = 3594, - [3658] = 3557, - [3659] = 3480, - [3660] = 3594, - [3661] = 3594, - [3662] = 3594, - [3663] = 3594, - [3664] = 3594, - [3665] = 3530, - [3666] = 3638, - [3667] = 3541, + [3642] = 3518, + [3643] = 3643, + [3644] = 3593, + [3645] = 3645, + [3646] = 3646, + [3647] = 3553, + [3648] = 3511, + [3649] = 3507, + [3650] = 3513, + [3651] = 3651, + [3652] = 3516, + [3653] = 3614, + [3654] = 3643, + [3655] = 3540, + [3656] = 3656, + [3657] = 3511, + [3658] = 3605, + [3659] = 3580, + [3660] = 3577, + [3661] = 3646, + [3662] = 177, + [3663] = 3663, + [3664] = 3525, + [3665] = 3665, + [3666] = 3569, + [3667] = 3631, [3668] = 3668, - [3669] = 3650, + [3669] = 3521, [3670] = 3641, - [3671] = 3498, - [3672] = 3616, - [3673] = 3629, - [3674] = 3503, - [3675] = 3497, - [3676] = 3546, - [3677] = 3532, - [3678] = 3574, + [3671] = 3503, + [3672] = 3581, + [3673] = 3546, + [3674] = 3623, + [3675] = 3507, + [3676] = 3516, + [3677] = 3677, + [3678] = 3601, [3679] = 3679, - [3680] = 3621, - [3681] = 3501, - [3682] = 3682, - [3683] = 3529, - [3684] = 3525, - [3685] = 3679, - [3686] = 3686, - [3687] = 3687, - [3688] = 3688, - [3689] = 3576, - [3690] = 3488, - [3691] = 3559, - [3692] = 3460, - [3693] = 3693, - [3694] = 181, - [3695] = 3461, - [3696] = 3473, - [3697] = 3697, - [3698] = 3698, - [3699] = 3603, - [3700] = 3465, + [3680] = 3680, + [3681] = 3577, + [3682] = 3631, + [3683] = 3683, + [3684] = 3641, + [3685] = 3577, + [3686] = 3540, + [3687] = 3516, + [3688] = 3577, + [3689] = 3631, + [3690] = 3641, + [3691] = 3578, + [3692] = 3516, + [3693] = 3631, + [3694] = 3641, + [3695] = 3516, + [3696] = 3631, + [3697] = 3631, + [3698] = 3631, + [3699] = 3631, + [3700] = 3631, [3701] = 3701, - [3702] = 3682, - [3703] = 3701, - [3704] = 3704, - [3705] = 3705, - [3706] = 3706, - [3707] = 3480, - [3708] = 3687, - [3709] = 3492, - [3710] = 3514, - [3711] = 3556, - [3712] = 3594, - [3713] = 3608, - [3714] = 3476, - [3715] = 3715, - [3716] = 3649, - [3717] = 3704, - [3718] = 3526, - [3719] = 3719, + [3702] = 3702, + [3703] = 3703, + [3704] = 3609, + [3705] = 3620, + [3706] = 3677, + [3707] = 3602, + [3708] = 3597, + [3709] = 3709, + [3710] = 182, + [3711] = 3630, + [3712] = 3702, + [3713] = 3665, + [3714] = 3645, + [3715] = 3613, + [3716] = 3629, + [3717] = 3717, + [3718] = 3718, + [3719] = 3663, [3720] = 3720, - [3721] = 3495, - [3722] = 3584, - [3723] = 3494, + [3721] = 3721, + [3722] = 3722, + [3723] = 3534, [3724] = 3724, - [3725] = 3472, - [3726] = 3636, - [3727] = 3511, - [3728] = 3505, - [3729] = 3650, - [3730] = 3641, - [3731] = 3546, - [3732] = 3532, - [3733] = 3602, - [3734] = 3473, - [3735] = 3650, - [3736] = 3532, - [3737] = 3459, - [3738] = 3557, - [3739] = 3532, - [3740] = 3532, - [3741] = 3532, + [3725] = 3709, + [3726] = 3726, + [3727] = 3727, + [3728] = 3626, + [3729] = 3500, + [3730] = 3643, + [3731] = 3525, + [3732] = 3732, + [3733] = 3679, + [3734] = 3632, + [3735] = 3735, + [3736] = 3736, + [3737] = 3545, + [3738] = 3738, + [3739] = 3552, + [3740] = 3718, + [3741] = 3641, [3742] = 3742, - [3743] = 3642, - [3744] = 3744, - [3745] = 3571, - [3746] = 3496, - [3747] = 3572, + [3743] = 3701, + [3744] = 3643, + [3745] = 3745, + [3746] = 3535, + [3747] = 3527, [3748] = 3748, - [3749] = 3749, - [3750] = 3506, - [3751] = 3515, - [3752] = 3724, - [3753] = 3544, - [3754] = 3485, - [3755] = 3601, - [3756] = 3698, - [3757] = 3594, - [3758] = 3614, + [3749] = 3631, + [3750] = 3544, + [3751] = 3751, + [3752] = 3752, + [3753] = 3572, + [3754] = 3717, + [3755] = 3508, + [3756] = 3721, + [3757] = 3635, + [3758] = 3502, [3759] = 3759, - [3760] = 3482, - [3761] = 3587, + [3760] = 3626, + [3761] = 3592, [3762] = 3762, - [3763] = 3742, - [3764] = 3620, - [3765] = 3607, - [3766] = 3602, - [3767] = 3706, - [3768] = 3686, - [3769] = 3475, - [3770] = 3550, - [3771] = 3595, - [3772] = 3561, - [3773] = 3534, - [3774] = 3602, - [3775] = 3586, - [3776] = 3478, - [3777] = 3469, - [3778] = 3778, - [3779] = 3779, + [3763] = 3656, + [3764] = 3495, + [3765] = 3620, + [3766] = 3677, + [3767] = 3630, + [3768] = 3702, + [3769] = 3506, + [3770] = 3558, + [3771] = 3620, + [3772] = 3702, + [3773] = 3498, + [3774] = 3732, + [3775] = 3702, + [3776] = 3702, + [3777] = 3702, + [3778] = 3641, + [3779] = 3524, [3780] = 3780, - [3781] = 3781, + [3781] = 3726, [3782] = 3782, - [3783] = 3783, + [3783] = 3631, [3784] = 3784, + [3785] = 3547, + [3786] = 3724, + [3787] = 3787, + [3788] = 3736, + [3789] = 3610, + [3790] = 3556, + [3791] = 3501, + [3792] = 3578, + [3793] = 3513, + [3794] = 3794, + [3795] = 3795, + [3796] = 3520, + [3797] = 3550, + [3798] = 3578, + [3799] = 3621, + [3800] = 3593, + [3801] = 3549, + [3802] = 3515, + [3803] = 3565, + [3804] = 3762, + [3805] = 3742, + [3806] = 3505, + [3807] = 3608, + [3808] = 3616, + [3809] = 3529, + [3810] = 3558, + [3811] = 3811, + [3812] = 3513, + [3813] = 3585, + [3814] = 3814, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, }; const TSCharacterRange sym_identifier_character_set_1[] = { @@ -10430,15 +10475,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 7, .external_lex_state = 2}, - [44] = {.lex_state = 7, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 7, .external_lex_state = 2}, - [46] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, + [50] = {.lex_state = 7, .external_lex_state = 2}, [51] = {.lex_state = 7, .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}, @@ -10464,50 +10509,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [75] = {.lex_state = 4, .external_lex_state = 2}, [76] = {.lex_state = 4, .external_lex_state = 2}, [77] = {.lex_state = 4, .external_lex_state = 2}, - [78] = {.lex_state = 6, .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}, [81] = {.lex_state = 4, .external_lex_state = 2}, [82] = {.lex_state = 4, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, + [83] = {.lex_state = 6, .external_lex_state = 2}, [84] = {.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}, + [85] = {.lex_state = 6, .external_lex_state = 2}, + [86] = {.lex_state = 6, .external_lex_state = 2}, + [87] = {.lex_state = 6, .external_lex_state = 2}, [88] = {.lex_state = 4, .external_lex_state = 2}, [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 6, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 2}, [91] = {.lex_state = 6, .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}, + [94] = {.lex_state = 4, .external_lex_state = 2}, [95] = {.lex_state = 6, .external_lex_state = 2}, [96] = {.lex_state = 6, .external_lex_state = 2}, [97] = {.lex_state = 6, .external_lex_state = 2}, - [98] = {.lex_state = 6, .external_lex_state = 2}, - [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 = 6, .external_lex_state = 2}, - [103] = {.lex_state = 6, .external_lex_state = 2}, - [104] = {.lex_state = 6, .external_lex_state = 2}, + [98] = {.lex_state = 4, .external_lex_state = 2}, + [99] = {.lex_state = 4, .external_lex_state = 2}, + [100] = {.lex_state = 4, .external_lex_state = 2}, + [101] = {.lex_state = 4, .external_lex_state = 2}, + [102] = {.lex_state = 4, .external_lex_state = 2}, + [103] = {.lex_state = 4, .external_lex_state = 2}, + [104] = {.lex_state = 4, .external_lex_state = 2}, [105] = {.lex_state = 4, .external_lex_state = 2}, - [106] = {.lex_state = 6, .external_lex_state = 2}, + [106] = {.lex_state = 4, .external_lex_state = 2}, [107] = {.lex_state = 6, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 4, .external_lex_state = 2}, + [108] = {.lex_state = 6, .external_lex_state = 2}, + [109] = {.lex_state = 6, .external_lex_state = 2}, [110] = {.lex_state = 4, .external_lex_state = 2}, [111] = {.lex_state = 6, .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 = 4, .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 = 4, .external_lex_state = 2}, - [121] = {.lex_state = 4, .external_lex_state = 2}, + [119] = {.lex_state = 6, .external_lex_state = 2}, + [120] = {.lex_state = 6, .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}, @@ -10515,7 +10560,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 6, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 2}, [128] = {.lex_state = 6, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, + [129] = {.lex_state = 6, .external_lex_state = 2}, [130] = {.lex_state = 6, .external_lex_state = 2}, [131] = {.lex_state = 6, .external_lex_state = 2}, [132] = {.lex_state = 6, .external_lex_state = 2}, @@ -10523,54 +10568,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 13, .external_lex_state = 2}, [135] = {.lex_state = 13, .external_lex_state = 2}, [136] = {.lex_state = 4, .external_lex_state = 2}, - [137] = {.lex_state = 4, .external_lex_state = 2}, + [137] = {.lex_state = 13, .external_lex_state = 2}, [138] = {.lex_state = 13, .external_lex_state = 2}, [139] = {.lex_state = 13, .external_lex_state = 2}, [140] = {.lex_state = 13, .external_lex_state = 2}, - [141] = {.lex_state = 13, .external_lex_state = 2}, + [141] = {.lex_state = 4, .external_lex_state = 2}, [142] = {.lex_state = 13, .external_lex_state = 2}, - [143] = {.lex_state = 4, .external_lex_state = 2}, - [144] = {.lex_state = 13, .external_lex_state = 2}, + [143] = {.lex_state = 13, .external_lex_state = 2}, + [144] = {.lex_state = 4, .external_lex_state = 2}, [145] = {.lex_state = 13, .external_lex_state = 2}, - [146] = {.lex_state = 4, .external_lex_state = 2}, - [147] = {.lex_state = 4, .external_lex_state = 2}, + [146] = {.lex_state = 13, .external_lex_state = 2}, + [147] = {.lex_state = 13, .external_lex_state = 2}, [148] = {.lex_state = 4, .external_lex_state = 2}, [149] = {.lex_state = 4, .external_lex_state = 2}, [150] = {.lex_state = 4, .external_lex_state = 2}, [151] = {.lex_state = 4, .external_lex_state = 2}, [152] = {.lex_state = 4, .external_lex_state = 2}, - [153] = {.lex_state = 13, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, + [153] = {.lex_state = 4, .external_lex_state = 2}, + [154] = {.lex_state = 13, .external_lex_state = 2}, [155] = {.lex_state = 4, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 2}, - [157] = {.lex_state = 13, .external_lex_state = 2}, - [158] = {.lex_state = 13, .external_lex_state = 2}, + [156] = {.lex_state = 13, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 2}, + [158] = {.lex_state = 4, .external_lex_state = 2}, [159] = {.lex_state = 4, .external_lex_state = 2}, - [160] = {.lex_state = 13, .external_lex_state = 2}, + [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 = 4, .external_lex_state = 2}, - [164] = {.lex_state = 13, .external_lex_state = 2}, - [165] = {.lex_state = 4, .external_lex_state = 2}, + [162] = {.lex_state = 4, .external_lex_state = 2}, + [163] = {.lex_state = 6, .external_lex_state = 2}, + [164] = {.lex_state = 6, .external_lex_state = 2}, + [165] = {.lex_state = 13, .external_lex_state = 2}, [166] = {.lex_state = 13, .external_lex_state = 2}, [167] = {.lex_state = 4, .external_lex_state = 2}, [168] = {.lex_state = 13, .external_lex_state = 2}, - [169] = {.lex_state = 4, .external_lex_state = 2}, - [170] = {.lex_state = 4, .external_lex_state = 2}, - [171] = {.lex_state = 13, .external_lex_state = 2}, - [172] = {.lex_state = 6, .external_lex_state = 2}, - [173] = {.lex_state = 13, .external_lex_state = 2}, - [174] = {.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 = 4, .external_lex_state = 2}, + [172] = {.lex_state = 13, .external_lex_state = 2}, + [173] = {.lex_state = 4, .external_lex_state = 2}, + [174] = {.lex_state = 4, .external_lex_state = 2}, [175] = {.lex_state = 13, .external_lex_state = 2}, [176] = {.lex_state = 13, .external_lex_state = 2}, [177] = {.lex_state = 4, .external_lex_state = 2}, - [178] = {.lex_state = 4, .external_lex_state = 2}, + [178] = {.lex_state = 13, .external_lex_state = 2}, [179] = {.lex_state = 13, .external_lex_state = 2}, - [180] = {.lex_state = 13, .external_lex_state = 2}, - [181] = {.lex_state = 4, .external_lex_state = 2}, + [180] = {.lex_state = 4, .external_lex_state = 2}, + [181] = {.lex_state = 13, .external_lex_state = 2}, [182] = {.lex_state = 4, .external_lex_state = 2}, [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 6, .external_lex_state = 2}, + [184] = {.lex_state = 4, .external_lex_state = 2}, [185] = {.lex_state = 13, .external_lex_state = 2}, [186] = {.lex_state = 13, .external_lex_state = 2}, [187] = {.lex_state = 13, .external_lex_state = 2}, @@ -10584,12 +10629,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 13, .external_lex_state = 2}, [196] = {.lex_state = 13, .external_lex_state = 2}, [197] = {.lex_state = 4, .external_lex_state = 2}, - [198] = {.lex_state = 6, .external_lex_state = 2}, + [198] = {.lex_state = 13, .external_lex_state = 2}, [199] = {.lex_state = 13, .external_lex_state = 2}, - [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 13, .external_lex_state = 2}, + [200] = {.lex_state = 13, .external_lex_state = 2}, + [201] = {.lex_state = 6, .external_lex_state = 2}, [202] = {.lex_state = 6, .external_lex_state = 2}, - [203] = {.lex_state = 13, .external_lex_state = 2}, + [203] = {.lex_state = 6, .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}, @@ -10601,58 +10646,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 13, .external_lex_state = 2}, [213] = {.lex_state = 13, .external_lex_state = 2}, [214] = {.lex_state = 13, .external_lex_state = 2}, - [215] = {.lex_state = 13, .external_lex_state = 2}, + [215] = {.lex_state = 15, .external_lex_state = 2}, [216] = {.lex_state = 15, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, + [217] = {.lex_state = 15, .external_lex_state = 2}, [218] = {.lex_state = 13, .external_lex_state = 2}, - [219] = {.lex_state = 13, .external_lex_state = 2}, - [220] = {.lex_state = 13, .external_lex_state = 2}, + [219] = {.lex_state = 15, .external_lex_state = 2}, + [220] = {.lex_state = 15, .external_lex_state = 2}, [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 13, .external_lex_state = 2}, + [222] = {.lex_state = 15, .external_lex_state = 2}, [223] = {.lex_state = 15, .external_lex_state = 2}, - [224] = {.lex_state = 13, .external_lex_state = 2}, + [224] = {.lex_state = 15, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 12, .external_lex_state = 2}, - [227] = {.lex_state = 12, .external_lex_state = 2}, + [226] = {.lex_state = 15, .external_lex_state = 2}, + [227] = {.lex_state = 15, .external_lex_state = 2}, [228] = {.lex_state = 15, .external_lex_state = 2}, [229] = {.lex_state = 15, .external_lex_state = 2}, [230] = {.lex_state = 15, .external_lex_state = 2}, [231] = {.lex_state = 15, .external_lex_state = 2}, - [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, - [234] = {.lex_state = 12, .external_lex_state = 2}, - [235] = {.lex_state = 15, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 15, .external_lex_state = 2}, - [238] = {.lex_state = 15, .external_lex_state = 2}, - [239] = {.lex_state = 13, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 15, .external_lex_state = 2}, + [234] = {.lex_state = 13, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, + [236] = {.lex_state = 12, .external_lex_state = 2}, + [237] = {.lex_state = 13, .external_lex_state = 2}, + [238] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, - [243] = {.lex_state = 15, .external_lex_state = 2}, + [242] = {.lex_state = 12, .external_lex_state = 2}, + [243] = {.lex_state = 13, .external_lex_state = 2}, [244] = {.lex_state = 12, .external_lex_state = 2}, - [245] = {.lex_state = 15, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, [246] = {.lex_state = 13, .external_lex_state = 2}, [247] = {.lex_state = 12, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, + [248] = {.lex_state = 13, .external_lex_state = 2}, [249] = {.lex_state = 13, .external_lex_state = 2}, - [250] = {.lex_state = 15, .external_lex_state = 2}, + [250] = {.lex_state = 12, .external_lex_state = 2}, [251] = {.lex_state = 12, .external_lex_state = 2}, [252] = {.lex_state = 15, .external_lex_state = 2}, - [253] = {.lex_state = 12, .external_lex_state = 2}, - [254] = {.lex_state = 12, .external_lex_state = 2}, - [255] = {.lex_state = 12, .external_lex_state = 2}, - [256] = {.lex_state = 12, .external_lex_state = 2}, - [257] = {.lex_state = 12, .external_lex_state = 2}, + [253] = {.lex_state = 13, .external_lex_state = 2}, + [254] = {.lex_state = 13, .external_lex_state = 2}, + [255] = {.lex_state = 13, .external_lex_state = 2}, + [256] = {.lex_state = 15, .external_lex_state = 2}, + [257] = {.lex_state = 15, .external_lex_state = 2}, [258] = {.lex_state = 12, .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 = 13, .external_lex_state = 2}, - [263] = {.lex_state = 13, .external_lex_state = 2}, - [264] = {.lex_state = 13, .external_lex_state = 2}, - [265] = {.lex_state = 13, .external_lex_state = 2}, - [266] = {.lex_state = 13, .external_lex_state = 2}, + [262] = {.lex_state = 12, .external_lex_state = 2}, + [263] = {.lex_state = 12, .external_lex_state = 2}, + [264] = {.lex_state = 12, .external_lex_state = 2}, + [265] = {.lex_state = 12, .external_lex_state = 2}, + [266] = {.lex_state = 12, .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}, @@ -10678,7 +10723,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [289] = {.lex_state = 13, .external_lex_state = 2}, [290] = {.lex_state = 13, .external_lex_state = 2}, [291] = {.lex_state = 13, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, + [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, [294] = {.lex_state = 13, .external_lex_state = 2}, [295] = {.lex_state = 13, .external_lex_state = 2}, @@ -10701,11 +10746,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, - [317] = {.lex_state = 13, .external_lex_state = 2}, + [317] = {.lex_state = 14, .external_lex_state = 2}, [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 71, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, [320] = {.lex_state = 13, .external_lex_state = 2}, [321] = {.lex_state = 13, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, @@ -10725,7 +10770,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [336] = {.lex_state = 13, .external_lex_state = 2}, [337] = {.lex_state = 13, .external_lex_state = 2}, [338] = {.lex_state = 13, .external_lex_state = 2}, - [339] = {.lex_state = 13, .external_lex_state = 2}, + [339] = {.lex_state = 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}, @@ -10740,13 +10785,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [351] = {.lex_state = 13, .external_lex_state = 2}, [352] = {.lex_state = 13, .external_lex_state = 2}, [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 14, .external_lex_state = 2}, + [354] = {.lex_state = 13, .external_lex_state = 2}, [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 14, .external_lex_state = 2}, + [356] = {.lex_state = 12, .external_lex_state = 2}, [357] = {.lex_state = 13, .external_lex_state = 2}, [358] = {.lex_state = 13, .external_lex_state = 2}, [359] = {.lex_state = 13, .external_lex_state = 2}, - [360] = {.lex_state = 14, .external_lex_state = 2}, + [360] = {.lex_state = 13, .external_lex_state = 2}, [361] = {.lex_state = 13, .external_lex_state = 2}, [362] = {.lex_state = 13, .external_lex_state = 2}, [363] = {.lex_state = 13, .external_lex_state = 2}, @@ -10754,7 +10799,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [365] = {.lex_state = 13, .external_lex_state = 2}, [366] = {.lex_state = 13, .external_lex_state = 2}, [367] = {.lex_state = 13, .external_lex_state = 2}, - [368] = {.lex_state = 13, .external_lex_state = 2}, + [368] = {.lex_state = 71, .external_lex_state = 2}, [369] = {.lex_state = 13, .external_lex_state = 2}, [370] = {.lex_state = 13, .external_lex_state = 2}, [371] = {.lex_state = 13, .external_lex_state = 2}, @@ -10775,12 +10820,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 71, .external_lex_state = 2}, - [390] = {.lex_state = 71, .external_lex_state = 2}, - [391] = {.lex_state = 71, .external_lex_state = 2}, - [392] = {.lex_state = 71, .external_lex_state = 2}, - [393] = {.lex_state = 71, .external_lex_state = 2}, - [394] = {.lex_state = 12, .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}, + [394] = {.lex_state = 71, .external_lex_state = 2}, [395] = {.lex_state = 71, .external_lex_state = 2}, [396] = {.lex_state = 71, .external_lex_state = 2}, [397] = {.lex_state = 71, .external_lex_state = 2}, @@ -10793,7 +10838,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, - [407] = {.lex_state = 12, .external_lex_state = 2}, + [407] = {.lex_state = 71, .external_lex_state = 2}, [408] = {.lex_state = 71, .external_lex_state = 2}, [409] = {.lex_state = 71, .external_lex_state = 2}, [410] = {.lex_state = 71, .external_lex_state = 2}, @@ -10801,35 +10846,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [415] = {.lex_state = 12, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, - [418] = {.lex_state = 71, .external_lex_state = 2}, - [419] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 71, .external_lex_state = 2}, + [418] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 71, .external_lex_state = 2}, [420] = {.lex_state = 71, .external_lex_state = 2}, [421] = {.lex_state = 71, .external_lex_state = 2}, - [422] = {.lex_state = 71, .external_lex_state = 2}, - [423] = {.lex_state = 71, .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}, + [422] = {.lex_state = 12, .external_lex_state = 2}, + [423] = {.lex_state = 12, .external_lex_state = 2}, + [424] = {.lex_state = 71, .external_lex_state = 2}, + [425] = {.lex_state = 71, .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}, [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 = 5, .external_lex_state = 2}, - [436] = {.lex_state = 7, .external_lex_state = 2}, - [437] = {.lex_state = 16, .external_lex_state = 2}, - [438] = {.lex_state = 16, .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}, + [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}, [444] = {.lex_state = 13, .external_lex_state = 2}, [445] = {.lex_state = 13, .external_lex_state = 2}, [446] = {.lex_state = 13, .external_lex_state = 2}, @@ -10842,25 +10887,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 14, .external_lex_state = 2}, - [457] = {.lex_state = 14, .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 = 14, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, - [464] = {.lex_state = 5, .external_lex_state = 2}, - [465] = {.lex_state = 5, .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 = 5, .external_lex_state = 2}, + [463] = {.lex_state = 14, .external_lex_state = 2}, + [464] = {.lex_state = 14, .external_lex_state = 2}, + [465] = {.lex_state = 14, .external_lex_state = 2}, [466] = {.lex_state = 14, .external_lex_state = 2}, - [467] = {.lex_state = 5, .external_lex_state = 2}, + [467] = {.lex_state = 14, .external_lex_state = 2}, [468] = {.lex_state = 14, .external_lex_state = 2}, - [469] = {.lex_state = 14, .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 = 14, .external_lex_state = 2}, + [472] = {.lex_state = 5, .external_lex_state = 2}, [473] = {.lex_state = 5, .external_lex_state = 2}, - [474] = {.lex_state = 5, .external_lex_state = 2}, + [474] = {.lex_state = 14, .external_lex_state = 2}, [475] = {.lex_state = 5, .external_lex_state = 2}, [476] = {.lex_state = 5, .external_lex_state = 2}, [477] = {.lex_state = 5, .external_lex_state = 2}, @@ -10874,21 +10919,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [485] = {.lex_state = 5, .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}, + [488] = {.lex_state = 14, .external_lex_state = 2}, [489] = {.lex_state = 5, .external_lex_state = 2}, - [490] = {.lex_state = 5, .external_lex_state = 2}, + [490] = {.lex_state = 14, .external_lex_state = 2}, [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 14, .external_lex_state = 2}, - [493] = {.lex_state = 14, .external_lex_state = 2}, - [494] = {.lex_state = 73, .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}, + [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 = 5, .external_lex_state = 2}, + [496] = {.lex_state = 14, .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}, [503] = {.lex_state = 73, .external_lex_state = 2}, [504] = {.lex_state = 73, .external_lex_state = 2}, [505] = {.lex_state = 73, .external_lex_state = 2}, @@ -10970,12 +11015,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 73, .external_lex_state = 2}, [582] = {.lex_state = 73, .external_lex_state = 2}, [583] = {.lex_state = 73, .external_lex_state = 2}, - [584] = {.lex_state = 23}, + [584] = {.lex_state = 73, .external_lex_state = 2}, [585] = {.lex_state = 73, .external_lex_state = 2}, [586] = {.lex_state = 73, .external_lex_state = 2}, [587] = {.lex_state = 73, .external_lex_state = 2}, [588] = {.lex_state = 73, .external_lex_state = 2}, - [589] = {.lex_state = 14, .external_lex_state = 2}, + [589] = {.lex_state = 73, .external_lex_state = 2}, [590] = {.lex_state = 73, .external_lex_state = 2}, [591] = {.lex_state = 73, .external_lex_state = 2}, [592] = {.lex_state = 73, .external_lex_state = 2}, @@ -10999,7 +11044,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [610] = {.lex_state = 73, .external_lex_state = 2}, [611] = {.lex_state = 73, .external_lex_state = 2}, [612] = {.lex_state = 73, .external_lex_state = 2}, - [613] = {.lex_state = 73, .external_lex_state = 2}, + [613] = {.lex_state = 14, .external_lex_state = 2}, [614] = {.lex_state = 73, .external_lex_state = 2}, [615] = {.lex_state = 73, .external_lex_state = 2}, [616] = {.lex_state = 73, .external_lex_state = 2}, @@ -11013,7 +11058,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [624] = {.lex_state = 73, .external_lex_state = 2}, [625] = {.lex_state = 73, .external_lex_state = 2}, [626] = {.lex_state = 73, .external_lex_state = 2}, - [627] = {.lex_state = 14, .external_lex_state = 2}, + [627] = {.lex_state = 73, .external_lex_state = 2}, [628] = {.lex_state = 73, .external_lex_state = 2}, [629] = {.lex_state = 73, .external_lex_state = 2}, [630] = {.lex_state = 73, .external_lex_state = 2}, @@ -11023,7 +11068,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [634] = {.lex_state = 73, .external_lex_state = 2}, [635] = {.lex_state = 73, .external_lex_state = 2}, [636] = {.lex_state = 73, .external_lex_state = 2}, - [637] = {.lex_state = 73, .external_lex_state = 2}, + [637] = {.lex_state = 23}, [638] = {.lex_state = 73, .external_lex_state = 2}, [639] = {.lex_state = 73, .external_lex_state = 2}, [640] = {.lex_state = 73, .external_lex_state = 2}, @@ -11040,7 +11085,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [651] = {.lex_state = 73, .external_lex_state = 2}, [652] = {.lex_state = 73, .external_lex_state = 2}, [653] = {.lex_state = 73, .external_lex_state = 2}, - [654] = {.lex_state = 73, .external_lex_state = 2}, + [654] = {.lex_state = 23}, [655] = {.lex_state = 73, .external_lex_state = 2}, [656] = {.lex_state = 73, .external_lex_state = 2}, [657] = {.lex_state = 73, .external_lex_state = 2}, @@ -11050,7 +11095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [661] = {.lex_state = 73, .external_lex_state = 2}, [662] = {.lex_state = 73, .external_lex_state = 2}, [663] = {.lex_state = 73, .external_lex_state = 2}, - [664] = {.lex_state = 23}, + [664] = {.lex_state = 73, .external_lex_state = 2}, [665] = {.lex_state = 73, .external_lex_state = 2}, [666] = {.lex_state = 73, .external_lex_state = 2}, [667] = {.lex_state = 73, .external_lex_state = 2}, @@ -11058,21 +11103,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 73, .external_lex_state = 2}, [670] = {.lex_state = 73, .external_lex_state = 2}, [671] = {.lex_state = 73, .external_lex_state = 2}, - [672] = {.lex_state = 23}, + [672] = {.lex_state = 73, .external_lex_state = 2}, [673] = {.lex_state = 73, .external_lex_state = 2}, [674] = {.lex_state = 73, .external_lex_state = 2}, [675] = {.lex_state = 73, .external_lex_state = 2}, - [676] = {.lex_state = 23}, + [676] = {.lex_state = 73, .external_lex_state = 2}, [677] = {.lex_state = 73, .external_lex_state = 2}, [678] = {.lex_state = 73, .external_lex_state = 2}, - [679] = {.lex_state = 14, .external_lex_state = 2}, - [680] = {.lex_state = 14, .external_lex_state = 2}, + [679] = {.lex_state = 73, .external_lex_state = 2}, + [680] = {.lex_state = 73, .external_lex_state = 2}, [681] = {.lex_state = 73, .external_lex_state = 2}, [682] = {.lex_state = 73, .external_lex_state = 2}, [683] = {.lex_state = 73, .external_lex_state = 2}, [684] = {.lex_state = 73, .external_lex_state = 2}, [685] = {.lex_state = 73, .external_lex_state = 2}, - [686] = {.lex_state = 14, .external_lex_state = 2}, + [686] = {.lex_state = 23}, [687] = {.lex_state = 73, .external_lex_state = 2}, [688] = {.lex_state = 73, .external_lex_state = 2}, [689] = {.lex_state = 73, .external_lex_state = 2}, @@ -11080,7 +11125,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [691] = {.lex_state = 73, .external_lex_state = 2}, [692] = {.lex_state = 73, .external_lex_state = 2}, [693] = {.lex_state = 73, .external_lex_state = 2}, - [694] = {.lex_state = 73, .external_lex_state = 2}, + [694] = {.lex_state = 23}, [695] = {.lex_state = 73, .external_lex_state = 2}, [696] = {.lex_state = 73, .external_lex_state = 2}, [697] = {.lex_state = 73, .external_lex_state = 2}, @@ -11106,7 +11151,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [717] = {.lex_state = 73, .external_lex_state = 2}, [718] = {.lex_state = 73, .external_lex_state = 2}, [719] = {.lex_state = 73, .external_lex_state = 2}, - [720] = {.lex_state = 14, .external_lex_state = 2}, + [720] = {.lex_state = 73, .external_lex_state = 2}, [721] = {.lex_state = 73, .external_lex_state = 2}, [722] = {.lex_state = 73, .external_lex_state = 2}, [723] = {.lex_state = 73, .external_lex_state = 2}, @@ -11126,14 +11171,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [737] = {.lex_state = 73, .external_lex_state = 2}, [738] = {.lex_state = 73, .external_lex_state = 2}, [739] = {.lex_state = 73, .external_lex_state = 2}, - [740] = {.lex_state = 73, .external_lex_state = 2}, - [741] = {.lex_state = 73, .external_lex_state = 2}, + [740] = {.lex_state = 14, .external_lex_state = 2}, + [741] = {.lex_state = 23}, [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 = 73, .external_lex_state = 2}, - [747] = {.lex_state = 23}, + [747] = {.lex_state = 73, .external_lex_state = 2}, [748] = {.lex_state = 73, .external_lex_state = 2}, [749] = {.lex_state = 73, .external_lex_state = 2}, [750] = {.lex_state = 73, .external_lex_state = 2}, @@ -11151,7 +11196,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [762] = {.lex_state = 73, .external_lex_state = 2}, [763] = {.lex_state = 73, .external_lex_state = 2}, [764] = {.lex_state = 73, .external_lex_state = 2}, - [765] = {.lex_state = 73, .external_lex_state = 2}, + [765] = {.lex_state = 14, .external_lex_state = 2}, [766] = {.lex_state = 73, .external_lex_state = 2}, [767] = {.lex_state = 73, .external_lex_state = 2}, [768] = {.lex_state = 73, .external_lex_state = 2}, @@ -11168,29 +11213,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 17}, - [783] = {.lex_state = 17}, - [784] = {.lex_state = 14, .external_lex_state = 2}, - [785] = {.lex_state = 17}, - [786] = {.lex_state = 17}, - [787] = {.lex_state = 17}, + [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}, - [792] = {.lex_state = 14, .external_lex_state = 2}, - [793] = {.lex_state = 14, .external_lex_state = 2}, + [792] = {.lex_state = 17}, + [793] = {.lex_state = 17}, [794] = {.lex_state = 17}, - [795] = {.lex_state = 14, .external_lex_state = 2}, - [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 17}, + [795] = {.lex_state = 17}, + [796] = {.lex_state = 17}, + [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 = 14, .external_lex_state = 2}, - [802] = {.lex_state = 14, .external_lex_state = 2}, + [802] = {.lex_state = 17}, [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 12, .external_lex_state = 2}, + [804] = {.lex_state = 17}, [805] = {.lex_state = 14, .external_lex_state = 2}, [806] = {.lex_state = 14, .external_lex_state = 2}, [807] = {.lex_state = 14, .external_lex_state = 2}, @@ -11203,7 +11248,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [817] = {.lex_state = 12, .external_lex_state = 2}, [818] = {.lex_state = 14, .external_lex_state = 2}, [819] = {.lex_state = 14, .external_lex_state = 2}, [820] = {.lex_state = 14, .external_lex_state = 2}, @@ -11235,11 +11280,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 17}, - [850] = {.lex_state = 17}, - [851] = {.lex_state = 17}, - [852] = {.lex_state = 17}, - [853] = {.lex_state = 17}, + [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}, [854] = {.lex_state = 17}, [855] = {.lex_state = 17}, [856] = {.lex_state = 17}, @@ -11435,99 +11480,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1046] = {.lex_state = 17}, [1047] = {.lex_state = 17}, [1048] = {.lex_state = 17}, - [1049] = {.lex_state = 13, .external_lex_state = 2}, - [1050] = {.lex_state = 13, .external_lex_state = 2}, - [1051] = {.lex_state = 13, .external_lex_state = 2}, - [1052] = {.lex_state = 15, .external_lex_state = 2}, - [1053] = {.lex_state = 15, .external_lex_state = 2}, - [1054] = {.lex_state = 13, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 17}, + [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 = 13, .external_lex_state = 2}, [1057] = {.lex_state = 13, .external_lex_state = 2}, [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 9}, - [1061] = {.lex_state = 8}, - [1062] = {.lex_state = 8}, - [1063] = {.lex_state = 8}, - [1064] = {.lex_state = 14, .external_lex_state = 2}, - [1065] = {.lex_state = 23}, - [1066] = {.lex_state = 23}, - [1067] = {.lex_state = 23}, - [1068] = {.lex_state = 23}, - [1069] = {.lex_state = 23}, - [1070] = {.lex_state = 23}, + [1059] = {.lex_state = 15, .external_lex_state = 2}, + [1060] = {.lex_state = 15, .external_lex_state = 2}, + [1061] = {.lex_state = 13, .external_lex_state = 2}, + [1062] = {.lex_state = 12, .external_lex_state = 2}, + [1063] = {.lex_state = 17}, + [1064] = {.lex_state = 13, .external_lex_state = 2}, + [1065] = {.lex_state = 13, .external_lex_state = 2}, + [1066] = {.lex_state = 13, .external_lex_state = 2}, + [1067] = {.lex_state = 8}, + [1068] = {.lex_state = 8}, + [1069] = {.lex_state = 9}, + [1070] = {.lex_state = 8}, [1071] = {.lex_state = 23}, - [1072] = {.lex_state = 8}, + [1072] = {.lex_state = 14, .external_lex_state = 2}, [1073] = {.lex_state = 23}, [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 26}, - [1076] = {.lex_state = 17}, - [1077] = {.lex_state = 17}, - [1078] = {.lex_state = 8}, - [1079] = {.lex_state = 17}, - [1080] = {.lex_state = 8}, - [1081] = {.lex_state = 26}, + [1075] = {.lex_state = 23}, + [1076] = {.lex_state = 23}, + [1077] = {.lex_state = 23}, + [1078] = {.lex_state = 23}, + [1079] = {.lex_state = 23}, + [1080] = {.lex_state = 23}, + [1081] = {.lex_state = 8}, [1082] = {.lex_state = 8}, [1083] = {.lex_state = 26}, - [1084] = {.lex_state = 8}, + [1084] = {.lex_state = 17}, [1085] = {.lex_state = 8}, - [1086] = {.lex_state = 8}, + [1086] = {.lex_state = 26}, [1087] = {.lex_state = 8}, - [1088] = {.lex_state = 17}, + [1088] = {.lex_state = 8}, [1089] = {.lex_state = 26}, - [1090] = {.lex_state = 8}, - [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 9}, - [1093] = {.lex_state = 9}, - [1094] = {.lex_state = 9}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 14, .external_lex_state = 2}, - [1097] = {.lex_state = 9}, - [1098] = {.lex_state = 17}, - [1099] = {.lex_state = 17}, + [1090] = {.lex_state = 17}, + [1091] = {.lex_state = 8}, + [1092] = {.lex_state = 8}, + [1093] = {.lex_state = 26}, + [1094] = {.lex_state = 26}, + [1095] = {.lex_state = 17}, + [1096] = {.lex_state = 8}, + [1097] = {.lex_state = 17}, + [1098] = {.lex_state = 8}, + [1099] = {.lex_state = 9}, [1100] = {.lex_state = 9}, [1101] = {.lex_state = 9}, - [1102] = {.lex_state = 17}, - [1103] = {.lex_state = 17}, - [1104] = {.lex_state = 9}, - [1105] = {.lex_state = 9}, - [1106] = {.lex_state = 23}, - [1107] = {.lex_state = 9}, - [1108] = {.lex_state = 9}, + [1102] = {.lex_state = 9}, + [1103] = {.lex_state = 9}, + [1104] = {.lex_state = 14, .external_lex_state = 2}, + [1105] = {.lex_state = 17}, + [1106] = {.lex_state = 14, .external_lex_state = 2}, + [1107] = {.lex_state = 17}, + [1108] = {.lex_state = 17}, [1109] = {.lex_state = 9}, - [1110] = {.lex_state = 9}, - [1111] = {.lex_state = 14, .external_lex_state = 2}, - [1112] = {.lex_state = 21}, - [1113] = {.lex_state = 14, .external_lex_state = 2}, - [1114] = {.lex_state = 23}, - [1115] = {.lex_state = 17}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, + [1110] = {.lex_state = 17}, + [1111] = {.lex_state = 9}, + [1112] = {.lex_state = 9}, + [1113] = {.lex_state = 23}, + [1114] = {.lex_state = 9}, + [1115] = {.lex_state = 9}, + [1116] = {.lex_state = 9}, [1117] = {.lex_state = 9}, - [1118] = {.lex_state = 9}, - [1119] = {.lex_state = 9}, - [1120] = {.lex_state = 23}, + [1118] = {.lex_state = 14, .external_lex_state = 2}, + [1119] = {.lex_state = 21}, + [1120] = {.lex_state = 14, .external_lex_state = 2}, [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 9}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, + [1122] = {.lex_state = 17}, + [1123] = {.lex_state = 12, .external_lex_state = 2}, + [1124] = {.lex_state = 9}, [1125] = {.lex_state = 9}, [1126] = {.lex_state = 9}, - [1127] = {.lex_state = 21}, - [1128] = {.lex_state = 20}, - [1129] = {.lex_state = 9}, + [1127] = {.lex_state = 23}, + [1128] = {.lex_state = 23}, + [1129] = {.lex_state = 12, .external_lex_state = 2}, [1130] = {.lex_state = 9}, - [1131] = {.lex_state = 20}, - [1132] = {.lex_state = 20}, - [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 9}, - [1135] = {.lex_state = 23}, - [1136] = {.lex_state = 23}, - [1137] = {.lex_state = 23}, - [1138] = {.lex_state = 23}, - [1139] = {.lex_state = 23}, + [1131] = {.lex_state = 12, .external_lex_state = 2}, + [1132] = {.lex_state = 9}, + [1133] = {.lex_state = 9}, + [1134] = {.lex_state = 21}, + [1135] = {.lex_state = 20}, + [1136] = {.lex_state = 9}, + [1137] = {.lex_state = 9}, + [1138] = {.lex_state = 20}, + [1139] = {.lex_state = 20}, [1140] = {.lex_state = 23}, - [1141] = {.lex_state = 23}, + [1141] = {.lex_state = 9}, [1142] = {.lex_state = 23}, [1143] = {.lex_state = 23}, [1144] = {.lex_state = 23}, @@ -11537,18 +11582,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1148] = {.lex_state = 23}, [1149] = {.lex_state = 23}, [1150] = {.lex_state = 23}, - [1151] = {.lex_state = 8}, - [1152] = {.lex_state = 20}, - [1153] = {.lex_state = 20}, - [1154] = {.lex_state = 20}, - [1155] = {.lex_state = 20}, + [1151] = {.lex_state = 23}, + [1152] = {.lex_state = 23}, + [1153] = {.lex_state = 23}, + [1154] = {.lex_state = 23}, + [1155] = {.lex_state = 23}, [1156] = {.lex_state = 23}, [1157] = {.lex_state = 23}, - [1158] = {.lex_state = 23}, - [1159] = {.lex_state = 23}, - [1160] = {.lex_state = 23}, - [1161] = {.lex_state = 23}, - [1162] = {.lex_state = 23}, + [1158] = {.lex_state = 8}, + [1159] = {.lex_state = 20}, + [1160] = {.lex_state = 20}, + [1161] = {.lex_state = 20}, + [1162] = {.lex_state = 20}, [1163] = {.lex_state = 23}, [1164] = {.lex_state = 23}, [1165] = {.lex_state = 23}, @@ -11578,17 +11623,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1189] = {.lex_state = 23}, [1190] = {.lex_state = 23}, [1191] = {.lex_state = 23}, - [1192] = {.lex_state = 9}, - [1193] = {.lex_state = 20}, - [1194] = {.lex_state = 9}, - [1195] = {.lex_state = 20}, + [1192] = {.lex_state = 23}, + [1193] = {.lex_state = 23}, + [1194] = {.lex_state = 23}, + [1195] = {.lex_state = 23}, [1196] = {.lex_state = 23}, [1197] = {.lex_state = 23}, [1198] = {.lex_state = 23}, - [1199] = {.lex_state = 23}, - [1200] = {.lex_state = 23}, - [1201] = {.lex_state = 23}, - [1202] = {.lex_state = 23}, + [1199] = {.lex_state = 9}, + [1200] = {.lex_state = 20}, + [1201] = {.lex_state = 9}, + [1202] = {.lex_state = 20}, [1203] = {.lex_state = 23}, [1204] = {.lex_state = 23}, [1205] = {.lex_state = 23}, @@ -11632,15 +11677,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1243] = {.lex_state = 23}, [1244] = {.lex_state = 23}, [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 9}, - [1247] = {.lex_state = 20}, + [1246] = {.lex_state = 23}, + [1247] = {.lex_state = 23}, [1248] = {.lex_state = 23}, [1249] = {.lex_state = 23}, [1250] = {.lex_state = 23}, [1251] = {.lex_state = 23}, [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 23}, - [1254] = {.lex_state = 23}, + [1253] = {.lex_state = 9}, + [1254] = {.lex_state = 20}, [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, [1257] = {.lex_state = 23}, @@ -11662,14 +11707,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 23}, [1274] = {.lex_state = 23}, [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 9}, + [1276] = {.lex_state = 23}, [1277] = {.lex_state = 23}, [1278] = {.lex_state = 23}, [1279] = {.lex_state = 23}, [1280] = {.lex_state = 23}, [1281] = {.lex_state = 23}, [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 23}, + [1283] = {.lex_state = 9}, [1284] = {.lex_state = 23}, [1285] = {.lex_state = 23}, [1286] = {.lex_state = 23}, @@ -11685,15 +11730,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 9}, - [1300] = {.lex_state = 20}, + [1299] = {.lex_state = 23}, + [1300] = {.lex_state = 23}, [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, [1303] = {.lex_state = 23}, [1304] = {.lex_state = 23}, [1305] = {.lex_state = 23}, - [1306] = {.lex_state = 23}, - [1307] = {.lex_state = 23}, + [1306] = {.lex_state = 9}, + [1307] = {.lex_state = 20}, [1308] = {.lex_state = 23}, [1309] = {.lex_state = 23}, [1310] = {.lex_state = 23}, @@ -11738,15 +11783,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1349] = {.lex_state = 23}, [1350] = {.lex_state = 23}, [1351] = {.lex_state = 23}, - [1352] = {.lex_state = 9}, - [1353] = {.lex_state = 20}, + [1352] = {.lex_state = 23}, + [1353] = {.lex_state = 23}, [1354] = {.lex_state = 23}, [1355] = {.lex_state = 23}, [1356] = {.lex_state = 23}, [1357] = {.lex_state = 23}, [1358] = {.lex_state = 23}, - [1359] = {.lex_state = 23}, - [1360] = {.lex_state = 23}, + [1359] = {.lex_state = 9}, + [1360] = {.lex_state = 20}, [1361] = {.lex_state = 23}, [1362] = {.lex_state = 23}, [1363] = {.lex_state = 23}, @@ -11795,24 +11840,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1406] = {.lex_state = 23}, [1407] = {.lex_state = 23}, [1408] = {.lex_state = 23}, - [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 17}, - [1411] = {.lex_state = 14, .external_lex_state = 2}, - [1412] = {.lex_state = 14, .external_lex_state = 2}, - [1413] = {.lex_state = 14, .external_lex_state = 2}, + [1409] = {.lex_state = 23}, + [1410] = {.lex_state = 23}, + [1411] = {.lex_state = 23}, + [1412] = {.lex_state = 23}, + [1413] = {.lex_state = 23}, [1414] = {.lex_state = 23}, - [1415] = {.lex_state = 14, .external_lex_state = 2}, + [1415] = {.lex_state = 23}, [1416] = {.lex_state = 9}, - [1417] = {.lex_state = 9}, - [1418] = {.lex_state = 9}, - [1419] = {.lex_state = 23}, - [1420] = {.lex_state = 10}, - [1421] = {.lex_state = 9}, - [1422] = {.lex_state = 9}, + [1417] = {.lex_state = 17}, + [1418] = {.lex_state = 14, .external_lex_state = 2}, + [1419] = {.lex_state = 14, .external_lex_state = 2}, + [1420] = {.lex_state = 23}, + [1421] = {.lex_state = 14, .external_lex_state = 2}, + [1422] = {.lex_state = 14, .external_lex_state = 2}, [1423] = {.lex_state = 9}, [1424] = {.lex_state = 9}, [1425] = {.lex_state = 9}, - [1426] = {.lex_state = 9}, + [1426] = {.lex_state = 23}, [1427] = {.lex_state = 9}, [1428] = {.lex_state = 9}, [1429] = {.lex_state = 9}, @@ -11836,7 +11881,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1447] = {.lex_state = 9}, [1448] = {.lex_state = 9}, [1449] = {.lex_state = 9}, - [1450] = {.lex_state = 9}, + [1450] = {.lex_state = 17}, [1451] = {.lex_state = 9}, [1452] = {.lex_state = 9}, [1453] = {.lex_state = 9}, @@ -11868,7 +11913,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1479] = {.lex_state = 9}, [1480] = {.lex_state = 9}, [1481] = {.lex_state = 9}, - [1482] = {.lex_state = 17}, + [1482] = {.lex_state = 9}, [1483] = {.lex_state = 9}, [1484] = {.lex_state = 9}, [1485] = {.lex_state = 9}, @@ -11906,7 +11951,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1517] = {.lex_state = 9}, [1518] = {.lex_state = 9}, [1519] = {.lex_state = 9}, - [1520] = {.lex_state = 9}, + [1520] = {.lex_state = 10}, [1521] = {.lex_state = 9}, [1522] = {.lex_state = 9}, [1523] = {.lex_state = 9}, @@ -11926,236 +11971,236 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1537] = {.lex_state = 9}, [1538] = {.lex_state = 9}, [1539] = {.lex_state = 9}, - [1540] = {.lex_state = 17}, - [1541] = {.lex_state = 17}, + [1540] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, [1542] = {.lex_state = 9}, [1543] = {.lex_state = 9}, [1544] = {.lex_state = 9}, [1545] = {.lex_state = 9}, - [1546] = {.lex_state = 17}, - [1547] = {.lex_state = 17}, + [1546] = {.lex_state = 9}, + [1547] = {.lex_state = 9}, [1548] = {.lex_state = 9}, [1549] = {.lex_state = 9}, - [1550] = {.lex_state = 9}, + [1550] = {.lex_state = 17}, [1551] = {.lex_state = 9}, - [1552] = {.lex_state = 11}, - [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 11}, - [1555] = {.lex_state = 9}, - [1556] = {.lex_state = 17}, + [1552] = {.lex_state = 17}, + [1553] = {.lex_state = 9}, + [1554] = {.lex_state = 17}, + [1555] = {.lex_state = 17}, + [1556] = {.lex_state = 9}, [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 17}, + [1558] = {.lex_state = 13, .external_lex_state = 2}, + [1559] = {.lex_state = 11}, [1560] = {.lex_state = 9}, - [1561] = {.lex_state = 17}, - [1562] = {.lex_state = 17}, + [1561] = {.lex_state = 11}, + [1562] = {.lex_state = 9}, [1563] = {.lex_state = 9}, [1564] = {.lex_state = 9}, - [1565] = {.lex_state = 13, .external_lex_state = 2}, + [1565] = {.lex_state = 9}, [1566] = {.lex_state = 13, .external_lex_state = 2}, - [1567] = {.lex_state = 9}, - [1568] = {.lex_state = 9}, - [1569] = {.lex_state = 13, .external_lex_state = 2}, - [1570] = {.lex_state = 13, .external_lex_state = 2}, - [1571] = {.lex_state = 9}, + [1567] = {.lex_state = 13, .external_lex_state = 2}, + [1568] = {.lex_state = 17}, + [1569] = {.lex_state = 9}, + [1570] = {.lex_state = 9}, + [1571] = {.lex_state = 17}, [1572] = {.lex_state = 9}, - [1573] = {.lex_state = 9}, - [1574] = {.lex_state = 9}, - [1575] = {.lex_state = 13, .external_lex_state = 2}, - [1576] = {.lex_state = 9}, - [1577] = {.lex_state = 13, .external_lex_state = 2}, + [1573] = {.lex_state = 13, .external_lex_state = 2}, + [1574] = {.lex_state = 11}, + [1575] = {.lex_state = 9}, + [1576] = {.lex_state = 17}, + [1577] = {.lex_state = 9}, [1578] = {.lex_state = 9}, [1579] = {.lex_state = 9}, - [1580] = {.lex_state = 9}, - [1581] = {.lex_state = 17}, + [1580] = {.lex_state = 13, .external_lex_state = 2}, + [1581] = {.lex_state = 9}, [1582] = {.lex_state = 9}, - [1583] = {.lex_state = 10}, - [1584] = {.lex_state = 11}, + [1583] = {.lex_state = 9}, + [1584] = {.lex_state = 9}, [1585] = {.lex_state = 9}, - [1586] = {.lex_state = 11}, - [1587] = {.lex_state = 10}, - [1588] = {.lex_state = 10}, + [1586] = {.lex_state = 13, .external_lex_state = 2}, + [1587] = {.lex_state = 17}, + [1588] = {.lex_state = 17}, [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 10}, - [1591] = {.lex_state = 11}, + [1590] = {.lex_state = 9}, + [1591] = {.lex_state = 9}, [1592] = {.lex_state = 9}, - [1593] = {.lex_state = 9}, - [1594] = {.lex_state = 11}, + [1593] = {.lex_state = 11}, + [1594] = {.lex_state = 9}, [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 11}, + [1596] = {.lex_state = 10}, [1597] = {.lex_state = 11}, - [1598] = {.lex_state = 11}, - [1599] = {.lex_state = 9}, + [1598] = {.lex_state = 9}, + [1599] = {.lex_state = 10}, [1600] = {.lex_state = 11}, - [1601] = {.lex_state = 9}, - [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 11}, + [1601] = {.lex_state = 10}, + [1602] = {.lex_state = 9}, + [1603] = {.lex_state = 10}, [1604] = {.lex_state = 9}, - [1605] = {.lex_state = 17}, + [1605] = {.lex_state = 9}, [1606] = {.lex_state = 10}, - [1607] = {.lex_state = 17}, - [1608] = {.lex_state = 9}, + [1607] = {.lex_state = 11}, + [1608] = {.lex_state = 11}, [1609] = {.lex_state = 9}, - [1610] = {.lex_state = 9}, - [1611] = {.lex_state = 10}, - [1612] = {.lex_state = 10}, - [1613] = {.lex_state = 10}, - [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 10}, - [1616] = {.lex_state = 9}, - [1617] = {.lex_state = 10}, - [1618] = {.lex_state = 10}, - [1619] = {.lex_state = 9}, + [1610] = {.lex_state = 11}, + [1611] = {.lex_state = 11}, + [1612] = {.lex_state = 9}, + [1613] = {.lex_state = 9}, + [1614] = {.lex_state = 11}, + [1615] = {.lex_state = 11}, + [1616] = {.lex_state = 17}, + [1617] = {.lex_state = 9}, + [1618] = {.lex_state = 9}, + [1619] = {.lex_state = 10}, [1620] = {.lex_state = 10}, - [1621] = {.lex_state = 10}, - [1622] = {.lex_state = 9}, + [1621] = {.lex_state = 9}, + [1622] = {.lex_state = 10}, [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 9}, - [1625] = {.lex_state = 9}, - [1626] = {.lex_state = 9}, + [1624] = {.lex_state = 10}, + [1625] = {.lex_state = 10}, + [1626] = {.lex_state = 10}, [1627] = {.lex_state = 9}, - [1628] = {.lex_state = 9}, - [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 9}, - [1631] = {.lex_state = 9}, - [1632] = {.lex_state = 10}, + [1628] = {.lex_state = 10}, + [1629] = {.lex_state = 10}, + [1630] = {.lex_state = 10}, + [1631] = {.lex_state = 10}, + [1632] = {.lex_state = 17}, [1633] = {.lex_state = 10}, - [1634] = {.lex_state = 17}, + [1634] = {.lex_state = 10}, [1635] = {.lex_state = 10}, - [1636] = {.lex_state = 10}, + [1636] = {.lex_state = 9}, [1637] = {.lex_state = 9}, - [1638] = {.lex_state = 17}, + [1638] = {.lex_state = 9}, [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 10}, - [1641] = {.lex_state = 22}, - [1642] = {.lex_state = 10}, - [1643] = {.lex_state = 10}, - [1644] = {.lex_state = 22}, - [1645] = {.lex_state = 10}, - [1646] = {.lex_state = 10}, + [1640] = {.lex_state = 9}, + [1641] = {.lex_state = 17}, + [1642] = {.lex_state = 9}, + [1643] = {.lex_state = 9}, + [1644] = {.lex_state = 9}, + [1645] = {.lex_state = 9}, + [1646] = {.lex_state = 9}, [1647] = {.lex_state = 9}, - [1648] = {.lex_state = 9}, + [1648] = {.lex_state = 17}, [1649] = {.lex_state = 9}, [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 22}, - [1652] = {.lex_state = 10}, - [1653] = {.lex_state = 10}, - [1654] = {.lex_state = 9}, - [1655] = {.lex_state = 9}, - [1656] = {.lex_state = 17}, - [1657] = {.lex_state = 10}, - [1658] = {.lex_state = 9}, + [1651] = {.lex_state = 9}, + [1652] = {.lex_state = 11}, + [1653] = {.lex_state = 22}, + [1654] = {.lex_state = 22}, + [1655] = {.lex_state = 22}, + [1656] = {.lex_state = 22}, + [1657] = {.lex_state = 9}, + [1658] = {.lex_state = 22}, [1659] = {.lex_state = 10}, - [1660] = {.lex_state = 10}, - [1661] = {.lex_state = 22}, + [1660] = {.lex_state = 22}, + [1661] = {.lex_state = 9}, [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 9}, - [1664] = {.lex_state = 9}, - [1665] = {.lex_state = 9}, + [1663] = {.lex_state = 10}, + [1664] = {.lex_state = 10}, + [1665] = {.lex_state = 22}, [1666] = {.lex_state = 10}, - [1667] = {.lex_state = 9}, - [1668] = {.lex_state = 9}, + [1667] = {.lex_state = 22}, + [1668] = {.lex_state = 17}, [1669] = {.lex_state = 10}, [1670] = {.lex_state = 9}, - [1671] = {.lex_state = 22}, + [1671] = {.lex_state = 9}, [1672] = {.lex_state = 9}, - [1673] = {.lex_state = 22}, - [1674] = {.lex_state = 9}, - [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 10}, - [1677] = {.lex_state = 9}, - [1678] = {.lex_state = 9}, - [1679] = {.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 = 10}, + [1679] = {.lex_state = 9}, [1680] = {.lex_state = 9}, [1681] = {.lex_state = 9}, [1682] = {.lex_state = 9}, - [1683] = {.lex_state = 10}, + [1683] = {.lex_state = 9}, [1684] = {.lex_state = 9}, [1685] = {.lex_state = 10}, [1686] = {.lex_state = 10}, - [1687] = {.lex_state = 9}, + [1687] = {.lex_state = 10}, [1688] = {.lex_state = 9}, - [1689] = {.lex_state = 10}, - [1690] = {.lex_state = 10}, - [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 11}, + [1689] = {.lex_state = 9}, + [1690] = {.lex_state = 9}, + [1691] = {.lex_state = 9}, + [1692] = {.lex_state = 10}, [1693] = {.lex_state = 9}, - [1694] = {.lex_state = 22}, - [1695] = {.lex_state = 22}, - [1696] = {.lex_state = 22}, - [1697] = {.lex_state = 22}, - [1698] = {.lex_state = 22}, - [1699] = {.lex_state = 9}, + [1694] = {.lex_state = 9}, + [1695] = {.lex_state = 9}, + [1696] = {.lex_state = 10}, + [1697] = {.lex_state = 9}, + [1698] = {.lex_state = 10}, + [1699] = {.lex_state = 10}, [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 9}, + [1701] = {.lex_state = 22}, [1702] = {.lex_state = 10}, [1703] = {.lex_state = 10}, - [1704] = {.lex_state = 10}, + [1704] = {.lex_state = 22}, [1705] = {.lex_state = 9}, - [1706] = {.lex_state = 10}, + [1706] = {.lex_state = 22}, [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 9}, - [1709] = {.lex_state = 10}, - [1710] = {.lex_state = 10}, - [1711] = {.lex_state = 10}, - [1712] = {.lex_state = 10}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 10}, + [1708] = {.lex_state = 10}, + [1709] = {.lex_state = 9}, + [1710] = {.lex_state = 9}, + [1711] = {.lex_state = 9}, + [1712] = {.lex_state = 9}, + [1713] = {.lex_state = 9}, + [1714] = {.lex_state = 9}, [1715] = {.lex_state = 10}, [1716] = {.lex_state = 10}, - [1717] = {.lex_state = 10}, + [1717] = {.lex_state = 9}, [1718] = {.lex_state = 10}, [1719] = {.lex_state = 10}, [1720] = {.lex_state = 10}, [1721] = {.lex_state = 10}, - [1722] = {.lex_state = 10}, - [1723] = {.lex_state = 9}, - [1724] = {.lex_state = 9}, - [1725] = {.lex_state = 10}, - [1726] = {.lex_state = 9}, + [1722] = {.lex_state = 9}, + [1723] = {.lex_state = 10}, + [1724] = {.lex_state = 10}, + [1725] = {.lex_state = 9}, + [1726] = {.lex_state = 10}, [1727] = {.lex_state = 9}, - [1728] = {.lex_state = 9}, + [1728] = {.lex_state = 10}, [1729] = {.lex_state = 9}, - [1730] = {.lex_state = 9}, - [1731] = {.lex_state = 9}, - [1732] = {.lex_state = 9}, - [1733] = {.lex_state = 9}, - [1734] = {.lex_state = 9}, - [1735] = {.lex_state = 9}, - [1736] = {.lex_state = 9}, - [1737] = {.lex_state = 9}, - [1738] = {.lex_state = 9}, - [1739] = {.lex_state = 9}, + [1730] = {.lex_state = 10}, + [1731] = {.lex_state = 10}, + [1732] = {.lex_state = 10}, + [1733] = {.lex_state = 10}, + [1734] = {.lex_state = 10}, + [1735] = {.lex_state = 10}, + [1736] = {.lex_state = 10}, + [1737] = {.lex_state = 10}, + [1738] = {.lex_state = 10}, + [1739] = {.lex_state = 10}, [1740] = {.lex_state = 10}, [1741] = {.lex_state = 10}, [1742] = {.lex_state = 10}, [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 9}, - [1745] = {.lex_state = 10}, - [1746] = {.lex_state = 10}, + [1744] = {.lex_state = 10}, + [1745] = {.lex_state = 9}, + [1746] = {.lex_state = 9}, [1747] = {.lex_state = 10}, - [1748] = {.lex_state = 9}, - [1749] = {.lex_state = 10}, - [1750] = {.lex_state = 10}, - [1751] = {.lex_state = 10}, - [1752] = {.lex_state = 10}, - [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 10}, - [1755] = {.lex_state = 10}, - [1756] = {.lex_state = 10}, - [1757] = {.lex_state = 10}, - [1758] = {.lex_state = 10}, + [1748] = {.lex_state = 10}, + [1749] = {.lex_state = 9}, + [1750] = {.lex_state = 9}, + [1751] = {.lex_state = 9}, + [1752] = {.lex_state = 9}, + [1753] = {.lex_state = 9}, + [1754] = {.lex_state = 9}, + [1755] = {.lex_state = 9}, + [1756] = {.lex_state = 9}, + [1757] = {.lex_state = 9}, + [1758] = {.lex_state = 9}, [1759] = {.lex_state = 9}, - [1760] = {.lex_state = 10}, - [1761] = {.lex_state = 10}, + [1760] = {.lex_state = 9}, + [1761] = {.lex_state = 9}, [1762] = {.lex_state = 10}, - [1763] = {.lex_state = 9}, + [1763] = {.lex_state = 10}, [1764] = {.lex_state = 10}, [1765] = {.lex_state = 10}, [1766] = {.lex_state = 10}, [1767] = {.lex_state = 10}, - [1768] = {.lex_state = 10}, - [1769] = {.lex_state = 10}, + [1768] = {.lex_state = 9}, + [1769] = {.lex_state = 9}, [1770] = {.lex_state = 10}, [1771] = {.lex_state = 10}, [1772] = {.lex_state = 9}, @@ -12166,22 +12211,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1777] = {.lex_state = 10}, [1778] = {.lex_state = 10}, [1779] = {.lex_state = 10}, - [1780] = {.lex_state = 10}, + [1780] = {.lex_state = 9}, [1781] = {.lex_state = 10}, [1782] = {.lex_state = 10}, [1783] = {.lex_state = 10}, - [1784] = {.lex_state = 9}, - [1785] = {.lex_state = 9}, + [1784] = {.lex_state = 10}, + [1785] = {.lex_state = 10}, [1786] = {.lex_state = 10}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 10}, [1789] = {.lex_state = 10}, [1790] = {.lex_state = 10}, [1791] = {.lex_state = 10}, - [1792] = {.lex_state = 9}, + [1792] = {.lex_state = 10}, [1793] = {.lex_state = 10}, [1794] = {.lex_state = 10}, - [1795] = {.lex_state = 10}, + [1795] = {.lex_state = 9}, [1796] = {.lex_state = 10}, [1797] = {.lex_state = 10}, [1798] = {.lex_state = 10}, @@ -12190,14 +12235,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1801] = {.lex_state = 10}, [1802] = {.lex_state = 10}, [1803] = {.lex_state = 10}, - [1804] = {.lex_state = 10}, + [1804] = {.lex_state = 9}, [1805] = {.lex_state = 10}, [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 10}, + [1807] = {.lex_state = 9}, [1808] = {.lex_state = 10}, [1809] = {.lex_state = 9}, [1810] = {.lex_state = 10}, - [1811] = {.lex_state = 10}, + [1811] = {.lex_state = 9}, [1812] = {.lex_state = 10}, [1813] = {.lex_state = 10}, [1814] = {.lex_state = 10}, @@ -12213,8 +12258,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1824] = {.lex_state = 10}, [1825] = {.lex_state = 10}, [1826] = {.lex_state = 10}, - [1827] = {.lex_state = 9}, - [1828] = {.lex_state = 10}, + [1827] = {.lex_state = 10}, + [1828] = {.lex_state = 9}, [1829] = {.lex_state = 10}, [1830] = {.lex_state = 10}, [1831] = {.lex_state = 10}, @@ -12224,62 +12269,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1835] = {.lex_state = 10}, [1836] = {.lex_state = 10}, [1837] = {.lex_state = 10}, - [1838] = {.lex_state = 10}, + [1838] = {.lex_state = 9}, [1839] = {.lex_state = 10}, [1840] = {.lex_state = 10}, [1841] = {.lex_state = 10}, [1842] = {.lex_state = 10}, - [1843] = {.lex_state = 9}, + [1843] = {.lex_state = 10}, [1844] = {.lex_state = 10}, - [1845] = {.lex_state = 9}, + [1845] = {.lex_state = 10}, [1846] = {.lex_state = 10}, [1847] = {.lex_state = 10}, - [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 9}, + [1848] = {.lex_state = 10}, + [1849] = {.lex_state = 10}, [1850] = {.lex_state = 10}, - [1851] = {.lex_state = 9}, - [1852] = {.lex_state = 9}, - [1853] = {.lex_state = 9}, - [1854] = {.lex_state = 17}, - [1855] = {.lex_state = 9}, + [1851] = {.lex_state = 10}, + [1852] = {.lex_state = 10}, + [1853] = {.lex_state = 10}, + [1854] = {.lex_state = 10}, + [1855] = {.lex_state = 10}, [1856] = {.lex_state = 10}, - [1857] = {.lex_state = 9}, + [1857] = {.lex_state = 10}, [1858] = {.lex_state = 10}, - [1859] = {.lex_state = 9}, - [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 9}, + [1859] = {.lex_state = 10}, + [1860] = {.lex_state = 10}, + [1861] = {.lex_state = 10}, [1862] = {.lex_state = 9}, - [1863] = {.lex_state = 9}, + [1863] = {.lex_state = 10}, [1864] = {.lex_state = 9}, - [1865] = {.lex_state = 9}, - [1866] = {.lex_state = 9}, - [1867] = {.lex_state = 9}, + [1865] = {.lex_state = 10}, + [1866] = {.lex_state = 10}, + [1867] = {.lex_state = 10}, [1868] = {.lex_state = 9}, - [1869] = {.lex_state = 9}, - [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 9}, + [1869] = {.lex_state = 10}, + [1870] = {.lex_state = 10}, + [1871] = {.lex_state = 10}, [1872] = {.lex_state = 9}, - [1873] = {.lex_state = 9}, + [1873] = {.lex_state = 10}, [1874] = {.lex_state = 9}, - [1875] = {.lex_state = 9}, - [1876] = {.lex_state = 17}, + [1875] = {.lex_state = 17}, + [1876] = {.lex_state = 10}, [1877] = {.lex_state = 9}, - [1878] = {.lex_state = 9}, - [1879] = {.lex_state = 9}, + [1878] = {.lex_state = 10}, + [1879] = {.lex_state = 10}, [1880] = {.lex_state = 9}, [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 10}, + [1882] = {.lex_state = 9}, [1883] = {.lex_state = 9}, [1884] = {.lex_state = 9}, [1885] = {.lex_state = 9}, - [1886] = {.lex_state = 10}, - [1887] = {.lex_state = 9}, + [1886] = {.lex_state = 9}, + [1887] = {.lex_state = 10}, [1888] = {.lex_state = 9}, [1889] = {.lex_state = 9}, - [1890] = {.lex_state = 9}, - [1891] = {.lex_state = 9}, + [1890] = {.lex_state = 17}, + [1891] = {.lex_state = 10}, [1892] = {.lex_state = 9}, - [1893] = {.lex_state = 9}, + [1893] = {.lex_state = 10}, [1894] = {.lex_state = 9}, [1895] = {.lex_state = 9}, [1896] = {.lex_state = 9}, @@ -12287,416 +12332,416 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1898] = {.lex_state = 9}, [1899] = {.lex_state = 9}, [1900] = {.lex_state = 9}, - [1901] = {.lex_state = 9}, + [1901] = {.lex_state = 10}, [1902] = {.lex_state = 10}, - [1903] = {.lex_state = 10}, - [1904] = {.lex_state = 10}, - [1905] = {.lex_state = 10}, - [1906] = {.lex_state = 10}, + [1903] = {.lex_state = 9}, + [1904] = {.lex_state = 9}, + [1905] = {.lex_state = 9}, + [1906] = {.lex_state = 9}, [1907] = {.lex_state = 9}, - [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 10}, + [1908] = {.lex_state = 9}, + [1909] = {.lex_state = 9}, [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 10}, + [1911] = {.lex_state = 9}, [1912] = {.lex_state = 9}, - [1913] = {.lex_state = 10}, + [1913] = {.lex_state = 9}, [1914] = {.lex_state = 9}, [1915] = {.lex_state = 9}, - [1916] = {.lex_state = 10}, + [1916] = {.lex_state = 9}, [1917] = {.lex_state = 9}, [1918] = {.lex_state = 9}, - [1919] = {.lex_state = 17}, + [1919] = {.lex_state = 9}, [1920] = {.lex_state = 9}, [1921] = {.lex_state = 9}, [1922] = {.lex_state = 9}, - [1923] = {.lex_state = 10}, + [1923] = {.lex_state = 9}, [1924] = {.lex_state = 9}, [1925] = {.lex_state = 9}, [1926] = {.lex_state = 9}, - [1927] = {.lex_state = 10}, - [1928] = {.lex_state = 9}, + [1927] = {.lex_state = 9}, + [1928] = {.lex_state = 10}, [1929] = {.lex_state = 9}, - [1930] = {.lex_state = 17}, + [1930] = {.lex_state = 9}, [1931] = {.lex_state = 9}, [1932] = {.lex_state = 9}, [1933] = {.lex_state = 9}, [1934] = {.lex_state = 10}, [1935] = {.lex_state = 9}, - [1936] = {.lex_state = 17}, + [1936] = {.lex_state = 9}, [1937] = {.lex_state = 9}, [1938] = {.lex_state = 9}, [1939] = {.lex_state = 9}, - [1940] = {.lex_state = 9}, - [1941] = {.lex_state = 9}, + [1940] = {.lex_state = 10}, + [1941] = {.lex_state = 17}, [1942] = {.lex_state = 9}, [1943] = {.lex_state = 9}, [1944] = {.lex_state = 9}, - [1945] = {.lex_state = 9}, + [1945] = {.lex_state = 17}, [1946] = {.lex_state = 9}, [1947] = {.lex_state = 9}, - [1948] = {.lex_state = 9}, - [1949] = {.lex_state = 17}, + [1948] = {.lex_state = 10}, + [1949] = {.lex_state = 9}, [1950] = {.lex_state = 9}, [1951] = {.lex_state = 9}, [1952] = {.lex_state = 9}, - [1953] = {.lex_state = 17}, - [1954] = {.lex_state = 17}, - [1955] = {.lex_state = 17}, - [1956] = {.lex_state = 17}, + [1953] = {.lex_state = 10}, + [1954] = {.lex_state = 9}, + [1955] = {.lex_state = 9}, + [1956] = {.lex_state = 9}, [1957] = {.lex_state = 17}, - [1958] = {.lex_state = 17}, - [1959] = {.lex_state = 17}, - [1960] = {.lex_state = 17}, + [1958] = {.lex_state = 9}, + [1959] = {.lex_state = 9}, + [1960] = {.lex_state = 9}, [1961] = {.lex_state = 17}, [1962] = {.lex_state = 17}, - [1963] = {.lex_state = 17}, - [1964] = {.lex_state = 17}, - [1965] = {.lex_state = 17}, - [1966] = {.lex_state = 17}, - [1967] = {.lex_state = 17}, - [1968] = {.lex_state = 17}, - [1969] = {.lex_state = 17}, - [1970] = {.lex_state = 17}, - [1971] = {.lex_state = 17}, + [1963] = {.lex_state = 9}, + [1964] = {.lex_state = 9}, + [1965] = {.lex_state = 9}, + [1966] = {.lex_state = 9}, + [1967] = {.lex_state = 9}, + [1968] = {.lex_state = 9}, + [1969] = {.lex_state = 9}, + [1970] = {.lex_state = 9}, + [1971] = {.lex_state = 9}, [1972] = {.lex_state = 17}, [1973] = {.lex_state = 17}, [1974] = {.lex_state = 17}, [1975] = {.lex_state = 17}, - [1976] = {.lex_state = 31}, - [1977] = {.lex_state = 31}, - [1978] = {.lex_state = 18}, - [1979] = {.lex_state = 18}, - [1980] = {.lex_state = 18}, - [1981] = {.lex_state = 18}, - [1982] = {.lex_state = 18}, - [1983] = {.lex_state = 18}, + [1976] = {.lex_state = 17}, + [1977] = {.lex_state = 17}, + [1978] = {.lex_state = 17}, + [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}, [1986] = {.lex_state = 17}, - [1987] = {.lex_state = 18}, - [1988] = {.lex_state = 18}, - [1989] = {.lex_state = 18}, - [1990] = {.lex_state = 18}, - [1991] = {.lex_state = 18}, + [1987] = {.lex_state = 17}, + [1988] = {.lex_state = 17}, + [1989] = {.lex_state = 17}, + [1990] = {.lex_state = 17}, + [1991] = {.lex_state = 17}, [1992] = {.lex_state = 17}, - [1993] = {.lex_state = 18}, - [1994] = {.lex_state = 13, .external_lex_state = 2}, - [1995] = {.lex_state = 17}, - [1996] = {.lex_state = 17}, - [1997] = {.lex_state = 17}, - [1998] = {.lex_state = 31}, + [1993] = {.lex_state = 17}, + [1994] = {.lex_state = 31}, + [1995] = {.lex_state = 31}, + [1996] = {.lex_state = 18}, + [1997] = {.lex_state = 18}, + [1998] = {.lex_state = 18}, [1999] = {.lex_state = 18}, - [2000] = {.lex_state = 17}, + [2000] = {.lex_state = 18}, [2001] = {.lex_state = 18}, - [2002] = {.lex_state = 17}, + [2002] = {.lex_state = 18}, [2003] = {.lex_state = 17}, - [2004] = {.lex_state = 18}, - [2005] = {.lex_state = 17}, - [2006] = {.lex_state = 17}, - [2007] = {.lex_state = 31}, - [2008] = {.lex_state = 17}, - [2009] = {.lex_state = 31}, - [2010] = {.lex_state = 31}, - [2011] = {.lex_state = 31}, + [2004] = {.lex_state = 17}, + [2005] = {.lex_state = 18}, + [2006] = {.lex_state = 18}, + [2007] = {.lex_state = 17}, + [2008] = {.lex_state = 18}, + [2009] = {.lex_state = 17}, + [2010] = {.lex_state = 18}, + [2011] = {.lex_state = 18}, [2012] = {.lex_state = 31}, - [2013] = {.lex_state = 17}, - [2014] = {.lex_state = 18}, + [2013] = {.lex_state = 13, .external_lex_state = 2}, + [2014] = {.lex_state = 17}, [2015] = {.lex_state = 17}, - [2016] = {.lex_state = 31}, + [2016] = {.lex_state = 17}, [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 31}, + [2018] = {.lex_state = 17}, [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 31}, + [2020] = {.lex_state = 17}, [2021] = {.lex_state = 17}, - [2022] = {.lex_state = 31}, + [2022] = {.lex_state = 17}, [2023] = {.lex_state = 31}, - [2024] = {.lex_state = 17}, - [2025] = {.lex_state = 31}, - [2026] = {.lex_state = 17}, + [2024] = {.lex_state = 31}, + [2025] = {.lex_state = 17}, + [2026] = {.lex_state = 31}, [2027] = {.lex_state = 31}, [2028] = {.lex_state = 18}, [2029] = {.lex_state = 18}, - [2030] = {.lex_state = 31}, - [2031] = {.lex_state = 17}, + [2030] = {.lex_state = 17}, + [2031] = {.lex_state = 18}, [2032] = {.lex_state = 17}, - [2033] = {.lex_state = 31}, + [2033] = {.lex_state = 18}, [2034] = {.lex_state = 31}, - [2035] = {.lex_state = 31}, - [2036] = {.lex_state = 31}, - [2037] = {.lex_state = 31}, + [2035] = {.lex_state = 17}, + [2036] = {.lex_state = 18}, + [2037] = {.lex_state = 17}, [2038] = {.lex_state = 31}, - [2039] = {.lex_state = 17}, - [2040] = {.lex_state = 17}, + [2039] = {.lex_state = 18}, + [2040] = {.lex_state = 31}, [2041] = {.lex_state = 17}, - [2042] = {.lex_state = 31}, - [2043] = {.lex_state = 17}, + [2042] = {.lex_state = 17}, + [2043] = {.lex_state = 31}, [2044] = {.lex_state = 31}, - [2045] = {.lex_state = 31}, + [2045] = {.lex_state = 17}, [2046] = {.lex_state = 31}, [2047] = {.lex_state = 31}, [2048] = {.lex_state = 31}, - [2049] = {.lex_state = 18}, - [2050] = {.lex_state = 31}, + [2049] = {.lex_state = 31}, + [2050] = {.lex_state = 17}, [2051] = {.lex_state = 31}, [2052] = {.lex_state = 31}, [2053] = {.lex_state = 31}, [2054] = {.lex_state = 31}, - [2055] = {.lex_state = 17}, + [2055] = {.lex_state = 31}, [2056] = {.lex_state = 31}, [2057] = {.lex_state = 31}, [2058] = {.lex_state = 31}, [2059] = {.lex_state = 31}, - [2060] = {.lex_state = 31}, + [2060] = {.lex_state = 17}, [2061] = {.lex_state = 31}, - [2062] = {.lex_state = 31}, + [2062] = {.lex_state = 17}, [2063] = {.lex_state = 31}, [2064] = {.lex_state = 31}, [2065] = {.lex_state = 31}, - [2066] = {.lex_state = 31}, + [2066] = {.lex_state = 18}, [2067] = {.lex_state = 31}, [2068] = {.lex_state = 31}, [2069] = {.lex_state = 31}, [2070] = {.lex_state = 31}, - [2071] = {.lex_state = 17}, + [2071] = {.lex_state = 31}, [2072] = {.lex_state = 31}, [2073] = {.lex_state = 17}, [2074] = {.lex_state = 31}, [2075] = {.lex_state = 31}, [2076] = {.lex_state = 17}, - [2077] = {.lex_state = 17}, - [2078] = {.lex_state = 17}, - [2079] = {.lex_state = 17}, - [2080] = {.lex_state = 17}, - [2081] = {.lex_state = 17}, - [2082] = {.lex_state = 17}, - [2083] = {.lex_state = 18}, - [2084] = {.lex_state = 18}, - [2085] = {.lex_state = 18}, - [2086] = {.lex_state = 18}, + [2077] = {.lex_state = 31}, + [2078] = {.lex_state = 31}, + [2079] = {.lex_state = 31}, + [2080] = {.lex_state = 31}, + [2081] = {.lex_state = 31}, + [2082] = {.lex_state = 31}, + [2083] = {.lex_state = 17}, + [2084] = {.lex_state = 31}, + [2085] = {.lex_state = 31}, + [2086] = {.lex_state = 31}, [2087] = {.lex_state = 31}, - [2088] = {.lex_state = 18}, - [2089] = {.lex_state = 18}, - [2090] = {.lex_state = 18}, - [2091] = {.lex_state = 18}, - [2092] = {.lex_state = 18}, - [2093] = {.lex_state = 18}, - [2094] = {.lex_state = 18}, - [2095] = {.lex_state = 18}, + [2088] = {.lex_state = 31}, + [2089] = {.lex_state = 17}, + [2090] = {.lex_state = 17}, + [2091] = {.lex_state = 17}, + [2092] = {.lex_state = 17}, + [2093] = {.lex_state = 17}, + [2094] = {.lex_state = 17}, + [2095] = {.lex_state = 17}, [2096] = {.lex_state = 31}, - [2097] = {.lex_state = 19}, - [2098] = {.lex_state = 18}, + [2097] = {.lex_state = 31}, + [2098] = {.lex_state = 31}, [2099] = {.lex_state = 17}, [2100] = {.lex_state = 17}, - [2101] = {.lex_state = 17}, - [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 17}, - [2104] = {.lex_state = 17}, - [2105] = {.lex_state = 17}, - [2106] = {.lex_state = 17}, - [2107] = {.lex_state = 17}, - [2108] = {.lex_state = 17}, - [2109] = {.lex_state = 17}, - [2110] = {.lex_state = 31}, - [2111] = {.lex_state = 17}, - [2112] = {.lex_state = 17}, - [2113] = {.lex_state = 17}, - [2114] = {.lex_state = 27}, + [2101] = {.lex_state = 31}, + [2102] = {.lex_state = 31}, + [2103] = {.lex_state = 19}, + [2104] = {.lex_state = 18}, + [2105] = {.lex_state = 18}, + [2106] = {.lex_state = 18}, + [2107] = {.lex_state = 18}, + [2108] = {.lex_state = 18}, + [2109] = {.lex_state = 18}, + [2110] = {.lex_state = 18}, + [2111] = {.lex_state = 18}, + [2112] = {.lex_state = 18}, + [2113] = {.lex_state = 18}, + [2114] = {.lex_state = 18}, [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 17}, + [2116] = {.lex_state = 18}, [2117] = {.lex_state = 17}, - [2118] = {.lex_state = 18}, - [2119] = {.lex_state = 18}, - [2120] = {.lex_state = 18}, + [2118] = {.lex_state = 17}, + [2119] = {.lex_state = 17}, + [2120] = {.lex_state = 17}, [2121] = {.lex_state = 17}, [2122] = {.lex_state = 17}, - [2123] = {.lex_state = 31}, + [2123] = {.lex_state = 17}, [2124] = {.lex_state = 17}, - [2125] = {.lex_state = 18}, + [2125] = {.lex_state = 17}, [2126] = {.lex_state = 17}, - [2127] = {.lex_state = 19}, + [2127] = {.lex_state = 17}, [2128] = {.lex_state = 18}, - [2129] = {.lex_state = 17}, - [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 17}, - [2132] = {.lex_state = 19}, - [2133] = {.lex_state = 31}, + [2129] = {.lex_state = 18}, + [2130] = {.lex_state = 31}, + [2131] = {.lex_state = 18}, + [2132] = {.lex_state = 17}, + [2133] = {.lex_state = 17}, [2134] = {.lex_state = 17}, - [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 17}, - [2137] = {.lex_state = 19}, - [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 31}, - [2141] = {.lex_state = 24}, - [2142] = {.lex_state = 24}, - [2143] = {.lex_state = 18}, - [2144] = {.lex_state = 24}, + [2135] = {.lex_state = 17}, + [2136] = {.lex_state = 31}, + [2137] = {.lex_state = 18}, + [2138] = {.lex_state = 31}, + [2139] = {.lex_state = 31}, + [2140] = {.lex_state = 17}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 17}, + [2143] = {.lex_state = 17}, + [2144] = {.lex_state = 17}, [2145] = {.lex_state = 17}, - [2146] = {.lex_state = 19}, - [2147] = {.lex_state = 24}, - [2148] = {.lex_state = 18}, - [2149] = {.lex_state = 18}, - [2150] = {.lex_state = 18}, - [2151] = {.lex_state = 17}, - [2152] = {.lex_state = 31}, - [2153] = {.lex_state = 18}, - [2154] = {.lex_state = 18}, - [2155] = {.lex_state = 27}, - [2156] = {.lex_state = 17}, - [2157] = {.lex_state = 31}, + [2146] = {.lex_state = 17}, + [2147] = {.lex_state = 17}, + [2148] = {.lex_state = 19}, + [2149] = {.lex_state = 19}, + [2150] = {.lex_state = 19}, + [2151] = {.lex_state = 19}, + [2152] = {.lex_state = 27}, + [2153] = {.lex_state = 27}, + [2154] = {.lex_state = 17}, + [2155] = {.lex_state = 18}, + [2156] = {.lex_state = 24}, + [2157] = {.lex_state = 17}, [2158] = {.lex_state = 17}, [2159] = {.lex_state = 31}, - [2160] = {.lex_state = 17}, - [2161] = {.lex_state = 31}, + [2160] = {.lex_state = 18}, + [2161] = {.lex_state = 24}, [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 31}, - [2164] = {.lex_state = 27}, - [2165] = {.lex_state = 31}, - [2166] = {.lex_state = 27}, - [2167] = {.lex_state = 31}, - [2168] = {.lex_state = 27}, - [2169] = {.lex_state = 31}, - [2170] = {.lex_state = 31}, - [2171] = {.lex_state = 31}, + [2163] = {.lex_state = 17}, + [2164] = {.lex_state = 18}, + [2165] = {.lex_state = 18}, + [2166] = {.lex_state = 18}, + [2167] = {.lex_state = 17}, + [2168] = {.lex_state = 24}, + [2169] = {.lex_state = 18}, + [2170] = {.lex_state = 24}, + [2171] = {.lex_state = 17}, [2172] = {.lex_state = 18}, - [2173] = {.lex_state = 31}, - [2174] = {.lex_state = 31}, - [2175] = {.lex_state = 31}, + [2173] = {.lex_state = 18}, + [2174] = {.lex_state = 18}, + [2175] = {.lex_state = 27}, [2176] = {.lex_state = 31}, - [2177] = {.lex_state = 31}, - [2178] = {.lex_state = 31}, + [2177] = {.lex_state = 18}, + [2178] = {.lex_state = 17}, [2179] = {.lex_state = 31}, - [2180] = {.lex_state = 31}, - [2181] = {.lex_state = 31}, + [2180] = {.lex_state = 17}, + [2181] = {.lex_state = 17}, [2182] = {.lex_state = 31}, [2183] = {.lex_state = 31}, - [2184] = {.lex_state = 31}, - [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 18}, + [2184] = {.lex_state = 27}, + [2185] = {.lex_state = 27}, + [2186] = {.lex_state = 31}, [2187] = {.lex_state = 31}, - [2188] = {.lex_state = 31}, + [2188] = {.lex_state = 27}, [2189] = {.lex_state = 31}, [2190] = {.lex_state = 31}, - [2191] = {.lex_state = 31}, - [2192] = {.lex_state = 17}, - [2193] = {.lex_state = 19}, - [2194] = {.lex_state = 31}, - [2195] = {.lex_state = 17}, + [2191] = {.lex_state = 18}, + [2192] = {.lex_state = 31}, + [2193] = {.lex_state = 31}, + [2194] = {.lex_state = 17}, + [2195] = {.lex_state = 31}, [2196] = {.lex_state = 31}, - [2197] = {.lex_state = 18}, - [2198] = {.lex_state = 18}, + [2197] = {.lex_state = 31}, + [2198] = {.lex_state = 19}, [2199] = {.lex_state = 31}, - [2200] = {.lex_state = 12}, - [2201] = {.lex_state = 27}, - [2202] = {.lex_state = 18}, - [2203] = {.lex_state = 18}, + [2200] = {.lex_state = 31}, + [2201] = {.lex_state = 31}, + [2202] = {.lex_state = 31}, + [2203] = {.lex_state = 31}, [2204] = {.lex_state = 31}, [2205] = {.lex_state = 31}, - [2206] = {.lex_state = 31}, + [2206] = {.lex_state = 17}, [2207] = {.lex_state = 31}, [2208] = {.lex_state = 31}, [2209] = {.lex_state = 31}, - [2210] = {.lex_state = 18}, + [2210] = {.lex_state = 31}, [2211] = {.lex_state = 31}, - [2212] = {.lex_state = 18}, - [2213] = {.lex_state = 17}, - [2214] = {.lex_state = 17}, - [2215] = {.lex_state = 17}, - [2216] = {.lex_state = 31}, - [2217] = {.lex_state = 17}, - [2218] = {.lex_state = 19}, - [2219] = {.lex_state = 19}, - [2220] = {.lex_state = 8}, - [2221] = {.lex_state = 17}, - [2222] = {.lex_state = 17}, - [2223] = {.lex_state = 8}, - [2224] = {.lex_state = 72}, - [2225] = {.lex_state = 12}, + [2212] = {.lex_state = 31}, + [2213] = {.lex_state = 18}, + [2214] = {.lex_state = 18}, + [2215] = {.lex_state = 31}, + [2216] = {.lex_state = 12}, + [2217] = {.lex_state = 18}, + [2218] = {.lex_state = 31}, + [2219] = {.lex_state = 31}, + [2220] = {.lex_state = 18}, + [2221] = {.lex_state = 31}, + [2222] = {.lex_state = 31}, + [2223] = {.lex_state = 31}, + [2224] = {.lex_state = 31}, + [2225] = {.lex_state = 18}, [2226] = {.lex_state = 31}, - [2227] = {.lex_state = 12}, - [2228] = {.lex_state = 12}, + [2227] = {.lex_state = 31}, + [2228] = {.lex_state = 31}, [2229] = {.lex_state = 31}, - [2230] = {.lex_state = 27}, + [2230] = {.lex_state = 17}, [2231] = {.lex_state = 8}, [2232] = {.lex_state = 31}, - [2233] = {.lex_state = 19}, - [2234] = {.lex_state = 17}, - [2235] = {.lex_state = 31}, - [2236] = {.lex_state = 31}, - [2237] = {.lex_state = 31}, - [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 19}, + [2233] = {.lex_state = 17}, + [2234] = {.lex_state = 31}, + [2235] = {.lex_state = 17}, + [2236] = {.lex_state = 19}, + [2237] = {.lex_state = 17}, + [2238] = {.lex_state = 8}, + [2239] = {.lex_state = 12}, [2240] = {.lex_state = 17}, - [2241] = {.lex_state = 17}, + [2241] = {.lex_state = 19}, [2242] = {.lex_state = 17}, - [2243] = {.lex_state = 17}, - [2244] = {.lex_state = 17}, + [2243] = {.lex_state = 19}, + [2244] = {.lex_state = 31}, [2245] = {.lex_state = 17}, [2246] = {.lex_state = 17}, - [2247] = {.lex_state = 17}, + [2247] = {.lex_state = 31}, [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 12}, + [2249] = {.lex_state = 17}, [2250] = {.lex_state = 17}, - [2251] = {.lex_state = 31}, + [2251] = {.lex_state = 27}, [2252] = {.lex_state = 17}, - [2253] = {.lex_state = 31}, + [2253] = {.lex_state = 8}, [2254] = {.lex_state = 31}, - [2255] = {.lex_state = 17}, + [2255] = {.lex_state = 72}, [2256] = {.lex_state = 31}, - [2257] = {.lex_state = 17}, + [2257] = {.lex_state = 12}, [2258] = {.lex_state = 17}, [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 19}, + [2260] = {.lex_state = 18}, [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 31}, + [2262] = {.lex_state = 17}, [2263] = {.lex_state = 17}, - [2264] = {.lex_state = 17}, + [2264] = {.lex_state = 31}, [2265] = {.lex_state = 17}, [2266] = {.lex_state = 17}, - [2267] = {.lex_state = 27}, + [2267] = {.lex_state = 19}, [2268] = {.lex_state = 17}, [2269] = {.lex_state = 17}, [2270] = {.lex_state = 17}, - [2271] = {.lex_state = 17}, - [2272] = {.lex_state = 27}, + [2271] = {.lex_state = 19}, + [2272] = {.lex_state = 12}, [2273] = {.lex_state = 17}, - [2274] = {.lex_state = 17}, + [2274] = {.lex_state = 31}, [2275] = {.lex_state = 17}, - [2276] = {.lex_state = 17}, - [2277] = {.lex_state = 17}, - [2278] = {.lex_state = 17}, - [2279] = {.lex_state = 17}, + [2276] = {.lex_state = 31}, + [2277] = {.lex_state = 31}, + [2278] = {.lex_state = 31}, + [2279] = {.lex_state = 31}, [2280] = {.lex_state = 17}, - [2281] = {.lex_state = 17}, - [2282] = {.lex_state = 17}, + [2281] = {.lex_state = 12}, + [2282] = {.lex_state = 27}, [2283] = {.lex_state = 17}, - [2284] = {.lex_state = 17}, + [2284] = {.lex_state = 27}, [2285] = {.lex_state = 17}, [2286] = {.lex_state = 17}, [2287] = {.lex_state = 17}, - [2288] = {.lex_state = 24}, - [2289] = {.lex_state = 27}, + [2288] = {.lex_state = 27}, + [2289] = {.lex_state = 17}, [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 27}, - [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 27}, + [2291] = {.lex_state = 17}, + [2292] = {.lex_state = 12}, + [2293] = {.lex_state = 17}, [2294] = {.lex_state = 17}, [2295] = {.lex_state = 17}, [2296] = {.lex_state = 17}, [2297] = {.lex_state = 17}, - [2298] = {.lex_state = 27}, + [2298] = {.lex_state = 17}, [2299] = {.lex_state = 17}, [2300] = {.lex_state = 17}, [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 17}, + [2302] = {.lex_state = 27}, [2303] = {.lex_state = 17}, - [2304] = {.lex_state = 27}, - [2305] = {.lex_state = 27}, + [2304] = {.lex_state = 17}, + [2305] = {.lex_state = 17}, [2306] = {.lex_state = 27}, - [2307] = {.lex_state = 17}, + [2307] = {.lex_state = 24}, [2308] = {.lex_state = 17}, - [2309] = {.lex_state = 12}, - [2310] = {.lex_state = 27}, + [2309] = {.lex_state = 17}, + [2310] = {.lex_state = 17}, [2311] = {.lex_state = 17}, [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, @@ -12704,584 +12749,584 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2315] = {.lex_state = 27}, [2316] = {.lex_state = 17}, [2317] = {.lex_state = 27}, - [2318] = {.lex_state = 72}, - [2319] = {.lex_state = 72}, - [2320] = {.lex_state = 72}, - [2321] = {.lex_state = 72}, - [2322] = {.lex_state = 72}, - [2323] = {.lex_state = 72}, - [2324] = {.lex_state = 12}, - [2325] = {.lex_state = 72}, - [2326] = {.lex_state = 72}, - [2327] = {.lex_state = 169}, - [2328] = {.lex_state = 27}, - [2329] = {.lex_state = 72}, - [2330] = {.lex_state = 17}, - [2331] = {.lex_state = 72}, - [2332] = {.lex_state = 72}, - [2333] = {.lex_state = 17}, - [2334] = {.lex_state = 72}, - [2335] = {.lex_state = 72}, - [2336] = {.lex_state = 27}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 17}, + [2320] = {.lex_state = 17}, + [2321] = {.lex_state = 17}, + [2322] = {.lex_state = 17}, + [2323] = {.lex_state = 17}, + [2324] = {.lex_state = 17}, + [2325] = {.lex_state = 27}, + [2326] = {.lex_state = 27}, + [2327] = {.lex_state = 17}, + [2328] = {.lex_state = 17}, + [2329] = {.lex_state = 17}, + [2330] = {.lex_state = 27}, + [2331] = {.lex_state = 17}, + [2332] = {.lex_state = 17}, + [2333] = {.lex_state = 27}, + [2334] = {.lex_state = 27}, + [2335] = {.lex_state = 17}, + [2336] = {.lex_state = 72}, [2337] = {.lex_state = 72}, - [2338] = {.lex_state = 31}, - [2339] = {.lex_state = 17}, - [2340] = {.lex_state = 27}, - [2341] = {.lex_state = 12}, - [2342] = {.lex_state = 17}, - [2343] = {.lex_state = 19}, - [2344] = {.lex_state = 5}, - [2345] = {.lex_state = 72}, - [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 17}, - [2348] = {.lex_state = 72}, - [2349] = {.lex_state = 27}, - [2350] = {.lex_state = 72}, - [2351] = {.lex_state = 17}, - [2352] = {.lex_state = 72}, - [2353] = {.lex_state = 5}, - [2354] = {.lex_state = 12}, - [2355] = {.lex_state = 72}, - [2356] = {.lex_state = 72}, - [2357] = {.lex_state = 72}, - [2358] = {.lex_state = 72}, + [2338] = {.lex_state = 72}, + [2339] = {.lex_state = 72}, + [2340] = {.lex_state = 17}, + [2341] = {.lex_state = 17}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 72}, + [2344] = {.lex_state = 17}, + [2345] = {.lex_state = 169}, + [2346] = {.lex_state = 17}, + [2347] = {.lex_state = 27}, + [2348] = {.lex_state = 27}, + [2349] = {.lex_state = 17}, + [2350] = {.lex_state = 17}, + [2351] = {.lex_state = 27}, + [2352] = {.lex_state = 27}, + [2353] = {.lex_state = 27}, + [2354] = {.lex_state = 27}, + [2355] = {.lex_state = 17}, + [2356] = {.lex_state = 17}, + [2357] = {.lex_state = 19}, + [2358] = {.lex_state = 17}, [2359] = {.lex_state = 72}, - [2360] = {.lex_state = 72}, - [2361] = {.lex_state = 31}, - [2362] = {.lex_state = 27}, + [2360] = {.lex_state = 17}, + [2361] = {.lex_state = 17}, + [2362] = {.lex_state = 31}, [2363] = {.lex_state = 27}, - [2364] = {.lex_state = 27}, - [2365] = {.lex_state = 17}, - [2366] = {.lex_state = 17}, - [2367] = {.lex_state = 17}, + [2364] = {.lex_state = 17}, + [2365] = {.lex_state = 27}, + [2366] = {.lex_state = 72}, + [2367] = {.lex_state = 72}, [2368] = {.lex_state = 72}, [2369] = {.lex_state = 72}, - [2370] = {.lex_state = 5}, - [2371] = {.lex_state = 72}, - [2372] = {.lex_state = 17}, + [2370] = {.lex_state = 17}, + [2371] = {.lex_state = 5}, + [2372] = {.lex_state = 72}, [2373] = {.lex_state = 72}, [2374] = {.lex_state = 72}, - [2375] = {.lex_state = 17}, - [2376] = {.lex_state = 17}, - [2377] = {.lex_state = 17}, - [2378] = {.lex_state = 17}, - [2379] = {.lex_state = 31}, - [2380] = {.lex_state = 31}, - [2381] = {.lex_state = 19}, - [2382] = {.lex_state = 17}, - [2383] = {.lex_state = 17}, - [2384] = {.lex_state = 19}, - [2385] = {.lex_state = 17}, - [2386] = {.lex_state = 19}, - [2387] = {.lex_state = 17}, - [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 5}, - [2390] = {.lex_state = 31}, - [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 31}, - [2393] = {.lex_state = 31}, - [2394] = {.lex_state = 19}, - [2395] = {.lex_state = 17}, + [2375] = {.lex_state = 72}, + [2376] = {.lex_state = 5}, + [2377] = {.lex_state = 12}, + [2378] = {.lex_state = 5}, + [2379] = {.lex_state = 72}, + [2380] = {.lex_state = 72}, + [2381] = {.lex_state = 31}, + [2382] = {.lex_state = 72}, + [2383] = {.lex_state = 72}, + [2384] = {.lex_state = 72}, + [2385] = {.lex_state = 72}, + [2386] = {.lex_state = 72}, + [2387] = {.lex_state = 12}, + [2388] = {.lex_state = 72}, + [2389] = {.lex_state = 72}, + [2390] = {.lex_state = 72}, + [2391] = {.lex_state = 12}, + [2392] = {.lex_state = 72}, + [2393] = {.lex_state = 17}, + [2394] = {.lex_state = 72}, + [2395] = {.lex_state = 72}, [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 31}, - [2398] = {.lex_state = 17}, + [2397] = {.lex_state = 72}, + [2398] = {.lex_state = 72}, [2399] = {.lex_state = 17}, - [2400] = {.lex_state = 17}, + [2400] = {.lex_state = 31}, [2401] = {.lex_state = 17}, [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 72}, - [2404] = {.lex_state = 5}, + [2403] = {.lex_state = 21}, + [2404] = {.lex_state = 17}, [2405] = {.lex_state = 17}, [2406] = {.lex_state = 17}, [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 27}, + [2408] = {.lex_state = 17}, [2409] = {.lex_state = 17}, [2410] = {.lex_state = 17}, - [2411] = {.lex_state = 17}, - [2412] = {.lex_state = 17}, - [2413] = {.lex_state = 17}, - [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 19}, - [2416] = {.lex_state = 17}, - [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 15}, + [2411] = {.lex_state = 5}, + [2412] = {.lex_state = 23}, + [2413] = {.lex_state = 31}, + [2414] = {.lex_state = 31}, + [2415] = {.lex_state = 17}, + [2416] = {.lex_state = 72}, + [2417] = {.lex_state = 19}, + [2418] = {.lex_state = 31}, [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 17}, - [2421] = {.lex_state = 17}, - [2422] = {.lex_state = 17}, - [2423] = {.lex_state = 21}, - [2424] = {.lex_state = 21}, - [2425] = {.lex_state = 17}, + [2420] = {.lex_state = 23}, + [2421] = {.lex_state = 31}, + [2422] = {.lex_state = 31}, + [2423] = {.lex_state = 17}, + [2424] = {.lex_state = 17}, + [2425] = {.lex_state = 31}, [2426] = {.lex_state = 17}, - [2427] = {.lex_state = 17}, + [2427] = {.lex_state = 23}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 5}, - [2430] = {.lex_state = 19}, - [2431] = {.lex_state = 17}, - [2432] = {.lex_state = 17}, - [2433] = {.lex_state = 31}, + [2429] = {.lex_state = 23}, + [2430] = {.lex_state = 17}, + [2431] = {.lex_state = 72}, + [2432] = {.lex_state = 21}, + [2433] = {.lex_state = 17}, [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 15}, - [2436] = {.lex_state = 17}, - [2437] = {.lex_state = 17}, - [2438] = {.lex_state = 21}, + [2435] = {.lex_state = 17}, + [2436] = {.lex_state = 21}, + [2437] = {.lex_state = 15}, + [2438] = {.lex_state = 31}, [2439] = {.lex_state = 17}, [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 31}, - [2442] = {.lex_state = 21}, + [2441] = {.lex_state = 23}, + [2442] = {.lex_state = 5}, [2443] = {.lex_state = 31}, - [2444] = {.lex_state = 17}, - [2445] = {.lex_state = 17}, + [2444] = {.lex_state = 31}, + [2445] = {.lex_state = 31}, [2446] = {.lex_state = 17}, [2447] = {.lex_state = 17}, - [2448] = {.lex_state = 17}, + [2448] = {.lex_state = 19}, [2449] = {.lex_state = 31}, - [2450] = {.lex_state = 17}, - [2451] = {.lex_state = 31}, - [2452] = {.lex_state = 31}, - [2453] = {.lex_state = 17}, + [2450] = {.lex_state = 21}, + [2451] = {.lex_state = 17}, + [2452] = {.lex_state = 15}, + [2453] = {.lex_state = 19}, [2454] = {.lex_state = 17}, - [2455] = {.lex_state = 17}, + [2455] = {.lex_state = 19}, [2456] = {.lex_state = 17}, - [2457] = {.lex_state = 17}, - [2458] = {.lex_state = 31}, - [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 17}, + [2457] = {.lex_state = 5}, + [2458] = {.lex_state = 17}, + [2459] = {.lex_state = 19}, + [2460] = {.lex_state = 27}, [2461] = {.lex_state = 17}, - [2462] = {.lex_state = 31}, - [2463] = {.lex_state = 5}, + [2462] = {.lex_state = 19}, + [2463] = {.lex_state = 17}, [2464] = {.lex_state = 17}, - [2465] = {.lex_state = 19}, + [2465] = {.lex_state = 21}, [2466] = {.lex_state = 17}, - [2467] = {.lex_state = 21}, + [2467] = {.lex_state = 17}, [2468] = {.lex_state = 31}, - [2469] = {.lex_state = 72}, - [2470] = {.lex_state = 31}, - [2471] = {.lex_state = 17}, - [2472] = {.lex_state = 17}, + [2469] = {.lex_state = 21}, + [2470] = {.lex_state = 19}, + [2471] = {.lex_state = 31}, + [2472] = {.lex_state = 5}, [2473] = {.lex_state = 17}, - [2474] = {.lex_state = 31}, - [2475] = {.lex_state = 21}, + [2474] = {.lex_state = 17}, + [2475] = {.lex_state = 17}, [2476] = {.lex_state = 17}, - [2477] = {.lex_state = 23}, - [2478] = {.lex_state = 31}, - [2479] = {.lex_state = 31}, - [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 17}, + [2477] = {.lex_state = 17}, + [2478] = {.lex_state = 17}, + [2479] = {.lex_state = 17}, + [2480] = {.lex_state = 31}, + [2481] = {.lex_state = 31}, [2482] = {.lex_state = 17}, - [2483] = {.lex_state = 31}, + [2483] = {.lex_state = 17}, [2484] = {.lex_state = 17}, [2485] = {.lex_state = 17}, [2486] = {.lex_state = 17}, - [2487] = {.lex_state = 23}, - [2488] = {.lex_state = 31}, - [2489] = {.lex_state = 23}, + [2487] = {.lex_state = 17}, + [2488] = {.lex_state = 17}, + [2489] = {.lex_state = 17}, [2490] = {.lex_state = 17}, - [2491] = {.lex_state = 19}, - [2492] = {.lex_state = 19}, - [2493] = {.lex_state = 19}, - [2494] = {.lex_state = 23}, - [2495] = {.lex_state = 19}, + [2491] = {.lex_state = 17}, + [2492] = {.lex_state = 17}, + [2493] = {.lex_state = 17}, + [2494] = {.lex_state = 17}, + [2495] = {.lex_state = 17}, [2496] = {.lex_state = 17}, [2497] = {.lex_state = 17}, [2498] = {.lex_state = 17}, - [2499] = {.lex_state = 23}, + [2499] = {.lex_state = 17}, [2500] = {.lex_state = 17}, - [2501] = {.lex_state = 17}, + [2501] = {.lex_state = 23}, [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 23}, - [2504] = {.lex_state = 31}, + [2503] = {.lex_state = 17}, + [2504] = {.lex_state = 17}, [2505] = {.lex_state = 31}, [2506] = {.lex_state = 17}, - [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 31}, - [2509] = {.lex_state = 31}, + [2507] = {.lex_state = 23}, + [2508] = {.lex_state = 19}, + [2509] = {.lex_state = 23}, [2510] = {.lex_state = 31}, - [2511] = {.lex_state = 5}, - [2512] = {.lex_state = 31}, + [2511] = {.lex_state = 17}, + [2512] = {.lex_state = 19}, [2513] = {.lex_state = 17}, - [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 8}, - [2516] = {.lex_state = 31}, + [2514] = {.lex_state = 31}, + [2515] = {.lex_state = 31}, + [2516] = {.lex_state = 23}, [2517] = {.lex_state = 31}, [2518] = {.lex_state = 23}, - [2519] = {.lex_state = 23}, + [2519] = {.lex_state = 31}, [2520] = {.lex_state = 31}, - [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 23}, + [2521] = {.lex_state = 17}, + [2522] = {.lex_state = 17}, [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 31}, - [2525] = {.lex_state = 31}, - [2526] = {.lex_state = 31}, - [2527] = {.lex_state = 23}, - [2528] = {.lex_state = 23}, - [2529] = {.lex_state = 23}, - [2530] = {.lex_state = 8}, + [2524] = {.lex_state = 17}, + [2525] = {.lex_state = 23}, + [2526] = {.lex_state = 23}, + [2527] = {.lex_state = 31}, + [2528] = {.lex_state = 31}, + [2529] = {.lex_state = 17}, + [2530] = {.lex_state = 23}, [2531] = {.lex_state = 23}, [2532] = {.lex_state = 23}, - [2533] = {.lex_state = 23}, + [2533] = {.lex_state = 31}, [2534] = {.lex_state = 23}, - [2535] = {.lex_state = 23}, - [2536] = {.lex_state = 23}, + [2535] = {.lex_state = 31}, + [2536] = {.lex_state = 17}, [2537] = {.lex_state = 23}, [2538] = {.lex_state = 23}, - [2539] = {.lex_state = 23}, - [2540] = {.lex_state = 23}, + [2539] = {.lex_state = 17}, + [2540] = {.lex_state = 31}, [2541] = {.lex_state = 17}, - [2542] = {.lex_state = 17}, - [2543] = {.lex_state = 8}, - [2544] = {.lex_state = 31}, - [2545] = {.lex_state = 31}, - [2546] = {.lex_state = 23, .external_lex_state = 3}, - [2547] = {.lex_state = 31}, - [2548] = {.lex_state = 31}, - [2549] = {.lex_state = 31}, + [2542] = {.lex_state = 23}, + [2543] = {.lex_state = 23}, + [2544] = {.lex_state = 23}, + [2545] = {.lex_state = 17}, + [2546] = {.lex_state = 23}, + [2547] = {.lex_state = 72}, + [2548] = {.lex_state = 8}, + [2549] = {.lex_state = 23}, [2550] = {.lex_state = 23}, - [2551] = {.lex_state = 17}, - [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 17}, - [2554] = {.lex_state = 17}, - [2555] = {.lex_state = 31}, + [2551] = {.lex_state = 31}, + [2552] = {.lex_state = 31}, + [2553] = {.lex_state = 8}, + [2554] = {.lex_state = 31}, + [2555] = {.lex_state = 17}, [2556] = {.lex_state = 17}, [2557] = {.lex_state = 17}, - [2558] = {.lex_state = 31}, + [2558] = {.lex_state = 8}, [2559] = {.lex_state = 31}, - [2560] = {.lex_state = 31}, - [2561] = {.lex_state = 19}, - [2562] = {.lex_state = 17}, - [2563] = {.lex_state = 19}, - [2564] = {.lex_state = 31}, - [2565] = {.lex_state = 17}, - [2566] = {.lex_state = 17}, - [2567] = {.lex_state = 17}, - [2568] = {.lex_state = 23}, - [2569] = {.lex_state = 23}, - [2570] = {.lex_state = 31}, + [2560] = {.lex_state = 17}, + [2561] = {.lex_state = 31}, + [2562] = {.lex_state = 5}, + [2563] = {.lex_state = 31}, + [2564] = {.lex_state = 23}, + [2565] = {.lex_state = 31}, + [2566] = {.lex_state = 31}, + [2567] = {.lex_state = 23}, + [2568] = {.lex_state = 17}, + [2569] = {.lex_state = 23, .external_lex_state = 3}, + [2570] = {.lex_state = 17}, [2571] = {.lex_state = 31}, - [2572] = {.lex_state = 5}, - [2573] = {.lex_state = 8}, - [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 72}, - [2576] = {.lex_state = 31}, + [2572] = {.lex_state = 17}, + [2573] = {.lex_state = 23}, + [2574] = {.lex_state = 19}, + [2575] = {.lex_state = 8}, + [2576] = {.lex_state = 17}, [2577] = {.lex_state = 17}, - [2578] = {.lex_state = 23}, - [2579] = {.lex_state = 17}, - [2580] = {.lex_state = 17}, - [2581] = {.lex_state = 72}, - [2582] = {.lex_state = 23}, - [2583] = {.lex_state = 8}, - [2584] = {.lex_state = 23}, - [2585] = {.lex_state = 23}, - [2586] = {.lex_state = 8}, - [2587] = {.lex_state = 23}, - [2588] = {.lex_state = 33}, - [2589] = {.lex_state = 8}, - [2590] = {.lex_state = 72}, - [2591] = {.lex_state = 72}, - [2592] = {.lex_state = 23}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 33}, - [2595] = {.lex_state = 72}, - [2596] = {.lex_state = 72}, - [2597] = {.lex_state = 23, .external_lex_state = 4}, + [2578] = {.lex_state = 31}, + [2579] = {.lex_state = 23}, + [2580] = {.lex_state = 72}, + [2581] = {.lex_state = 23}, + [2582] = {.lex_state = 31}, + [2583] = {.lex_state = 31}, + [2584] = {.lex_state = 31}, + [2585] = {.lex_state = 5}, + [2586] = {.lex_state = 23}, + [2587] = {.lex_state = 17}, + [2588] = {.lex_state = 31}, + [2589] = {.lex_state = 23}, + [2590] = {.lex_state = 23}, + [2591] = {.lex_state = 31}, + [2592] = {.lex_state = 17}, + [2593] = {.lex_state = 19}, + [2594] = {.lex_state = 23}, + [2595] = {.lex_state = 31}, + [2596] = {.lex_state = 17}, + [2597] = {.lex_state = 31}, [2598] = {.lex_state = 23}, [2599] = {.lex_state = 23}, - [2600] = {.lex_state = 23, .external_lex_state = 4}, - [2601] = {.lex_state = 23}, + [2600] = {.lex_state = 19}, + [2601] = {.lex_state = 17}, [2602] = {.lex_state = 23}, - [2603] = {.lex_state = 23}, + [2603] = {.lex_state = 17}, [2604] = {.lex_state = 17}, - [2605] = {.lex_state = 5}, - [2606] = {.lex_state = 17}, - [2607] = {.lex_state = 72}, - [2608] = {.lex_state = 8}, - [2609] = {.lex_state = 18}, - [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 23}, - [2612] = {.lex_state = 72}, - [2613] = {.lex_state = 23}, - [2614] = {.lex_state = 23}, - [2615] = {.lex_state = 8}, - [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 72}, - [2618] = {.lex_state = 23}, - [2619] = {.lex_state = 23, .external_lex_state = 4}, + [2605] = {.lex_state = 17}, + [2606] = {.lex_state = 19}, + [2607] = {.lex_state = 17}, + [2608] = {.lex_state = 31}, + [2609] = {.lex_state = 23}, + [2610] = {.lex_state = 31}, + [2611] = {.lex_state = 17}, + [2612] = {.lex_state = 8}, + [2613] = {.lex_state = 17}, + [2614] = {.lex_state = 72}, + [2615] = {.lex_state = 23}, + [2616] = {.lex_state = 17}, + [2617] = {.lex_state = 18}, + [2618] = {.lex_state = 8}, + [2619] = {.lex_state = 8}, [2620] = {.lex_state = 72}, - [2621] = {.lex_state = 8}, - [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 8}, + [2621] = {.lex_state = 72}, + [2622] = {.lex_state = 72}, + [2623] = {.lex_state = 17}, [2624] = {.lex_state = 72}, - [2625] = {.lex_state = 72}, - [2626] = {.lex_state = 8}, - [2627] = {.lex_state = 8}, - [2628] = {.lex_state = 72}, - [2629] = {.lex_state = 8}, - [2630] = {.lex_state = 5}, - [2631] = {.lex_state = 8}, - [2632] = {.lex_state = 8}, - [2633] = {.lex_state = 8}, - [2634] = {.lex_state = 23}, + [2625] = {.lex_state = 23}, + [2626] = {.lex_state = 17}, + [2627] = {.lex_state = 17}, + [2628] = {.lex_state = 17}, + [2629] = {.lex_state = 72}, + [2630] = {.lex_state = 17}, + [2631] = {.lex_state = 17}, + [2632] = {.lex_state = 17}, + [2633] = {.lex_state = 23}, + [2634] = {.lex_state = 8}, [2635] = {.lex_state = 17}, - [2636] = {.lex_state = 8}, - [2637] = {.lex_state = 17}, - [2638] = {.lex_state = 23}, - [2639] = {.lex_state = 17}, - [2640] = {.lex_state = 8}, - [2641] = {.lex_state = 23}, - [2642] = {.lex_state = 72}, - [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 8}, - [2645] = {.lex_state = 8}, - [2646] = {.lex_state = 8}, - [2647] = {.lex_state = 31}, - [2648] = {.lex_state = 72}, - [2649] = {.lex_state = 72}, + [2636] = {.lex_state = 23}, + [2637] = {.lex_state = 8}, + [2638] = {.lex_state = 8}, + [2639] = {.lex_state = 23}, + [2640] = {.lex_state = 17}, + [2641] = {.lex_state = 17}, + [2642] = {.lex_state = 8}, + [2643] = {.lex_state = 8}, + [2644] = {.lex_state = 17}, + [2645] = {.lex_state = 23}, + [2646] = {.lex_state = 17}, + [2647] = {.lex_state = 17}, + [2648] = {.lex_state = 17}, + [2649] = {.lex_state = 17}, [2650] = {.lex_state = 17}, [2651] = {.lex_state = 72}, - [2652] = {.lex_state = 31}, + [2652] = {.lex_state = 17}, [2653] = {.lex_state = 17}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 17}, + [2654] = {.lex_state = 17}, + [2655] = {.lex_state = 23}, [2656] = {.lex_state = 17}, [2657] = {.lex_state = 17}, [2658] = {.lex_state = 31}, [2659] = {.lex_state = 17}, - [2660] = {.lex_state = 17}, - [2661] = {.lex_state = 17}, - [2662] = {.lex_state = 17}, - [2663] = {.lex_state = 23}, - [2664] = {.lex_state = 17}, - [2665] = {.lex_state = 17}, - [2666] = {.lex_state = 72}, + [2660] = {.lex_state = 23}, + [2661] = {.lex_state = 5}, + [2662] = {.lex_state = 23}, + [2663] = {.lex_state = 17}, + [2664] = {.lex_state = 23}, + [2665] = {.lex_state = 8}, + [2666] = {.lex_state = 17}, [2667] = {.lex_state = 17}, [2668] = {.lex_state = 17}, - [2669] = {.lex_state = 72}, - [2670] = {.lex_state = 17}, - [2671] = {.lex_state = 17}, + [2669] = {.lex_state = 17}, + [2670] = {.lex_state = 72}, + [2671] = {.lex_state = 8}, [2672] = {.lex_state = 17}, - [2673] = {.lex_state = 17}, + [2673] = {.lex_state = 23}, [2674] = {.lex_state = 17}, - [2675] = {.lex_state = 17}, - [2676] = {.lex_state = 17}, - [2677] = {.lex_state = 33}, - [2678] = {.lex_state = 17}, - [2679] = {.lex_state = 72}, - [2680] = {.lex_state = 17}, - [2681] = {.lex_state = 17}, - [2682] = {.lex_state = 19}, - [2683] = {.lex_state = 17}, - [2684] = {.lex_state = 19}, - [2685] = {.lex_state = 19}, - [2686] = {.lex_state = 19}, - [2687] = {.lex_state = 17}, - [2688] = {.lex_state = 17}, - [2689] = {.lex_state = 17}, + [2675] = {.lex_state = 72}, + [2676] = {.lex_state = 23}, + [2677] = {.lex_state = 72}, + [2678] = {.lex_state = 23}, + [2679] = {.lex_state = 23}, + [2680] = {.lex_state = 23, .external_lex_state = 4}, + [2681] = {.lex_state = 23}, + [2682] = {.lex_state = 17}, + [2683] = {.lex_state = 23}, + [2684] = {.lex_state = 18}, + [2685] = {.lex_state = 23, .external_lex_state = 4}, + [2686] = {.lex_state = 23}, + [2687] = {.lex_state = 72}, + [2688] = {.lex_state = 72}, + [2689] = {.lex_state = 23}, [2690] = {.lex_state = 23}, [2691] = {.lex_state = 17}, - [2692] = {.lex_state = 17}, - [2693] = {.lex_state = 17}, - [2694] = {.lex_state = 17}, - [2695] = {.lex_state = 31}, - [2696] = {.lex_state = 17}, - [2697] = {.lex_state = 72}, + [2692] = {.lex_state = 31}, + [2693] = {.lex_state = 23}, + [2694] = {.lex_state = 23, .external_lex_state = 4}, + [2695] = {.lex_state = 72}, + [2696] = {.lex_state = 8}, + [2697] = {.lex_state = 8}, [2698] = {.lex_state = 8}, - [2699] = {.lex_state = 72}, - [2700] = {.lex_state = 8}, + [2699] = {.lex_state = 8}, + [2700] = {.lex_state = 72}, [2701] = {.lex_state = 23}, - [2702] = {.lex_state = 23}, - [2703] = {.lex_state = 23, .external_lex_state = 4}, - [2704] = {.lex_state = 72}, + [2702] = {.lex_state = 8}, + [2703] = {.lex_state = 8}, + [2704] = {.lex_state = 8}, [2705] = {.lex_state = 23}, [2706] = {.lex_state = 23}, - [2707] = {.lex_state = 18}, + [2707] = {.lex_state = 72}, [2708] = {.lex_state = 72}, - [2709] = {.lex_state = 23}, - [2710] = {.lex_state = 31}, + [2709] = {.lex_state = 17}, + [2710] = {.lex_state = 23}, [2711] = {.lex_state = 72}, - [2712] = {.lex_state = 23}, + [2712] = {.lex_state = 72}, [2713] = {.lex_state = 23}, - [2714] = {.lex_state = 23}, - [2715] = {.lex_state = 23, .external_lex_state = 4}, - [2716] = {.lex_state = 72}, - [2717] = {.lex_state = 8}, - [2718] = {.lex_state = 8}, - [2719] = {.lex_state = 31}, - [2720] = {.lex_state = 8}, - [2721] = {.lex_state = 8}, - [2722] = {.lex_state = 72}, - [2723] = {.lex_state = 17}, - [2724] = {.lex_state = 8}, - [2725] = {.lex_state = 8}, - [2726] = {.lex_state = 8}, - [2727] = {.lex_state = 23}, - [2728] = {.lex_state = 23}, - [2729] = {.lex_state = 23}, - [2730] = {.lex_state = 72}, - [2731] = {.lex_state = 23, .external_lex_state = 4}, - [2732] = {.lex_state = 17}, - [2733] = {.lex_state = 23}, - [2734] = {.lex_state = 33}, - [2735] = {.lex_state = 72}, - [2736] = {.lex_state = 17}, - [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 72}, - [2739] = {.lex_state = 17}, - [2740] = {.lex_state = 17}, + [2714] = {.lex_state = 72}, + [2715] = {.lex_state = 72}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 17}, + [2718] = {.lex_state = 33}, + [2719] = {.lex_state = 17}, + [2720] = {.lex_state = 17}, + [2721] = {.lex_state = 17}, + [2722] = {.lex_state = 23}, + [2723] = {.lex_state = 23}, + [2724] = {.lex_state = 23, .external_lex_state = 4}, + [2725] = {.lex_state = 17}, + [2726] = {.lex_state = 23}, + [2727] = {.lex_state = 17}, + [2728] = {.lex_state = 17}, + [2729] = {.lex_state = 72}, + [2730] = {.lex_state = 23}, + [2731] = {.lex_state = 23}, + [2732] = {.lex_state = 23}, + [2733] = {.lex_state = 23, .external_lex_state = 4}, + [2734] = {.lex_state = 72}, + [2735] = {.lex_state = 31}, + [2736] = {.lex_state = 8}, + [2737] = {.lex_state = 8}, + [2738] = {.lex_state = 8}, + [2739] = {.lex_state = 8}, + [2740] = {.lex_state = 8}, [2741] = {.lex_state = 23}, - [2742] = {.lex_state = 23}, - [2743] = {.lex_state = 23, .external_lex_state = 4}, + [2742] = {.lex_state = 17}, + [2743] = {.lex_state = 17}, [2744] = {.lex_state = 23}, - [2745] = {.lex_state = 23}, - [2746] = {.lex_state = 72}, - [2747] = {.lex_state = 23}, + [2745] = {.lex_state = 17}, + [2746] = {.lex_state = 23, .external_lex_state = 4}, + [2747] = {.lex_state = 17}, [2748] = {.lex_state = 23}, - [2749] = {.lex_state = 23}, - [2750] = {.lex_state = 23, .external_lex_state = 4}, + [2749] = {.lex_state = 17}, + [2750] = {.lex_state = 8}, [2751] = {.lex_state = 72}, - [2752] = {.lex_state = 8}, - [2753] = {.lex_state = 8}, + [2752] = {.lex_state = 23, .external_lex_state = 4}, + [2753] = {.lex_state = 72}, [2754] = {.lex_state = 8}, [2755] = {.lex_state = 8}, - [2756] = {.lex_state = 23}, - [2757] = {.lex_state = 72}, + [2756] = {.lex_state = 8}, + [2757] = {.lex_state = 8}, [2758] = {.lex_state = 23}, - [2759] = {.lex_state = 23, .external_lex_state = 4}, - [2760] = {.lex_state = 23}, - [2761] = {.lex_state = 23}, - [2762] = {.lex_state = 72}, - [2763] = {.lex_state = 23, .external_lex_state = 4}, - [2764] = {.lex_state = 72}, - [2765] = {.lex_state = 8}, - [2766] = {.lex_state = 8}, + [2759] = {.lex_state = 72}, + [2760] = {.lex_state = 19}, + [2761] = {.lex_state = 72}, + [2762] = {.lex_state = 23, .external_lex_state = 4}, + [2763] = {.lex_state = 31}, + [2764] = {.lex_state = 19}, + [2765] = {.lex_state = 23, .external_lex_state = 4}, + [2766] = {.lex_state = 19}, [2767] = {.lex_state = 8}, [2768] = {.lex_state = 8}, - [2769] = {.lex_state = 72}, - [2770] = {.lex_state = 23, .external_lex_state = 4}, - [2771] = {.lex_state = 23, .external_lex_state = 4}, - [2772] = {.lex_state = 8}, - [2773] = {.lex_state = 8}, - [2774] = {.lex_state = 72}, - [2775] = {.lex_state = 31}, - [2776] = {.lex_state = 8}, - [2777] = {.lex_state = 72}, - [2778] = {.lex_state = 23}, + [2769] = {.lex_state = 33}, + [2770] = {.lex_state = 8}, + [2771] = {.lex_state = 72}, + [2772] = {.lex_state = 17}, + [2773] = {.lex_state = 72}, + [2774] = {.lex_state = 8}, + [2775] = {.lex_state = 8}, + [2776] = {.lex_state = 17}, + [2777] = {.lex_state = 31}, + [2778] = {.lex_state = 19}, [2779] = {.lex_state = 23, .external_lex_state = 4}, - [2780] = {.lex_state = 8}, - [2781] = {.lex_state = 8}, - [2782] = {.lex_state = 17}, - [2783] = {.lex_state = 18}, - [2784] = {.lex_state = 23}, - [2785] = {.lex_state = 5}, - [2786] = {.lex_state = 72}, - [2787] = {.lex_state = 72}, - [2788] = {.lex_state = 17}, - [2789] = {.lex_state = 17}, - [2790] = {.lex_state = 72}, - [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 23}, - [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 19}, - [2795] = {.lex_state = 23}, - [2796] = {.lex_state = 19}, - [2797] = {.lex_state = 19}, + [2780] = {.lex_state = 72}, + [2781] = {.lex_state = 5}, + [2782] = {.lex_state = 23}, + [2783] = {.lex_state = 23}, + [2784] = {.lex_state = 72}, + [2785] = {.lex_state = 23, .external_lex_state = 4}, + [2786] = {.lex_state = 17}, + [2787] = {.lex_state = 17}, + [2788] = {.lex_state = 23}, + [2789] = {.lex_state = 23}, + [2790] = {.lex_state = 17}, + [2791] = {.lex_state = 23}, + [2792] = {.lex_state = 17}, + [2793] = {.lex_state = 31}, + [2794] = {.lex_state = 17}, + [2795] = {.lex_state = 17}, + [2796] = {.lex_state = 72}, + [2797] = {.lex_state = 23}, [2798] = {.lex_state = 31}, - [2799] = {.lex_state = 72}, - [2800] = {.lex_state = 23}, - [2801] = {.lex_state = 19}, + [2799] = {.lex_state = 31}, + [2800] = {.lex_state = 5}, + [2801] = {.lex_state = 72}, [2802] = {.lex_state = 72}, [2803] = {.lex_state = 8}, - [2804] = {.lex_state = 8}, - [2805] = {.lex_state = 19}, - [2806] = {.lex_state = 17}, - [2807] = {.lex_state = 23}, - [2808] = {.lex_state = 17}, - [2809] = {.lex_state = 19}, - [2810] = {.lex_state = 19}, - [2811] = {.lex_state = 19}, - [2812] = {.lex_state = 72}, + [2804] = {.lex_state = 18}, + [2805] = {.lex_state = 8}, + [2806] = {.lex_state = 8}, + [2807] = {.lex_state = 72}, + [2808] = {.lex_state = 72}, + [2809] = {.lex_state = 17}, + [2810] = {.lex_state = 33}, + [2811] = {.lex_state = 23}, + [2812] = {.lex_state = 23}, [2813] = {.lex_state = 72}, - [2814] = {.lex_state = 23}, - [2815] = {.lex_state = 23}, - [2816] = {.lex_state = 31}, + [2814] = {.lex_state = 31}, + [2815] = {.lex_state = 17}, + [2816] = {.lex_state = 17}, [2817] = {.lex_state = 23}, - [2818] = {.lex_state = 23}, - [2819] = {.lex_state = 23}, - [2820] = {.lex_state = 23}, + [2818] = {.lex_state = 72}, + [2819] = {.lex_state = 19}, + [2820] = {.lex_state = 72}, [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 18}, - [2823] = {.lex_state = 18}, - [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 5}, - [2826] = {.lex_state = 17}, - [2827] = {.lex_state = 23}, - [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 5}, - [2830] = {.lex_state = 17}, - [2831] = {.lex_state = 17}, - [2832] = {.lex_state = 17}, - [2833] = {.lex_state = 31}, - [2834] = {.lex_state = 8}, - [2835] = {.lex_state = 17}, - [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 8}, - [2838] = {.lex_state = 31}, - [2839] = {.lex_state = 8}, - [2840] = {.lex_state = 17}, - [2841] = {.lex_state = 17}, - [2842] = {.lex_state = 23}, + [2822] = {.lex_state = 19}, + [2823] = {.lex_state = 23}, + [2824] = {.lex_state = 23}, + [2825] = {.lex_state = 23, .external_lex_state = 4}, + [2826] = {.lex_state = 72}, + [2827] = {.lex_state = 8}, + [2828] = {.lex_state = 33}, + [2829] = {.lex_state = 8}, + [2830] = {.lex_state = 23}, + [2831] = {.lex_state = 23}, + [2832] = {.lex_state = 31}, + [2833] = {.lex_state = 19}, + [2834] = {.lex_state = 19}, + [2835] = {.lex_state = 23}, + [2836] = {.lex_state = 23}, + [2837] = {.lex_state = 72}, + [2838] = {.lex_state = 18}, + [2839] = {.lex_state = 72}, + [2840] = {.lex_state = 18}, + [2841] = {.lex_state = 8}, + [2842] = {.lex_state = 31}, [2843] = {.lex_state = 8}, - [2844] = {.lex_state = 72}, - [2845] = {.lex_state = 17}, + [2844] = {.lex_state = 5}, + [2845] = {.lex_state = 8}, [2846] = {.lex_state = 72}, - [2847] = {.lex_state = 72}, + [2847] = {.lex_state = 17}, [2848] = {.lex_state = 72}, - [2849] = {.lex_state = 72}, - [2850] = {.lex_state = 72}, - [2851] = {.lex_state = 72}, - [2852] = {.lex_state = 19}, - [2853] = {.lex_state = 72}, - [2854] = {.lex_state = 72}, - [2855] = {.lex_state = 72}, - [2856] = {.lex_state = 72}, - [2857] = {.lex_state = 72}, - [2858] = {.lex_state = 19}, - [2859] = {.lex_state = 72}, - [2860] = {.lex_state = 19}, - [2861] = {.lex_state = 72}, - [2862] = {.lex_state = 72}, - [2863] = {.lex_state = 72}, - [2864] = {.lex_state = 72}, - [2865] = {.lex_state = 72}, - [2866] = {.lex_state = 72}, - [2867] = {.lex_state = 8}, - [2868] = {.lex_state = 72}, - [2869] = {.lex_state = 19}, - [2870] = {.lex_state = 19}, - [2871] = {.lex_state = 72}, + [2849] = {.lex_state = 5}, + [2850] = {.lex_state = 17}, + [2851] = {.lex_state = 8}, + [2852] = {.lex_state = 17}, + [2853] = {.lex_state = 8}, + [2854] = {.lex_state = 8}, + [2855] = {.lex_state = 23, .external_lex_state = 4}, + [2856] = {.lex_state = 17}, + [2857] = {.lex_state = 19}, + [2858] = {.lex_state = 8}, + [2859] = {.lex_state = 19}, + [2860] = {.lex_state = 23}, + [2861] = {.lex_state = 17}, + [2862] = {.lex_state = 19}, + [2863] = {.lex_state = 8}, + [2864] = {.lex_state = 8}, + [2865] = {.lex_state = 19}, + [2866] = {.lex_state = 17}, + [2867] = {.lex_state = 23}, + [2868] = {.lex_state = 17}, + [2869] = {.lex_state = 8}, + [2870] = {.lex_state = 17}, + [2871] = {.lex_state = 8}, [2872] = {.lex_state = 72}, - [2873] = {.lex_state = 19}, + [2873] = {.lex_state = 8}, [2874] = {.lex_state = 72}, - [2875] = {.lex_state = 19}, - [2876] = {.lex_state = 72}, + [2875] = {.lex_state = 72}, + [2876] = {.lex_state = 8}, [2877] = {.lex_state = 72}, - [2878] = {.lex_state = 72}, - [2879] = {.lex_state = 17}, + [2878] = {.lex_state = 17}, + [2879] = {.lex_state = 72}, [2880] = {.lex_state = 72}, - [2881] = {.lex_state = 17}, + [2881] = {.lex_state = 72}, [2882] = {.lex_state = 72}, - [2883] = {.lex_state = 23, .external_lex_state = 4}, + [2883] = {.lex_state = 19}, [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 17}, - [2886] = {.lex_state = 31}, + [2885] = {.lex_state = 72}, + [2886] = {.lex_state = 72}, [2887] = {.lex_state = 72}, [2888] = {.lex_state = 72}, [2889] = {.lex_state = 72}, - [2890] = {.lex_state = 17}, - [2891] = {.lex_state = 17}, + [2890] = {.lex_state = 72}, + [2891] = {.lex_state = 72}, [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 21}, + [2893] = {.lex_state = 8}, [2894] = {.lex_state = 72}, - [2895] = {.lex_state = 21}, + [2895] = {.lex_state = 72}, [2896] = {.lex_state = 72}, [2897] = {.lex_state = 72}, [2898] = {.lex_state = 72}, @@ -13291,886 +13336,922 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2902] = {.lex_state = 72}, [2903] = {.lex_state = 72}, [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 17}, + [2905] = {.lex_state = 72}, [2906] = {.lex_state = 72}, [2907] = {.lex_state = 72}, [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 17}, + [2909] = {.lex_state = 23}, [2910] = {.lex_state = 72}, [2911] = {.lex_state = 72}, - [2912] = {.lex_state = 72}, + [2912] = {.lex_state = 19}, [2913] = {.lex_state = 72}, - [2914] = {.lex_state = 72}, + [2914] = {.lex_state = 17}, [2915] = {.lex_state = 72}, [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 21}, + [2917] = {.lex_state = 31}, [2918] = {.lex_state = 72}, [2919] = {.lex_state = 72}, [2920] = {.lex_state = 72}, - [2921] = {.lex_state = 72}, + [2921] = {.lex_state = 8}, [2922] = {.lex_state = 72}, [2923] = {.lex_state = 72}, - [2924] = {.lex_state = 72}, + [2924] = {.lex_state = 19}, [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 17}, + [2926] = {.lex_state = 72}, [2927] = {.lex_state = 72}, - [2928] = {.lex_state = 31}, + [2928] = {.lex_state = 72}, [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 17}, + [2930] = {.lex_state = 19}, [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 19}, - [2933] = {.lex_state = 19}, + [2932] = {.lex_state = 72}, + [2933] = {.lex_state = 72}, [2934] = {.lex_state = 17}, [2935] = {.lex_state = 72}, [2936] = {.lex_state = 17}, - [2937] = {.lex_state = 19}, + [2937] = {.lex_state = 17}, [2938] = {.lex_state = 72}, - [2939] = {.lex_state = 72}, + [2939] = {.lex_state = 19}, [2940] = {.lex_state = 72}, [2941] = {.lex_state = 72}, [2942] = {.lex_state = 72}, [2943] = {.lex_state = 72}, - [2944] = {.lex_state = 19}, + [2944] = {.lex_state = 72}, [2945] = {.lex_state = 72}, - [2946] = {.lex_state = 19}, - [2947] = {.lex_state = 8}, - [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 72}, + [2946] = {.lex_state = 17}, + [2947] = {.lex_state = 72}, + [2948] = {.lex_state = 17}, + [2949] = {.lex_state = 21}, [2950] = {.lex_state = 19}, - [2951] = {.lex_state = 72}, + [2951] = {.lex_state = 19}, [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 17}, - [2954] = {.lex_state = 72}, - [2955] = {.lex_state = 19}, + [2953] = {.lex_state = 72}, + [2954] = {.lex_state = 19}, + [2955] = {.lex_state = 72}, [2956] = {.lex_state = 72}, - [2957] = {.lex_state = 72}, - [2958] = {.lex_state = 72}, - [2959] = {.lex_state = 72}, + [2957] = {.lex_state = 19}, + [2958] = {.lex_state = 17}, + [2959] = {.lex_state = 19}, [2960] = {.lex_state = 72}, - [2961] = {.lex_state = 72}, + [2961] = {.lex_state = 21}, [2962] = {.lex_state = 72}, [2963] = {.lex_state = 72}, - [2964] = {.lex_state = 72}, + [2964] = {.lex_state = 19}, [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, [2967] = {.lex_state = 72}, [2968] = {.lex_state = 72}, - [2969] = {.lex_state = 72}, + [2969] = {.lex_state = 23, .external_lex_state = 4}, [2970] = {.lex_state = 72}, [2971] = {.lex_state = 72}, [2972] = {.lex_state = 72}, [2973] = {.lex_state = 72}, - [2974] = {.lex_state = 17}, - [2975] = {.lex_state = 72}, + [2974] = {.lex_state = 72}, + [2975] = {.lex_state = 17}, [2976] = {.lex_state = 72}, [2977] = {.lex_state = 72}, - [2978] = {.lex_state = 8}, + [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, [2980] = {.lex_state = 72}, [2981] = {.lex_state = 19}, - [2982] = {.lex_state = 72}, - [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 72}, - [2985] = {.lex_state = 72}, + [2982] = {.lex_state = 17}, + [2983] = {.lex_state = 17}, + [2984] = {.lex_state = 17}, + [2985] = {.lex_state = 21}, [2986] = {.lex_state = 72}, [2987] = {.lex_state = 72}, - [2988] = {.lex_state = 8}, - [2989] = {.lex_state = 72}, - [2990] = {.lex_state = 19}, + [2988] = {.lex_state = 72}, + [2989] = {.lex_state = 17}, + [2990] = {.lex_state = 72}, [2991] = {.lex_state = 72}, [2992] = {.lex_state = 72}, - [2993] = {.lex_state = 72}, + [2993] = {.lex_state = 19}, [2994] = {.lex_state = 72}, [2995] = {.lex_state = 72}, - [2996] = {.lex_state = 72}, + [2996] = {.lex_state = 19}, [2997] = {.lex_state = 72}, [2998] = {.lex_state = 72}, [2999] = {.lex_state = 72}, - [3000] = {.lex_state = 17}, - [3001] = {.lex_state = 17}, + [3000] = {.lex_state = 8}, + [3001] = {.lex_state = 72}, [3002] = {.lex_state = 72}, - [3003] = {.lex_state = 72}, + [3003] = {.lex_state = 19}, [3004] = {.lex_state = 72}, [3005] = {.lex_state = 72}, [3006] = {.lex_state = 72}, - [3007] = {.lex_state = 72}, - [3008] = {.lex_state = 72}, + [3007] = {.lex_state = 19}, + [3008] = {.lex_state = 23}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 17}, - [3011] = {.lex_state = 72}, - [3012] = {.lex_state = 19}, - [3013] = {.lex_state = 8}, + [3010] = {.lex_state = 19}, + [3011] = {.lex_state = 19}, + [3012] = {.lex_state = 72}, + [3013] = {.lex_state = 72}, [3014] = {.lex_state = 72}, [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 17}, + [3016] = {.lex_state = 72}, [3017] = {.lex_state = 72}, [3018] = {.lex_state = 72}, - [3019] = {.lex_state = 72}, + [3019] = {.lex_state = 17}, [3020] = {.lex_state = 72}, - [3021] = {.lex_state = 8}, - [3022] = {.lex_state = 17}, - [3023] = {.lex_state = 72}, - [3024] = {.lex_state = 72}, + [3021] = {.lex_state = 23}, + [3022] = {.lex_state = 19}, + [3023] = {.lex_state = 19}, + [3024] = {.lex_state = 19}, [3025] = {.lex_state = 72}, - [3026] = {.lex_state = 72}, + [3026] = {.lex_state = 19}, [3027] = {.lex_state = 72}, [3028] = {.lex_state = 72}, - [3029] = {.lex_state = 23}, - [3030] = {.lex_state = 72}, - [3031] = {.lex_state = 72}, - [3032] = {.lex_state = 17}, + [3029] = {.lex_state = 72}, + [3030] = {.lex_state = 19}, + [3031] = {.lex_state = 17}, + [3032] = {.lex_state = 72}, [3033] = {.lex_state = 72}, [3034] = {.lex_state = 72}, - [3035] = {.lex_state = 19}, - [3036] = {.lex_state = 72}, - [3037] = {.lex_state = 19}, - [3038] = {.lex_state = 17}, + [3035] = {.lex_state = 72}, + [3036] = {.lex_state = 19}, + [3037] = {.lex_state = 72}, + [3038] = {.lex_state = 72}, [3039] = {.lex_state = 72}, [3040] = {.lex_state = 72}, - [3041] = {.lex_state = 72}, + [3041] = {.lex_state = 19}, [3042] = {.lex_state = 72}, [3043] = {.lex_state = 72}, - [3044] = {.lex_state = 72}, - [3045] = {.lex_state = 8}, + [3044] = {.lex_state = 19}, + [3045] = {.lex_state = 72}, [3046] = {.lex_state = 19}, - [3047] = {.lex_state = 19}, + [3047] = {.lex_state = 72}, [3048] = {.lex_state = 72}, [3049] = {.lex_state = 72}, [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, - [3052] = {.lex_state = 8}, + [3052] = {.lex_state = 72}, [3053] = {.lex_state = 72}, [3054] = {.lex_state = 72}, - [3055] = {.lex_state = 21}, - [3056] = {.lex_state = 72}, + [3055] = {.lex_state = 72}, + [3056] = {.lex_state = 8}, [3057] = {.lex_state = 72}, [3058] = {.lex_state = 72}, - [3059] = {.lex_state = 21}, + [3059] = {.lex_state = 19}, [3060] = {.lex_state = 72}, [3061] = {.lex_state = 72}, [3062] = {.lex_state = 72}, [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 8}, - [3065] = {.lex_state = 19}, - [3066] = {.lex_state = 72}, + [3064] = {.lex_state = 17}, + [3065] = {.lex_state = 72}, + [3066] = {.lex_state = 19}, [3067] = {.lex_state = 72}, [3068] = {.lex_state = 72}, - [3069] = {.lex_state = 72}, + [3069] = {.lex_state = 19}, [3070] = {.lex_state = 72}, [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 23}, - [3073] = {.lex_state = 23}, + [3072] = {.lex_state = 72}, + [3073] = {.lex_state = 72}, [3074] = {.lex_state = 72}, [3075] = {.lex_state = 72}, - [3076] = {.lex_state = 19}, - [3077] = {.lex_state = 19}, - [3078] = {.lex_state = 72}, + [3076] = {.lex_state = 72}, + [3077] = {.lex_state = 21}, + [3078] = {.lex_state = 17}, [3079] = {.lex_state = 72}, - [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 17}, + [3080] = {.lex_state = 17}, + [3081] = {.lex_state = 72}, [3082] = {.lex_state = 72}, [3083] = {.lex_state = 72}, [3084] = {.lex_state = 72}, - [3085] = {.lex_state = 17}, - [3086] = {.lex_state = 19}, - [3087] = {.lex_state = 72}, + [3085] = {.lex_state = 72}, + [3086] = {.lex_state = 72}, + [3087] = {.lex_state = 17}, [3088] = {.lex_state = 72}, - [3089] = {.lex_state = 19}, - [3090] = {.lex_state = 23}, + [3089] = {.lex_state = 72}, + [3090] = {.lex_state = 72}, [3091] = {.lex_state = 72}, [3092] = {.lex_state = 19}, - [3093] = {.lex_state = 19}, - [3094] = {.lex_state = 19}, + [3093] = {.lex_state = 17}, + [3094] = {.lex_state = 72}, [3095] = {.lex_state = 72}, [3096] = {.lex_state = 72}, - [3097] = {.lex_state = 17}, - [3098] = {.lex_state = 72}, + [3097] = {.lex_state = 72}, + [3098] = {.lex_state = 17}, [3099] = {.lex_state = 72}, - [3100] = {.lex_state = 19}, + [3100] = {.lex_state = 72}, [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 19}, - [3103] = {.lex_state = 19}, + [3102] = {.lex_state = 17}, + [3103] = {.lex_state = 8}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, [3106] = {.lex_state = 72}, - [3107] = {.lex_state = 19}, - [3108] = {.lex_state = 19}, + [3107] = {.lex_state = 72}, + [3108] = {.lex_state = 72}, [3109] = {.lex_state = 72}, - [3110] = {.lex_state = 72}, + [3110] = {.lex_state = 21}, [3111] = {.lex_state = 72}, [3112] = {.lex_state = 72}, [3113] = {.lex_state = 72}, - [3114] = {.lex_state = 72}, - [3115] = {.lex_state = 19}, - [3116] = {.lex_state = 72}, - [3117] = {.lex_state = 72}, - [3118] = {.lex_state = 72}, + [3114] = {.lex_state = 17}, + [3115] = {.lex_state = 72}, + [3116] = {.lex_state = 8}, + [3117] = {.lex_state = 19}, + [3118] = {.lex_state = 31}, [3119] = {.lex_state = 72}, [3120] = {.lex_state = 72}, [3121] = {.lex_state = 72}, - [3122] = {.lex_state = 17}, - [3123] = {.lex_state = 8}, + [3122] = {.lex_state = 72}, + [3123] = {.lex_state = 19}, [3124] = {.lex_state = 72}, - [3125] = {.lex_state = 17}, - [3126] = {.lex_state = 72}, + [3125] = {.lex_state = 72}, + [3126] = {.lex_state = 19}, [3127] = {.lex_state = 72}, - [3128] = {.lex_state = 72}, + [3128] = {.lex_state = 8}, [3129] = {.lex_state = 72}, [3130] = {.lex_state = 72}, [3131] = {.lex_state = 72}, - [3132] = {.lex_state = 19}, + [3132] = {.lex_state = 17}, [3133] = {.lex_state = 72}, [3134] = {.lex_state = 72}, [3135] = {.lex_state = 72}, - [3136] = {.lex_state = 72}, + [3136] = {.lex_state = 17}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, [3139] = {.lex_state = 72}, [3140] = {.lex_state = 19}, [3141] = {.lex_state = 72}, - [3142] = {.lex_state = 72}, + [3142] = {.lex_state = 19}, [3143] = {.lex_state = 72}, - [3144] = {.lex_state = 8}, + [3144] = {.lex_state = 72}, [3145] = {.lex_state = 72}, [3146] = {.lex_state = 72}, - [3147] = {.lex_state = 8}, - [3148] = {.lex_state = 8}, + [3147] = {.lex_state = 72}, + [3148] = {.lex_state = 72}, [3149] = {.lex_state = 72}, - [3150] = {.lex_state = 17}, - [3151] = {.lex_state = 8}, - [3152] = {.lex_state = 72}, - [3153] = {.lex_state = 17}, - [3154] = {.lex_state = 72}, - [3155] = {.lex_state = 17}, - [3156] = {.lex_state = 72}, - [3157] = {.lex_state = 17}, - [3158] = {.lex_state = 72}, + [3150] = {.lex_state = 72}, + [3151] = {.lex_state = 72}, + [3152] = {.lex_state = 17}, + [3153] = {.lex_state = 72}, + [3154] = {.lex_state = 8}, + [3155] = {.lex_state = 72}, + [3156] = {.lex_state = 17}, + [3157] = {.lex_state = 72}, + [3158] = {.lex_state = 8}, [3159] = {.lex_state = 72}, - [3160] = {.lex_state = 72}, - [3161] = {.lex_state = 17}, - [3162] = {.lex_state = 7}, - [3163] = {.lex_state = 72}, - [3164] = {.lex_state = 72}, - [3165] = {.lex_state = 7}, + [3160] = {.lex_state = 8}, + [3161] = {.lex_state = 72}, + [3162] = {.lex_state = 8}, + [3163] = {.lex_state = 19}, + [3164] = {.lex_state = 17}, + [3165] = {.lex_state = 72}, [3166] = {.lex_state = 72}, [3167] = {.lex_state = 72}, [3168] = {.lex_state = 72}, - [3169] = {.lex_state = 17}, - [3170] = {.lex_state = 17}, - [3171] = {.lex_state = 17}, - [3172] = {.lex_state = 17}, - [3173] = {.lex_state = 17}, + [3169] = {.lex_state = 8}, + [3170] = {.lex_state = 72}, + [3171] = {.lex_state = 72}, + [3172] = {.lex_state = 72}, + [3173] = {.lex_state = 72}, [3174] = {.lex_state = 17}, - [3175] = {.lex_state = 17}, + [3175] = {.lex_state = 72}, [3176] = {.lex_state = 72}, [3177] = {.lex_state = 72}, [3178] = {.lex_state = 72}, - [3179] = {.lex_state = 72}, + [3179] = {.lex_state = 8}, [3180] = {.lex_state = 72}, [3181] = {.lex_state = 72}, - [3182] = {.lex_state = 17}, + [3182] = {.lex_state = 72}, [3183] = {.lex_state = 72}, - [3184] = {.lex_state = 17}, - [3185] = {.lex_state = 17}, - [3186] = {.lex_state = 72}, + [3184] = {.lex_state = 72}, + [3185] = {.lex_state = 72}, + [3186] = {.lex_state = 23}, [3187] = {.lex_state = 72}, [3188] = {.lex_state = 72}, [3189] = {.lex_state = 72}, [3190] = {.lex_state = 72}, - [3191] = {.lex_state = 17}, - [3192] = {.lex_state = 72}, + [3191] = {.lex_state = 72}, + [3192] = {.lex_state = 17}, [3193] = {.lex_state = 72}, - [3194] = {.lex_state = 23}, + [3194] = {.lex_state = 72}, [3195] = {.lex_state = 72}, [3196] = {.lex_state = 17}, - [3197] = {.lex_state = 72}, - [3198] = {.lex_state = 72}, + [3197] = {.lex_state = 17}, + [3198] = {.lex_state = 17}, [3199] = {.lex_state = 17}, [3200] = {.lex_state = 72}, [3201] = {.lex_state = 17}, - [3202] = {.lex_state = 72}, + [3202] = {.lex_state = 17}, [3203] = {.lex_state = 72}, [3204] = {.lex_state = 72}, - [3205] = {.lex_state = 17}, - [3206] = {.lex_state = 72}, + [3205] = {.lex_state = 72}, + [3206] = {.lex_state = 17}, [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 17}, + [3208] = {.lex_state = 72}, [3209] = {.lex_state = 72}, [3210] = {.lex_state = 72}, - [3211] = {.lex_state = 8}, + [3211] = {.lex_state = 72}, [3212] = {.lex_state = 72}, - [3213] = {.lex_state = 31}, + [3213] = {.lex_state = 17}, [3214] = {.lex_state = 72}, [3215] = {.lex_state = 72}, [3216] = {.lex_state = 17}, - [3217] = {.lex_state = 17}, + [3217] = {.lex_state = 72}, [3218] = {.lex_state = 72}, - [3219] = {.lex_state = 17}, + [3219] = {.lex_state = 72}, [3220] = {.lex_state = 72}, - [3221] = {.lex_state = 72}, + [3221] = {.lex_state = 17}, [3222] = {.lex_state = 72}, - [3223] = {.lex_state = 72}, - [3224] = {.lex_state = 17}, - [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 17}, - [3227] = {.lex_state = 17}, + [3223] = {.lex_state = 17}, + [3224] = {.lex_state = 72}, + [3225] = {.lex_state = 17}, + [3226] = {.lex_state = 21}, + [3227] = {.lex_state = 72}, [3228] = {.lex_state = 17}, [3229] = {.lex_state = 72}, [3230] = {.lex_state = 72}, - [3231] = {.lex_state = 72}, + [3231] = {.lex_state = 31}, [3232] = {.lex_state = 72}, - [3233] = {.lex_state = 17}, - [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 17}, + [3233] = {.lex_state = 72}, + [3234] = {.lex_state = 17}, + [3235] = {.lex_state = 72}, [3236] = {.lex_state = 72}, - [3237] = {.lex_state = 72}, - [3238] = {.lex_state = 17}, + [3237] = {.lex_state = 17}, + [3238] = {.lex_state = 72}, [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 17}, - [3241] = {.lex_state = 72}, - [3242] = {.lex_state = 72}, + [3240] = {.lex_state = 72}, + [3241] = {.lex_state = 17}, + [3242] = {.lex_state = 17}, [3243] = {.lex_state = 72}, - [3244] = {.lex_state = 72}, - [3245] = {.lex_state = 17}, + [3244] = {.lex_state = 17}, + [3245] = {.lex_state = 72}, [3246] = {.lex_state = 17}, [3247] = {.lex_state = 72}, - [3248] = {.lex_state = 72}, + [3248] = {.lex_state = 17}, [3249] = {.lex_state = 72}, - [3250] = {.lex_state = 17}, + [3250] = {.lex_state = 72}, [3251] = {.lex_state = 17}, [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 17}, - [3254] = {.lex_state = 72}, - [3255] = {.lex_state = 72}, + [3253] = {.lex_state = 72}, + [3254] = {.lex_state = 17}, + [3255] = {.lex_state = 17}, [3256] = {.lex_state = 72}, - [3257] = {.lex_state = 17}, + [3257] = {.lex_state = 72}, [3258] = {.lex_state = 72}, [3259] = {.lex_state = 17}, - [3260] = {.lex_state = 17}, - [3261] = {.lex_state = 17}, + [3260] = {.lex_state = 72}, + [3261] = {.lex_state = 72}, [3262] = {.lex_state = 72}, - [3263] = {.lex_state = 17}, - [3264] = {.lex_state = 17}, - [3265] = {.lex_state = 17}, - [3266] = {.lex_state = 17}, - [3267] = {.lex_state = 17}, - [3268] = {.lex_state = 17}, + [3263] = {.lex_state = 72}, + [3264] = {.lex_state = 72}, + [3265] = {.lex_state = 72}, + [3266] = {.lex_state = 72}, + [3267] = {.lex_state = 72}, + [3268] = {.lex_state = 72}, [3269] = {.lex_state = 72}, - [3270] = {.lex_state = 17}, + [3270] = {.lex_state = 72}, [3271] = {.lex_state = 72}, [3272] = {.lex_state = 72}, - [3273] = {.lex_state = 17}, - [3274] = {.lex_state = 17}, + [3273] = {.lex_state = 72}, + [3274] = {.lex_state = 72}, [3275] = {.lex_state = 17}, - [3276] = {.lex_state = 17}, + [3276] = {.lex_state = 72}, [3277] = {.lex_state = 72}, - [3278] = {.lex_state = 72}, + [3278] = {.lex_state = 17}, [3279] = {.lex_state = 72}, [3280] = {.lex_state = 17}, - [3281] = {.lex_state = 17}, + [3281] = {.lex_state = 72}, [3282] = {.lex_state = 17}, [3283] = {.lex_state = 17}, - [3284] = {.lex_state = 17}, - [3285] = {.lex_state = 17}, - [3286] = {.lex_state = 17}, - [3287] = {.lex_state = 17}, - [3288] = {.lex_state = 17}, - [3289] = {.lex_state = 17}, - [3290] = {.lex_state = 17}, + [3284] = {.lex_state = 72}, + [3285] = {.lex_state = 72}, + [3286] = {.lex_state = 72}, + [3287] = {.lex_state = 72}, + [3288] = {.lex_state = 72}, + [3289] = {.lex_state = 72}, + [3290] = {.lex_state = 72}, [3291] = {.lex_state = 17}, [3292] = {.lex_state = 17}, - [3293] = {.lex_state = 17}, - [3294] = {.lex_state = 17}, - [3295] = {.lex_state = 17}, - [3296] = {.lex_state = 17}, - [3297] = {.lex_state = 23, .external_lex_state = 5}, - [3298] = {.lex_state = 72}, - [3299] = {.lex_state = 72}, + [3293] = {.lex_state = 72}, + [3294] = {.lex_state = 72}, + [3295] = {.lex_state = 72}, + [3296] = {.lex_state = 72}, + [3297] = {.lex_state = 17}, + [3298] = {.lex_state = 17}, + [3299] = {.lex_state = 17}, [3300] = {.lex_state = 17}, - [3301] = {.lex_state = 72}, + [3301] = {.lex_state = 17}, [3302] = {.lex_state = 72}, [3303] = {.lex_state = 72}, - [3304] = {.lex_state = 17}, + [3304] = {.lex_state = 72}, [3305] = {.lex_state = 72}, [3306] = {.lex_state = 72}, [3307] = {.lex_state = 72}, - [3308] = {.lex_state = 72}, - [3309] = {.lex_state = 72}, - [3310] = {.lex_state = 72}, + [3308] = {.lex_state = 17}, + [3309] = {.lex_state = 17}, + [3310] = {.lex_state = 17}, [3311] = {.lex_state = 17}, - [3312] = {.lex_state = 72}, + [3312] = {.lex_state = 17}, [3313] = {.lex_state = 72}, - [3314] = {.lex_state = 72}, - [3315] = {.lex_state = 72}, - [3316] = {.lex_state = 72, .external_lex_state = 6}, - [3317] = {.lex_state = 72}, - [3318] = {.lex_state = 72}, - [3319] = {.lex_state = 72}, - [3320] = {.lex_state = 8}, - [3321] = {.lex_state = 72}, - [3322] = {.lex_state = 23, .external_lex_state = 5}, - [3323] = {.lex_state = 72}, - [3324] = {.lex_state = 72}, + [3314] = {.lex_state = 17}, + [3315] = {.lex_state = 17}, + [3316] = {.lex_state = 17}, + [3317] = {.lex_state = 17}, + [3318] = {.lex_state = 17}, + [3319] = {.lex_state = 17}, + [3320] = {.lex_state = 17}, + [3321] = {.lex_state = 17}, + [3322] = {.lex_state = 17}, + [3323] = {.lex_state = 17}, + [3324] = {.lex_state = 17}, [3325] = {.lex_state = 17}, - [3326] = {.lex_state = 72}, - [3327] = {.lex_state = 72}, - [3328] = {.lex_state = 72}, + [3326] = {.lex_state = 17}, + [3327] = {.lex_state = 17}, + [3328] = {.lex_state = 17}, [3329] = {.lex_state = 17}, - [3330] = {.lex_state = 72}, + [3330] = {.lex_state = 23, .external_lex_state = 5}, [3331] = {.lex_state = 72}, [3332] = {.lex_state = 72}, [3333] = {.lex_state = 17}, [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 17}, - [3336] = {.lex_state = 72}, + [3335] = {.lex_state = 72}, + [3336] = {.lex_state = 17}, [3337] = {.lex_state = 17}, [3338] = {.lex_state = 72}, - [3339] = {.lex_state = 72}, - [3340] = {.lex_state = 72}, + [3339] = {.lex_state = 72, .external_lex_state = 6}, + [3340] = {.lex_state = 17}, [3341] = {.lex_state = 17}, [3342] = {.lex_state = 72}, [3343] = {.lex_state = 72}, - [3344] = {.lex_state = 17}, - [3345] = {.lex_state = 31}, - [3346] = {.lex_state = 72}, - [3347] = {.lex_state = 72}, - [3348] = {.lex_state = 72, .external_lex_state = 6}, + [3344] = {.lex_state = 72}, + [3345] = {.lex_state = 72}, + [3346] = {.lex_state = 17}, + [3347] = {.lex_state = 17}, + [3348] = {.lex_state = 72}, [3349] = {.lex_state = 72}, [3350] = {.lex_state = 72}, - [3351] = {.lex_state = 17}, - [3352] = {.lex_state = 72}, - [3353] = {.lex_state = 72}, - [3354] = {.lex_state = 72}, - [3355] = {.lex_state = 72}, + [3351] = {.lex_state = 31}, + [3352] = {.lex_state = 17}, + [3353] = {.lex_state = 17}, + [3354] = {.lex_state = 7}, + [3355] = {.lex_state = 31}, [3356] = {.lex_state = 72}, [3357] = {.lex_state = 72}, - [3358] = {.lex_state = 72}, - [3359] = {.lex_state = 72}, + [3358] = {.lex_state = 7}, + [3359] = {.lex_state = 23, .external_lex_state = 5}, [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 17}, - [3362] = {.lex_state = 17}, + [3361] = {.lex_state = 72}, + [3362] = {.lex_state = 72}, [3363] = {.lex_state = 72}, - [3364] = {.lex_state = 72}, + [3364] = {.lex_state = 17}, [3365] = {.lex_state = 72}, [3366] = {.lex_state = 72}, [3367] = {.lex_state = 72}, [3368] = {.lex_state = 72}, - [3369] = {.lex_state = 23, .external_lex_state = 5}, - [3370] = {.lex_state = 17}, + [3369] = {.lex_state = 72}, + [3370] = {.lex_state = 72}, [3371] = {.lex_state = 72}, [3372] = {.lex_state = 72}, [3373] = {.lex_state = 72}, - [3374] = {.lex_state = 17}, - [3375] = {.lex_state = 17}, - [3376] = {.lex_state = 31}, - [3377] = {.lex_state = 17}, + [3374] = {.lex_state = 72}, + [3375] = {.lex_state = 72}, + [3376] = {.lex_state = 72}, + [3377] = {.lex_state = 72}, [3378] = {.lex_state = 72}, [3379] = {.lex_state = 72}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 17}, + [3382] = {.lex_state = 72}, [3383] = {.lex_state = 72}, - [3384] = {.lex_state = 72}, + [3384] = {.lex_state = 72, .external_lex_state = 6}, [3385] = {.lex_state = 72}, - [3386] = {.lex_state = 72}, - [3387] = {.lex_state = 72}, - [3388] = {.lex_state = 72}, - [3389] = {.lex_state = 17}, - [3390] = {.lex_state = 72}, + [3386] = {.lex_state = 31}, + [3387] = {.lex_state = 17}, + [3388] = {.lex_state = 17}, + [3389] = {.lex_state = 72}, + [3390] = {.lex_state = 17}, [3391] = {.lex_state = 72}, [3392] = {.lex_state = 72}, [3393] = {.lex_state = 72}, [3394] = {.lex_state = 72}, - [3395] = {.lex_state = 72}, + [3395] = {.lex_state = 17}, [3396] = {.lex_state = 17}, - [3397] = {.lex_state = 72}, + [3397] = {.lex_state = 17}, [3398] = {.lex_state = 72}, [3399] = {.lex_state = 72}, [3400] = {.lex_state = 72}, - [3401] = {.lex_state = 31}, - [3402] = {.lex_state = 31}, - [3403] = {.lex_state = 72}, - [3404] = {.lex_state = 72}, - [3405] = {.lex_state = 21}, + [3401] = {.lex_state = 72}, + [3402] = {.lex_state = 17}, + [3403] = {.lex_state = 8}, + [3404] = {.lex_state = 17}, + [3405] = {.lex_state = 72}, [3406] = {.lex_state = 72}, [3407] = {.lex_state = 72}, - [3408] = {.lex_state = 72}, + [3408] = {.lex_state = 31}, [3409] = {.lex_state = 17}, [3410] = {.lex_state = 17}, - [3411] = {.lex_state = 17}, + [3411] = {.lex_state = 23, .external_lex_state = 5}, [3412] = {.lex_state = 17}, [3413] = {.lex_state = 17}, - [3414] = {.lex_state = 17}, - [3415] = {.lex_state = 72}, + [3414] = {.lex_state = 72}, + [3415] = {.lex_state = 17}, [3416] = {.lex_state = 17}, [3417] = {.lex_state = 72}, - [3418] = {.lex_state = 72}, + [3418] = {.lex_state = 17}, [3419] = {.lex_state = 72}, - [3420] = {.lex_state = 23}, + [3420] = {.lex_state = 72}, [3421] = {.lex_state = 72}, - [3422] = {.lex_state = 17}, + [3422] = {.lex_state = 72}, [3423] = {.lex_state = 72}, - [3424] = {.lex_state = 17}, + [3424] = {.lex_state = 72}, [3425] = {.lex_state = 72}, [3426] = {.lex_state = 72}, [3427] = {.lex_state = 72}, - [3428] = {.lex_state = 17}, + [3428] = {.lex_state = 72}, [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 17}, - [3431] = {.lex_state = 72}, - [3432] = {.lex_state = 17}, - [3433] = {.lex_state = 17}, - [3434] = {.lex_state = 31}, - [3435] = {.lex_state = 17}, - [3436] = {.lex_state = 17}, + [3430] = {.lex_state = 72}, + [3431] = {.lex_state = 17}, + [3432] = {.lex_state = 72}, + [3433] = {.lex_state = 72}, + [3434] = {.lex_state = 23}, + [3435] = {.lex_state = 72}, + [3436] = {.lex_state = 72}, [3437] = {.lex_state = 72}, [3438] = {.lex_state = 17}, - [3439] = {.lex_state = 17}, + [3439] = {.lex_state = 72}, [3440] = {.lex_state = 72}, [3441] = {.lex_state = 17}, - [3442] = {.lex_state = 17}, - [3443] = {.lex_state = 17}, + [3442] = {.lex_state = 72}, + [3443] = {.lex_state = 72}, [3444] = {.lex_state = 17}, - [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 17}, + [3445] = {.lex_state = 17}, + [3446] = {.lex_state = 72}, [3447] = {.lex_state = 17}, [3448] = {.lex_state = 17}, - [3449] = {.lex_state = 72}, + [3449] = {.lex_state = 17}, [3450] = {.lex_state = 72}, [3451] = {.lex_state = 72}, [3452] = {.lex_state = 72}, - [3453] = {.lex_state = 17}, + [3453] = {.lex_state = 72}, [3454] = {.lex_state = 17}, - [3455] = {.lex_state = 72}, + [3455] = {.lex_state = 17}, [3456] = {.lex_state = 72}, - [3457] = {.lex_state = 72}, + [3457] = {.lex_state = 23}, [3458] = {.lex_state = 72}, - [3459] = {.lex_state = 72}, + [3459] = {.lex_state = 17}, [3460] = {.lex_state = 72}, - [3461] = {.lex_state = 72}, + [3461] = {.lex_state = 17}, [3462] = {.lex_state = 17}, [3463] = {.lex_state = 72}, - [3464] = {.lex_state = 72}, - [3465] = {.lex_state = 72}, + [3464] = {.lex_state = 17}, + [3465] = {.lex_state = 17}, [3466] = {.lex_state = 72}, [3467] = {.lex_state = 72}, - [3468] = {.lex_state = 72}, + [3468] = {.lex_state = 17}, [3469] = {.lex_state = 72}, - [3470] = {.lex_state = 21}, - [3471] = {.lex_state = 72}, - [3472] = {.lex_state = 8}, + [3470] = {.lex_state = 72}, + [3471] = {.lex_state = 17}, + [3472] = {.lex_state = 72}, [3473] = {.lex_state = 72}, - [3474] = {.lex_state = 72}, + [3474] = {.lex_state = 17}, [3475] = {.lex_state = 17}, - [3476] = {.lex_state = 72}, - [3477] = {.lex_state = 72}, - [3478] = {.lex_state = 17}, - [3479] = {.lex_state = 17}, + [3476] = {.lex_state = 17}, + [3477] = {.lex_state = 17}, + [3478] = {.lex_state = 72}, + [3479] = {.lex_state = 72}, [3480] = {.lex_state = 72}, - [3481] = {.lex_state = 72, .external_lex_state = 7}, - [3482] = {.lex_state = 72}, - [3483] = {.lex_state = 72}, - [3484] = {.lex_state = 72}, - [3485] = {.lex_state = 17}, - [3486] = {.lex_state = 72}, + [3481] = {.lex_state = 17}, + [3482] = {.lex_state = 17}, + [3483] = {.lex_state = 17}, + [3484] = {.lex_state = 17}, + [3485] = {.lex_state = 72}, + [3486] = {.lex_state = 17}, [3487] = {.lex_state = 72}, - [3488] = {.lex_state = 72, .external_lex_state = 8}, - [3489] = {.lex_state = 72, .external_lex_state = 8}, + [3488] = {.lex_state = 31}, + [3489] = {.lex_state = 17}, [3490] = {.lex_state = 72}, [3491] = {.lex_state = 72}, - [3492] = {.lex_state = 72}, - [3493] = {.lex_state = 72}, - [3494] = {.lex_state = 72}, - [3495] = {.lex_state = 17}, - [3496] = {.lex_state = 17}, + [3492] = {.lex_state = 17}, + [3493] = {.lex_state = 17}, + [3494] = {.lex_state = 8}, + [3495] = {.lex_state = 8}, + [3496] = {.lex_state = 72}, [3497] = {.lex_state = 72}, [3498] = {.lex_state = 72}, - [3499] = {.lex_state = 72}, - [3500] = {.lex_state = 17}, - [3501] = {.lex_state = 17}, - [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 17}, - [3504] = {.lex_state = 72}, + [3499] = {.lex_state = 17}, + [3500] = {.lex_state = 72}, + [3501] = {.lex_state = 72}, + [3502] = {.lex_state = 72, .external_lex_state = 7}, + [3503] = {.lex_state = 72}, + [3504] = {.lex_state = 17}, [3505] = {.lex_state = 72}, - [3506] = {.lex_state = 17}, + [3506] = {.lex_state = 72}, [3507] = {.lex_state = 72}, - [3508] = {.lex_state = 17}, - [3509] = {.lex_state = 73}, + [3508] = {.lex_state = 72}, + [3509] = {.lex_state = 72}, [3510] = {.lex_state = 72}, [3511] = {.lex_state = 72}, [3512] = {.lex_state = 72}, - [3513] = {.lex_state = 72}, + [3513] = {.lex_state = 17}, [3514] = {.lex_state = 72}, - [3515] = {.lex_state = 72}, - [3516] = {.lex_state = 17}, + [3515] = {.lex_state = 17}, + [3516] = {.lex_state = 72}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 73}, + [3520] = {.lex_state = 72}, [3521] = {.lex_state = 72}, - [3522] = {.lex_state = 17}, - [3523] = {.lex_state = 17}, - [3524] = {.lex_state = 72, .external_lex_state = 7}, - [3525] = {.lex_state = 17}, + [3522] = {.lex_state = 72}, + [3523] = {.lex_state = 72}, + [3524] = {.lex_state = 17}, + [3525] = {.lex_state = 72}, [3526] = {.lex_state = 72}, [3527] = {.lex_state = 72}, [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 21}, + [3529] = {.lex_state = 72}, [3530] = {.lex_state = 72}, [3531] = {.lex_state = 17}, - [3532] = {.lex_state = 21}, + [3532] = {.lex_state = 17}, [3533] = {.lex_state = 17}, [3534] = {.lex_state = 72}, - [3535] = {.lex_state = 23}, - [3536] = {.lex_state = 17}, - [3537] = {.lex_state = 72, .external_lex_state = 8}, - [3538] = {.lex_state = 72}, - [3539] = {.lex_state = 72, .external_lex_state = 7}, + [3535] = {.lex_state = 21}, + [3536] = {.lex_state = 72}, + [3537] = {.lex_state = 72}, + [3538] = {.lex_state = 17}, + [3539] = {.lex_state = 72}, [3540] = {.lex_state = 72}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 17}, - [3543] = {.lex_state = 72, .external_lex_state = 9}, + [3542] = {.lex_state = 72}, + [3543] = {.lex_state = 17}, [3544] = {.lex_state = 17}, - [3545] = {.lex_state = 72}, - [3546] = {.lex_state = 72}, + [3545] = {.lex_state = 21}, + [3546] = {.lex_state = 17}, [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 72}, - [3549] = {.lex_state = 72, .external_lex_state = 8}, - [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 17}, + [3548] = {.lex_state = 72, .external_lex_state = 8}, + [3549] = {.lex_state = 17}, + [3550] = {.lex_state = 17}, + [3551] = {.lex_state = 72}, [3552] = {.lex_state = 72}, - [3553] = {.lex_state = 17}, + [3553] = {.lex_state = 72}, [3554] = {.lex_state = 72}, [3555] = {.lex_state = 17}, - [3556] = {.lex_state = 21}, - [3557] = {.lex_state = 72}, - [3558] = {.lex_state = 72}, - [3559] = {.lex_state = 72}, + [3556] = {.lex_state = 17}, + [3557] = {.lex_state = 72, .external_lex_state = 8}, + [3558] = {.lex_state = 17}, + [3559] = {.lex_state = 72, .external_lex_state = 7}, [3560] = {.lex_state = 72}, - [3561] = {.lex_state = 17}, + [3561] = {.lex_state = 72}, [3562] = {.lex_state = 72}, [3563] = {.lex_state = 72}, - [3564] = {.lex_state = 73}, - [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 23}, + [3564] = {.lex_state = 72}, + [3565] = {.lex_state = 17}, + [3566] = {.lex_state = 72, .external_lex_state = 7}, [3567] = {.lex_state = 72}, - [3568] = {.lex_state = 72, .external_lex_state = 7}, + [3568] = {.lex_state = 17}, [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 73}, + [3570] = {.lex_state = 23}, [3571] = {.lex_state = 72}, [3572] = {.lex_state = 72}, - [3573] = {.lex_state = 72}, - [3574] = {.lex_state = 21}, - [3575] = {.lex_state = 72, .external_lex_state = 8}, - [3576] = {.lex_state = 72}, - [3577] = {.lex_state = 72}, - [3578] = {.lex_state = 72}, + [3573] = {.lex_state = 21}, + [3574] = {.lex_state = 17}, + [3575] = {.lex_state = 21}, + [3576] = {.lex_state = 73}, + [3577] = {.lex_state = 72, .external_lex_state = 9}, + [3578] = {.lex_state = 17}, [3579] = {.lex_state = 72}, [3580] = {.lex_state = 72}, [3581] = {.lex_state = 72}, - [3582] = {.lex_state = 21}, - [3583] = {.lex_state = 17}, - [3584] = {.lex_state = 72}, - [3585] = {.lex_state = 72, .external_lex_state = 9}, + [3582] = {.lex_state = 72}, + [3583] = {.lex_state = 72}, + [3584] = {.lex_state = 72, .external_lex_state = 8}, + [3585] = {.lex_state = 72}, [3586] = {.lex_state = 72}, [3587] = {.lex_state = 72}, [3588] = {.lex_state = 72}, - [3589] = {.lex_state = 72}, - [3590] = {.lex_state = 72}, - [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 17}, - [3593] = {.lex_state = 17}, + [3589] = {.lex_state = 17}, + [3590] = {.lex_state = 73}, + [3591] = {.lex_state = 17}, + [3592] = {.lex_state = 72}, + [3593] = {.lex_state = 72}, [3594] = {.lex_state = 72}, - [3595] = {.lex_state = 17}, + [3595] = {.lex_state = 72}, [3596] = {.lex_state = 72}, [3597] = {.lex_state = 72}, - [3598] = {.lex_state = 72}, + [3598] = {.lex_state = 17}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 8}, + [3600] = {.lex_state = 72}, [3601] = {.lex_state = 72}, - [3602] = {.lex_state = 17}, - [3603] = {.lex_state = 72}, + [3602] = {.lex_state = 72}, + [3603] = {.lex_state = 23}, [3604] = {.lex_state = 72}, [3605] = {.lex_state = 72}, [3606] = {.lex_state = 72}, [3607] = {.lex_state = 72}, - [3608] = {.lex_state = 72}, + [3608] = {.lex_state = 17}, [3609] = {.lex_state = 72}, - [3610] = {.lex_state = 72}, + [3610] = {.lex_state = 17}, [3611] = {.lex_state = 72}, - [3612] = {.lex_state = 72}, + [3612] = {.lex_state = 72, .external_lex_state = 7}, [3613] = {.lex_state = 17}, [3614] = {.lex_state = 72}, [3615] = {.lex_state = 72}, - [3616] = {.lex_state = 72}, + [3616] = {.lex_state = 17}, [3617] = {.lex_state = 72}, - [3618] = {.lex_state = 72}, + [3618] = {.lex_state = 17}, [3619] = {.lex_state = 72}, - [3620] = {.lex_state = 17}, + [3620] = {.lex_state = 21}, [3621] = {.lex_state = 17}, - [3622] = {.lex_state = 72}, - [3623] = {.lex_state = 17}, - [3624] = {.lex_state = 72, .external_lex_state = 9}, + [3622] = {.lex_state = 72, .external_lex_state = 9}, + [3623] = {.lex_state = 72}, + [3624] = {.lex_state = 72}, [3625] = {.lex_state = 72}, - [3626] = {.lex_state = 17}, - [3627] = {.lex_state = 17}, + [3626] = {.lex_state = 72}, + [3627] = {.lex_state = 72}, [3628] = {.lex_state = 72}, [3629] = {.lex_state = 72}, [3630] = {.lex_state = 72}, [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 17}, - [3633] = {.lex_state = 17}, - [3634] = {.lex_state = 72}, - [3635] = {.lex_state = 17}, - [3636] = {.lex_state = 21}, - [3637] = {.lex_state = 17}, + [3632] = {.lex_state = 72}, + [3633] = {.lex_state = 72, .external_lex_state = 7}, + [3634] = {.lex_state = 17}, + [3635] = {.lex_state = 72}, + [3636] = {.lex_state = 17}, + [3637] = {.lex_state = 8}, [3638] = {.lex_state = 17}, - [3639] = {.lex_state = 72}, + [3639] = {.lex_state = 17}, [3640] = {.lex_state = 72}, [3641] = {.lex_state = 72}, - [3642] = {.lex_state = 17}, + [3642] = {.lex_state = 72}, [3643] = {.lex_state = 72}, [3644] = {.lex_state = 72}, - [3645] = {.lex_state = 72, .external_lex_state = 9}, + [3645] = {.lex_state = 17}, [3646] = {.lex_state = 72}, [3647] = {.lex_state = 72}, [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 21}, - [3651] = {.lex_state = 72}, - [3652] = {.lex_state = 72, .external_lex_state = 9}, + [3650] = {.lex_state = 17}, + [3651] = {.lex_state = 21}, + [3652] = {.lex_state = 72}, [3653] = {.lex_state = 72}, [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 72, .external_lex_state = 9}, + [3655] = {.lex_state = 72}, [3656] = {.lex_state = 72}, [3657] = {.lex_state = 72}, [3658] = {.lex_state = 72}, [3659] = {.lex_state = 72}, - [3660] = {.lex_state = 72}, + [3660] = {.lex_state = 72, .external_lex_state = 9}, [3661] = {.lex_state = 72}, - [3662] = {.lex_state = 72}, - [3663] = {.lex_state = 72}, + [3662] = {.lex_state = 73}, + [3663] = {.lex_state = 17}, [3664] = {.lex_state = 72}, - [3665] = {.lex_state = 72}, - [3666] = {.lex_state = 17}, + [3665] = {.lex_state = 21}, + [3666] = {.lex_state = 72}, [3667] = {.lex_state = 72}, - [3668] = {.lex_state = 17}, - [3669] = {.lex_state = 21}, + [3668] = {.lex_state = 167}, + [3669] = {.lex_state = 72}, [3670] = {.lex_state = 72}, [3671] = {.lex_state = 72}, [3672] = {.lex_state = 72}, - [3673] = {.lex_state = 72}, - [3674] = {.lex_state = 17}, + [3673] = {.lex_state = 17}, + [3674] = {.lex_state = 72}, [3675] = {.lex_state = 72}, [3676] = {.lex_state = 72}, - [3677] = {.lex_state = 21}, - [3678] = {.lex_state = 21}, - [3679] = {.lex_state = 17}, - [3680] = {.lex_state = 17}, - [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 21}, - [3683] = {.lex_state = 21}, - [3684] = {.lex_state = 17}, - [3685] = {.lex_state = 17}, - [3686] = {.lex_state = 17}, + [3677] = {.lex_state = 72}, + [3678] = {.lex_state = 72}, + [3679] = {.lex_state = 21}, + [3680] = {.lex_state = 72}, + [3681] = {.lex_state = 72, .external_lex_state = 9}, + [3682] = {.lex_state = 72}, + [3683] = {.lex_state = 72}, + [3684] = {.lex_state = 72}, + [3685] = {.lex_state = 72, .external_lex_state = 9}, + [3686] = {.lex_state = 72}, [3687] = {.lex_state = 72}, - [3688] = {.lex_state = 21}, + [3688] = {.lex_state = 72, .external_lex_state = 9}, [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 8}, - [3691] = {.lex_state = 72}, + [3690] = {.lex_state = 72}, + [3691] = {.lex_state = 17}, [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 21}, - [3694] = {.lex_state = 73}, + [3693] = {.lex_state = 72}, + [3694] = {.lex_state = 72}, [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, - [3697] = {.lex_state = 17}, - [3698] = {.lex_state = 21}, + [3697] = {.lex_state = 72}, + [3698] = {.lex_state = 72}, [3699] = {.lex_state = 72}, [3700] = {.lex_state = 72}, - [3701] = {.lex_state = 72}, + [3701] = {.lex_state = 17}, [3702] = {.lex_state = 21}, [3703] = {.lex_state = 72}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 73}, - [3706] = {.lex_state = 17}, + [3705] = {.lex_state = 21}, + [3706] = {.lex_state = 72}, [3707] = {.lex_state = 72}, [3708] = {.lex_state = 72}, [3709] = {.lex_state = 72}, - [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 21}, - [3712] = {.lex_state = 72}, - [3713] = {.lex_state = 72}, - [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 167}, + [3710] = {.lex_state = 73}, + [3711] = {.lex_state = 72}, + [3712] = {.lex_state = 21}, + [3713] = {.lex_state = 21}, + [3714] = {.lex_state = 17}, + [3715] = {.lex_state = 17}, [3716] = {.lex_state = 72}, [3717] = {.lex_state = 72}, - [3718] = {.lex_state = 72}, - [3719] = {.lex_state = 72}, + [3718] = {.lex_state = 21}, + [3719] = {.lex_state = 17}, [3720] = {.lex_state = 73}, [3721] = {.lex_state = 17}, - [3722] = {.lex_state = 72}, + [3722] = {.lex_state = 72, .external_lex_state = 8}, [3723] = {.lex_state = 72}, - [3724] = {.lex_state = 72}, - [3725] = {.lex_state = 8}, - [3726] = {.lex_state = 21}, - [3727] = {.lex_state = 72}, + [3724] = {.lex_state = 17}, + [3725] = {.lex_state = 72}, + [3726] = {.lex_state = 72}, + [3727] = {.lex_state = 73}, [3728] = {.lex_state = 72}, - [3729] = {.lex_state = 21}, + [3729] = {.lex_state = 72}, [3730] = {.lex_state = 72}, [3731] = {.lex_state = 72}, - [3732] = {.lex_state = 21}, - [3733] = {.lex_state = 17}, + [3732] = {.lex_state = 72}, + [3733] = {.lex_state = 21}, [3734] = {.lex_state = 72}, - [3735] = {.lex_state = 21}, - [3736] = {.lex_state = 21}, - [3737] = {.lex_state = 72}, - [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 21}, + [3735] = {.lex_state = 72}, + [3736] = {.lex_state = 72}, + [3737] = {.lex_state = 21}, + [3738] = {.lex_state = 17}, + [3739] = {.lex_state = 72}, [3740] = {.lex_state = 21}, - [3741] = {.lex_state = 21}, + [3741] = {.lex_state = 72}, [3742] = {.lex_state = 17}, [3743] = {.lex_state = 17}, [3744] = {.lex_state = 72}, [3745] = {.lex_state = 72}, - [3746] = {.lex_state = 17}, + [3746] = {.lex_state = 21}, [3747] = {.lex_state = 72}, - [3748] = {.lex_state = 73}, - [3749] = {.lex_state = 72, .external_lex_state = 7}, + [3748] = {.lex_state = 21}, + [3749] = {.lex_state = 72}, [3750] = {.lex_state = 17}, - [3751] = {.lex_state = 72}, - [3752] = {.lex_state = 72}, - [3753] = {.lex_state = 17}, - [3754] = {.lex_state = 17}, + [3751] = {.lex_state = 17}, + [3752] = {.lex_state = 73}, + [3753] = {.lex_state = 72}, + [3754] = {.lex_state = 72}, [3755] = {.lex_state = 72}, - [3756] = {.lex_state = 21}, + [3756] = {.lex_state = 17}, [3757] = {.lex_state = 72}, - [3758] = {.lex_state = 72}, - [3759] = {.lex_state = 72}, + [3758] = {.lex_state = 72, .external_lex_state = 7}, + [3759] = {.lex_state = 21}, [3760] = {.lex_state = 72}, [3761] = {.lex_state = 72}, [3762] = {.lex_state = 21}, - [3763] = {.lex_state = 17}, - [3764] = {.lex_state = 17}, - [3765] = {.lex_state = 72}, - [3766] = {.lex_state = 17}, - [3767] = {.lex_state = 17}, - [3768] = {.lex_state = 17}, - [3769] = {.lex_state = 17}, - [3770] = {.lex_state = 72}, - [3771] = {.lex_state = 17}, - [3772] = {.lex_state = 17}, + [3763] = {.lex_state = 72}, + [3764] = {.lex_state = 8}, + [3765] = {.lex_state = 21}, + [3766] = {.lex_state = 72}, + [3767] = {.lex_state = 72}, + [3768] = {.lex_state = 21}, + [3769] = {.lex_state = 72}, + [3770] = {.lex_state = 17}, + [3771] = {.lex_state = 21}, + [3772] = {.lex_state = 21}, [3773] = {.lex_state = 72}, - [3774] = {.lex_state = 17}, - [3775] = {.lex_state = 72}, - [3776] = {.lex_state = 17}, - [3777] = {.lex_state = 72}, - [3778] = {(TSStateId)(-1),}, - [3779] = {(TSStateId)(-1),}, - [3780] = {(TSStateId)(-1),}, - [3781] = {(TSStateId)(-1),}, - [3782] = {(TSStateId)(-1),}, - [3783] = {(TSStateId)(-1),}, - [3784] = {(TSStateId)(-1),}, + [3774] = {.lex_state = 72}, + [3775] = {.lex_state = 21}, + [3776] = {.lex_state = 21}, + [3777] = {.lex_state = 21}, + [3778] = {.lex_state = 72}, + [3779] = {.lex_state = 17}, + [3780] = {.lex_state = 72, .external_lex_state = 8}, + [3781] = {.lex_state = 72}, + [3782] = {.lex_state = 73}, + [3783] = {.lex_state = 72}, + [3784] = {.lex_state = 72}, + [3785] = {.lex_state = 72}, + [3786] = {.lex_state = 17}, + [3787] = {.lex_state = 72}, + [3788] = {.lex_state = 72}, + [3789] = {.lex_state = 17}, + [3790] = {.lex_state = 17}, + [3791] = {.lex_state = 72}, + [3792] = {.lex_state = 17}, + [3793] = {.lex_state = 17}, + [3794] = {.lex_state = 17}, + [3795] = {.lex_state = 72}, + [3796] = {.lex_state = 72}, + [3797] = {.lex_state = 17}, + [3798] = {.lex_state = 17}, + [3799] = {.lex_state = 17}, + [3800] = {.lex_state = 72}, + [3801] = {.lex_state = 17}, + [3802] = {.lex_state = 17}, + [3803] = {.lex_state = 17}, + [3804] = {.lex_state = 21}, + [3805] = {.lex_state = 17}, + [3806] = {.lex_state = 72}, + [3807] = {.lex_state = 17}, + [3808] = {.lex_state = 17}, + [3809] = {.lex_state = 72}, + [3810] = {.lex_state = 17}, + [3811] = {.lex_state = 17}, + [3812] = {.lex_state = 17}, + [3813] = {.lex_state = 72}, + [3814] = {(TSStateId)(-1),}, + [3815] = {(TSStateId)(-1),}, + [3816] = {(TSStateId)(-1),}, + [3817] = {(TSStateId)(-1),}, + [3818] = {(TSStateId)(-1),}, + [3819] = {(TSStateId)(-1),}, + [3820] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14329,83 +14410,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3483), - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_source_file] = STATE(3607), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14485,89 +14566,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14639,82 +14720,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14793,83 +14874,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14947,89 +15028,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15101,82 +15182,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15255,82 +15336,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -15409,82 +15490,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(8)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), @@ -15563,82 +15644,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(9)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15717,82 +15798,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15871,82 +15952,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16025,82 +16106,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16179,236 +16260,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(13)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(428), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_gen] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_impl] = ACTIONS(59), - [anon_sym_let] = ACTIONS(61), - [anon_sym_loop] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_mod] = ACTIONS(67), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(73), - [anon_sym_struct] = ACTIONS(75), - [anon_sym_trait] = ACTIONS(77), - [anon_sym_type] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_unsafe] = ACTIONS(83), - [anon_sym_use] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(14)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1945), - [sym_macro_invocation] = STATE(423), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), [anon_sym_macro_rules_BANG] = ACTIONS(139), @@ -16486,83 +16413,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(286), [sym_float_literal] = ACTIONS(265), }, + [STATE(14)] = { + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(15)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16641,82 +16722,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16795,82 +16876,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16949,82 +17030,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17103,82 +17184,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17257,82 +17338,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17411,82 +17492,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17565,82 +17646,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17719,82 +17800,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17873,82 +17954,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1914), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18027,82 +18108,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18181,82 +18262,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18335,82 +18416,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18489,82 +18570,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18643,82 +18724,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18797,82 +18878,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18951,82 +19032,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19105,82 +19186,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1924), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19259,82 +19340,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19413,82 +19494,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [sym__statement] = STATE(586), - [sym_empty_statement] = STATE(693), - [sym_expression_statement] = STATE(693), - [sym_macro_definition] = STATE(693), - [sym_attribute_item] = STATE(693), - [sym_inner_attribute_item] = STATE(693), - [sym_mod_item] = STATE(693), - [sym_foreign_mod_item] = STATE(693), - [sym_struct_item] = STATE(693), - [sym_union_item] = STATE(693), - [sym_enum_item] = STATE(693), - [sym_extern_crate_declaration] = STATE(693), - [sym_const_item] = STATE(693), - [sym_static_item] = STATE(693), - [sym_type_item] = STATE(693), - [sym_function_item] = STATE(693), - [sym_function_signature_item] = STATE(693), - [sym_function_modifiers] = STATE(3642), - [sym_impl_item] = STATE(693), - [sym_trait_item] = STATE(693), - [sym_associated_type] = STATE(693), - [sym_let_declaration] = STATE(693), - [sym_use_declaration] = STATE(693), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2002), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(416), - [sym_scoped_identifier] = STATE(1589), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(396), - [sym_match_expression] = STATE(396), - [sym_while_expression] = STATE(396), - [sym_loop_expression] = STATE(396), - [sym_for_expression] = STATE(396), - [sym_const_block] = STATE(396), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3650), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(396), - [sym_async_block] = STATE(396), - [sym_gen_block] = STATE(396), - [sym_try_block] = STATE(396), - [sym_block] = STATE(396), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym__statement] = STATE(601), + [sym_empty_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_macro_definition] = STATE(649), + [sym_attribute_item] = STATE(649), + [sym_inner_attribute_item] = STATE(649), + [sym_mod_item] = STATE(649), + [sym_foreign_mod_item] = STATE(649), + [sym_struct_item] = STATE(649), + [sym_union_item] = STATE(649), + [sym_enum_item] = STATE(649), + [sym_extern_crate_declaration] = STATE(649), + [sym_const_item] = STATE(649), + [sym_static_item] = STATE(649), + [sym_type_item] = STATE(649), + [sym_function_item] = STATE(649), + [sym_function_signature_item] = STATE(649), + [sym_function_modifiers] = STATE(3524), + [sym_impl_item] = STATE(649), + [sym_trait_item] = STATE(649), + [sym_associated_type] = STATE(649), + [sym_let_declaration] = STATE(649), + [sym_use_declaration] = STATE(649), + [sym_extern_modifier] = STATE(2233), + [sym_visibility_modifier] = STATE(2019), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(409), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(405), + [sym_match_expression] = STATE(405), + [sym_while_expression] = STATE(405), + [sym_loop_expression] = STATE(405), + [sym_for_expression] = STATE(405), + [sym_const_block] = STATE(405), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3620), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(405), + [sym_async_block] = STATE(405), + [sym_gen_block] = STATE(405), + [sym_try_block] = STATE(405), + [sym_block] = STATE(405), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19567,53 +19648,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1568), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1591), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19715,65 +19796,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(375), [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19792,13 +19873,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -19817,11 +19898,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), @@ -19862,66 +19943,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(375), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19939,42 +20020,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19990,7 +20071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(389), + [anon_sym_else] = ACTIONS(377), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20009,56 +20090,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_else] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(39)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(39), + [sym_block_comment] = STATE(39), + [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_RPAREN] = ACTIONS(391), @@ -20120,7 +20348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COMMA] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -20155,67 +20383,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(39)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(39), - [sym_block_comment] = STATE(39), + [STATE(40)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(40), + [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(395), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(395), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20233,42 +20461,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20284,154 +20512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(40)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(40), - [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [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(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(399), + [anon_sym_else] = ACTIONS(397), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20450,66 +20531,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(41)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20527,42 +20608,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(401), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20578,7 +20659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(403), + [anon_sym_else] = ACTIONS(401), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20597,66 +20678,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20674,42 +20755,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20725,7 +20806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(403), + [anon_sym_else] = ACTIONS(393), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20744,53 +20825,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20887,63 +20968,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(45)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(45), + [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20961,41 +21184,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21028,64 +21251,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(45)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [STATE(46)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(45), - [sym_block_comment] = STATE(45), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(46), + [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_EQ_GT] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21103,41 +21326,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21170,200 +21393,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(46)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(46), - [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, [STATE(47)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), [sym_label] = STATE(43), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(503), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(48)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(391), @@ -21420,7 +21643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(391), [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(493), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -21454,63 +21677,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(48)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [STATE(49)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), @@ -21529,13 +21752,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -21554,11 +21777,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(415), @@ -21596,64 +21819,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(49)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [STATE(50)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21671,41 +21894,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21738,56 +21961,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(50)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), + [STATE(51)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(52)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(341), [anon_sym_LBRACK] = ACTIONS(341), @@ -21817,7 +22182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(347), [anon_sym_PERCENT] = ACTIONS(347), [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), [anon_sym_AMP] = ACTIONS(347), [anon_sym_PIPE] = ACTIONS(347), [anon_sym_AMP_AMP] = ACTIONS(341), @@ -21848,23 +22213,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(347), [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -21873,354 +22238,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(51)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(52)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, [STATE(53)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1690), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22238,58 +22319,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22298,70 +22379,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(54)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22379,58 +22460,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(397), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22439,70 +22520,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(46), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22520,58 +22601,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22580,69 +22661,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(56)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(469), + [anon_sym_STAR] = ACTIONS(377), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), @@ -22661,13 +22742,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(377), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -22686,33 +22767,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(377), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(377), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(377), [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22721,70 +22802,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(57)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1688), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22802,58 +22883,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22862,70 +22943,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(58)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22943,58 +23024,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23003,70 +23084,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(505), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23084,58 +23165,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(397), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23144,70 +23225,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23225,58 +23306,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23285,70 +23366,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23366,58 +23447,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(403), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23426,70 +23507,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23507,58 +23588,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(399), - [anon_sym_PERCENT] = ACTIONS(399), - [anon_sym_CARET] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(397), - [anon_sym_PIPE_PIPE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_PLUS_EQ] = ACTIONS(397), - [anon_sym_DASH_EQ] = ACTIONS(397), - [anon_sym_STAR_EQ] = ACTIONS(397), - [anon_sym_SLASH_EQ] = ACTIONS(397), - [anon_sym_PERCENT_EQ] = ACTIONS(397), - [anon_sym_CARET_EQ] = ACTIONS(397), - [anon_sym_AMP_EQ] = ACTIONS(397), - [anon_sym_PIPE_EQ] = ACTIONS(397), - [anon_sym_LT_LT_EQ] = ACTIONS(397), - [anon_sym_GT_GT_EQ] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(399), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT_EQ] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(399), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23567,70 +23648,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23648,58 +23729,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23708,205 +23789,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1688), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(65)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(50), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(391), @@ -23934,7 +23874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(393), [anon_sym_PERCENT] = ACTIONS(393), [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(505), [anon_sym_AMP] = ACTIONS(393), [anon_sym_PIPE] = ACTIONS(393), [anon_sym_AMP_AMP] = ACTIONS(391), @@ -23965,23 +23905,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(393), [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23990,70 +23930,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(66)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(66), - [sym_block_comment] = STATE(66), + [STATE(65)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(44), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -24071,58 +24011,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(401), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(66)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -24131,8279 +24212,8630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_RPAREN] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_RBRACK] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_isize] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_f32] = ACTIONS(527), - [anon_sym_f64] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_str] = ACTIONS(527), - [anon_sym_char] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_PLUS_EQ] = ACTIONS(530), - [anon_sym_DASH_EQ] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(530), - [anon_sym_SLASH_EQ] = ACTIONS(530), - [anon_sym_PERCENT_EQ] = ACTIONS(530), - [anon_sym_CARET_EQ] = ACTIONS(530), - [anon_sym_AMP_EQ] = ACTIONS(530), - [anon_sym_PIPE_EQ] = ACTIONS(530), - [anon_sym_LT_LT_EQ] = ACTIONS(530), - [anon_sym_GT_GT_EQ] = ACTIONS(530), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(530), - [anon_sym_BANG_EQ] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(530), - [anon_sym_LT_EQ] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(530), - [anon_sym__] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT_EQ] = ACTIONS(530), - [anon_sym_COMMA] = ACTIONS(530), - [anon_sym_COLON_COLON] = ACTIONS(530), - [anon_sym_DASH_GT] = ACTIONS(530), - [anon_sym_POUND] = ACTIONS(530), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_as] = ACTIONS(527), - [anon_sym_async] = ACTIONS(527), - [anon_sym_await] = ACTIONS(527), - [anon_sym_break] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_enum] = ACTIONS(527), - [anon_sym_fn] = ACTIONS(527), - [anon_sym_for] = ACTIONS(527), - [anon_sym_gen] = ACTIONS(527), - [anon_sym_if] = ACTIONS(527), - [anon_sym_impl] = ACTIONS(527), - [anon_sym_let] = ACTIONS(527), - [anon_sym_loop] = ACTIONS(527), - [anon_sym_match] = ACTIONS(527), - [anon_sym_mod] = ACTIONS(527), - [anon_sym_pub] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_static] = ACTIONS(527), - [anon_sym_struct] = ACTIONS(527), - [anon_sym_trait] = ACTIONS(527), - [anon_sym_type] = ACTIONS(527), - [anon_sym_union] = ACTIONS(527), - [anon_sym_unsafe] = ACTIONS(527), - [anon_sym_use] = ACTIONS(527), - [anon_sym_where] = ACTIONS(527), - [anon_sym_while] = ACTIONS(527), - [sym_mutable_specifier] = ACTIONS(527), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(553), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(527), - [sym_super] = ACTIONS(527), - [sym_crate] = ACTIONS(527), - [sym_metavariable] = ACTIONS(559), - [sym__raw_string_literal_start] = ACTIONS(562), - [sym_float_literal] = ACTIONS(550), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(531), + [anon_sym_SEMI] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_EQ_GT] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(548), + [anon_sym_DOLLAR] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_QMARK] = ACTIONS(534), + [anon_sym_u8] = ACTIONS(531), + [anon_sym_i8] = ACTIONS(531), + [anon_sym_u16] = ACTIONS(531), + [anon_sym_i16] = ACTIONS(531), + [anon_sym_u32] = ACTIONS(531), + [anon_sym_i32] = ACTIONS(531), + [anon_sym_u64] = ACTIONS(531), + [anon_sym_i64] = ACTIONS(531), + [anon_sym_u128] = ACTIONS(531), + [anon_sym_i128] = ACTIONS(531), + [anon_sym_isize] = ACTIONS(531), + [anon_sym_usize] = ACTIONS(531), + [anon_sym_f32] = ACTIONS(531), + [anon_sym_f64] = ACTIONS(531), + [anon_sym_bool] = ACTIONS(531), + [anon_sym_str] = ACTIONS(531), + [anon_sym_char] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(548), + [anon_sym_PERCENT] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_AMP_AMP] = ACTIONS(534), + [anon_sym_PIPE_PIPE] = ACTIONS(534), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(534), + [anon_sym_DASH_EQ] = ACTIONS(534), + [anon_sym_STAR_EQ] = ACTIONS(534), + [anon_sym_SLASH_EQ] = ACTIONS(534), + [anon_sym_PERCENT_EQ] = ACTIONS(534), + [anon_sym_CARET_EQ] = ACTIONS(534), + [anon_sym_AMP_EQ] = ACTIONS(534), + [anon_sym_PIPE_EQ] = ACTIONS(534), + [anon_sym_LT_LT_EQ] = ACTIONS(534), + [anon_sym_GT_GT_EQ] = ACTIONS(534), + [anon_sym_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(534), + [anon_sym_LT_EQ] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(534), + [anon_sym__] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COLON_COLON] = ACTIONS(534), + [anon_sym_DASH_GT] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(531), + [anon_sym_as] = ACTIONS(531), + [anon_sym_async] = ACTIONS(531), + [anon_sym_await] = ACTIONS(531), + [anon_sym_break] = ACTIONS(531), + [anon_sym_const] = ACTIONS(531), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_default] = ACTIONS(531), + [anon_sym_enum] = ACTIONS(531), + [anon_sym_fn] = ACTIONS(531), + [anon_sym_for] = ACTIONS(531), + [anon_sym_gen] = ACTIONS(531), + [anon_sym_if] = ACTIONS(531), + [anon_sym_impl] = ACTIONS(531), + [anon_sym_let] = ACTIONS(531), + [anon_sym_loop] = ACTIONS(531), + [anon_sym_match] = ACTIONS(531), + [anon_sym_mod] = ACTIONS(531), + [anon_sym_pub] = ACTIONS(531), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(531), + [anon_sym_struct] = ACTIONS(531), + [anon_sym_trait] = ACTIONS(531), + [anon_sym_type] = ACTIONS(531), + [anon_sym_union] = ACTIONS(531), + [anon_sym_unsafe] = ACTIONS(531), + [anon_sym_use] = ACTIONS(531), + [anon_sym_where] = ACTIONS(531), + [anon_sym_while] = ACTIONS(531), + [sym_mutable_specifier] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(554), + [aux_sym_string_literal_token1] = ACTIONS(557), + [sym_char_literal] = ACTIONS(554), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(531), + [sym_super] = ACTIONS(531), + [sym_crate] = ACTIONS(531), + [sym_metavariable] = ACTIONS(563), + [sym__raw_string_literal_start] = ACTIONS(566), + [sym_float_literal] = ACTIONS(554), }, [STATE(68)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(75), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(69)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(76), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(575), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(70)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(71)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(72)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(73)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(74)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(75)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(76)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(77)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(78)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(603), - [anon_sym_RPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_RBRACK] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_EQ_GT] = ACTIONS(600), - [anon_sym_COLON] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_STAR] = ACTIONS(614), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(597), - [anon_sym_i8] = ACTIONS(597), - [anon_sym_u16] = ACTIONS(597), - [anon_sym_i16] = ACTIONS(597), - [anon_sym_u32] = ACTIONS(597), - [anon_sym_i32] = ACTIONS(597), - [anon_sym_u64] = ACTIONS(597), - [anon_sym_i64] = ACTIONS(597), - [anon_sym_u128] = ACTIONS(597), - [anon_sym_i128] = ACTIONS(597), - [anon_sym_isize] = ACTIONS(597), - [anon_sym_usize] = ACTIONS(597), - [anon_sym_f32] = ACTIONS(597), - [anon_sym_f64] = ACTIONS(597), - [anon_sym_bool] = ACTIONS(597), - [anon_sym_str] = ACTIONS(597), - [anon_sym_char] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(614), - [anon_sym_PERCENT] = ACTIONS(614), - [anon_sym_CARET] = ACTIONS(614), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(614), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(614), - [anon_sym_GT_GT] = ACTIONS(614), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(614), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(614), - [anon_sym_LT] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_AT] = ACTIONS(600), - [anon_sym__] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_SQUOTE] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_async] = ACTIONS(597), - [anon_sym_await] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_default] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_gen] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_impl] = ACTIONS(597), - [anon_sym_let] = ACTIONS(597), - [anon_sym_loop] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_mod] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_static] = ACTIONS(597), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_trait] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_union] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_use] = ACTIONS(597), - [anon_sym_where] = ACTIONS(597), - [anon_sym_while] = ACTIONS(597), - [sym_mutable_specifier] = ACTIONS(597), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(623), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(597), - [sym_super] = ACTIONS(597), - [sym_crate] = ACTIONS(597), - [sym__raw_string_literal_start] = ACTIONS(629), - [sym_float_literal] = ACTIONS(620), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(79)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(80)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(81)] = { [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree_pattern] = STATE(162), + [sym_token_binding_pattern] = STATE(162), + [sym_token_repetition_pattern] = STATE(162), + [sym__literal] = STATE(162), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(569), + [anon_sym_i8] = ACTIONS(569), + [anon_sym_u16] = ACTIONS(569), + [anon_sym_i16] = ACTIONS(569), + [anon_sym_u32] = ACTIONS(569), + [anon_sym_i32] = ACTIONS(569), + [anon_sym_u64] = ACTIONS(569), + [anon_sym_i64] = ACTIONS(569), + [anon_sym_u128] = ACTIONS(569), + [anon_sym_i128] = ACTIONS(569), + [anon_sym_isize] = ACTIONS(569), + [anon_sym_usize] = ACTIONS(569), + [anon_sym_f32] = ACTIONS(569), + [anon_sym_f64] = ACTIONS(569), + [anon_sym_bool] = ACTIONS(569), + [anon_sym_str] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_as] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_await] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_fn] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_gen] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_impl] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_loop] = ACTIONS(569), + [anon_sym_match] = ACTIONS(569), + [anon_sym_mod] = ACTIONS(569), + [anon_sym_pub] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_trait] = ACTIONS(569), + [anon_sym_type] = ACTIONS(569), + [anon_sym_union] = ACTIONS(569), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_use] = ACTIONS(569), + [anon_sym_where] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [sym_mutable_specifier] = ACTIONS(569), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_crate] = ACTIONS(569), + [sym_metavariable] = ACTIONS(591), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(82)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_LBRACK] = ACTIONS(647), - [anon_sym_RBRACK] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_EQ_GT] = ACTIONS(639), - [anon_sym_COLON] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(639), - [anon_sym_u8] = ACTIONS(636), - [anon_sym_i8] = ACTIONS(636), - [anon_sym_u16] = ACTIONS(636), - [anon_sym_i16] = ACTIONS(636), - [anon_sym_u32] = ACTIONS(636), - [anon_sym_i32] = ACTIONS(636), - [anon_sym_u64] = ACTIONS(636), - [anon_sym_i64] = ACTIONS(636), - [anon_sym_u128] = ACTIONS(636), - [anon_sym_i128] = ACTIONS(636), - [anon_sym_isize] = ACTIONS(636), - [anon_sym_usize] = ACTIONS(636), - [anon_sym_f32] = ACTIONS(636), - [anon_sym_f64] = ACTIONS(636), - [anon_sym_bool] = ACTIONS(636), - [anon_sym_str] = ACTIONS(636), - [anon_sym_char] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(639), - [anon_sym_PIPE_PIPE] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_PLUS_EQ] = ACTIONS(639), - [anon_sym_DASH_EQ] = ACTIONS(639), - [anon_sym_STAR_EQ] = ACTIONS(639), - [anon_sym_SLASH_EQ] = ACTIONS(639), - [anon_sym_PERCENT_EQ] = ACTIONS(639), - [anon_sym_CARET_EQ] = ACTIONS(639), - [anon_sym_AMP_EQ] = ACTIONS(639), - [anon_sym_PIPE_EQ] = ACTIONS(639), - [anon_sym_LT_LT_EQ] = ACTIONS(639), - [anon_sym_GT_GT_EQ] = ACTIONS(639), - [anon_sym_EQ] = ACTIONS(653), - [anon_sym_EQ_EQ] = ACTIONS(639), - [anon_sym_BANG_EQ] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(639), - [anon_sym_LT_EQ] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym__] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_DOT_DOT] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(639), - [anon_sym_COLON_COLON] = ACTIONS(639), - [anon_sym_DASH_GT] = ACTIONS(639), - [anon_sym_POUND] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(636), - [anon_sym_as] = ACTIONS(636), - [anon_sym_async] = ACTIONS(636), - [anon_sym_await] = ACTIONS(636), - [anon_sym_break] = ACTIONS(636), - [anon_sym_const] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_enum] = ACTIONS(636), - [anon_sym_fn] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_gen] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_impl] = ACTIONS(636), - [anon_sym_let] = ACTIONS(636), - [anon_sym_loop] = ACTIONS(636), - [anon_sym_match] = ACTIONS(636), - [anon_sym_mod] = ACTIONS(636), - [anon_sym_pub] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_static] = ACTIONS(636), - [anon_sym_struct] = ACTIONS(636), - [anon_sym_trait] = ACTIONS(636), - [anon_sym_type] = ACTIONS(636), - [anon_sym_union] = ACTIONS(636), - [anon_sym_unsafe] = ACTIONS(636), - [anon_sym_use] = ACTIONS(636), - [anon_sym_where] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(636), - [sym_integer_literal] = ACTIONS(659), - [aux_sym_string_literal_token1] = ACTIONS(662), - [sym_char_literal] = ACTIONS(659), - [anon_sym_true] = ACTIONS(665), - [anon_sym_false] = ACTIONS(665), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_crate] = ACTIONS(636), - [sym_metavariable] = ACTIONS(668), - [sym__raw_string_literal_start] = ACTIONS(671), - [sym_float_literal] = ACTIONS(659), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_RBRACK] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_EQ_GT] = ACTIONS(608), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(605), + [anon_sym_i8] = ACTIONS(605), + [anon_sym_u16] = ACTIONS(605), + [anon_sym_i16] = ACTIONS(605), + [anon_sym_u32] = ACTIONS(605), + [anon_sym_i32] = ACTIONS(605), + [anon_sym_u64] = ACTIONS(605), + [anon_sym_i64] = ACTIONS(605), + [anon_sym_u128] = ACTIONS(605), + [anon_sym_i128] = ACTIONS(605), + [anon_sym_isize] = ACTIONS(605), + [anon_sym_usize] = ACTIONS(605), + [anon_sym_f32] = ACTIONS(605), + [anon_sym_f64] = ACTIONS(605), + [anon_sym_bool] = ACTIONS(605), + [anon_sym_str] = ACTIONS(605), + [anon_sym_char] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(622), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym__] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_DASH_GT] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_async] = ACTIONS(605), + [anon_sym_await] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_default] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_gen] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_impl] = ACTIONS(605), + [anon_sym_let] = ACTIONS(605), + [anon_sym_loop] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_mod] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_static] = ACTIONS(605), + [anon_sym_struct] = ACTIONS(605), + [anon_sym_trait] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_union] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_use] = ACTIONS(605), + [anon_sym_where] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [sym_mutable_specifier] = ACTIONS(605), + [sym_integer_literal] = ACTIONS(628), + [aux_sym_string_literal_token1] = ACTIONS(631), + [sym_char_literal] = ACTIONS(628), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(605), + [sym_super] = ACTIONS(605), + [sym_crate] = ACTIONS(605), + [sym_metavariable] = ACTIONS(637), + [sym__raw_string_literal_start] = ACTIONS(640), + [sym_float_literal] = ACTIONS(628), }, [STATE(83)] = { - [sym__token_pattern] = STATE(155), - [sym_token_tree_pattern] = STATE(150), - [sym_token_binding_pattern] = STATE(150), - [sym_token_repetition_pattern] = STATE(150), - [sym__literal] = STATE(150), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(579), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(565), - [anon_sym_i8] = ACTIONS(565), - [anon_sym_u16] = ACTIONS(565), - [anon_sym_i16] = ACTIONS(565), - [anon_sym_u32] = ACTIONS(565), - [anon_sym_i32] = ACTIONS(565), - [anon_sym_u64] = ACTIONS(565), - [anon_sym_i64] = ACTIONS(565), - [anon_sym_u128] = ACTIONS(565), - [anon_sym_i128] = ACTIONS(565), - [anon_sym_isize] = ACTIONS(565), - [anon_sym_usize] = ACTIONS(565), - [anon_sym_f32] = ACTIONS(565), - [anon_sym_f64] = ACTIONS(565), - [anon_sym_bool] = ACTIONS(565), - [anon_sym_str] = ACTIONS(565), - [anon_sym_char] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_as] = ACTIONS(565), - [anon_sym_async] = ACTIONS(565), - [anon_sym_await] = ACTIONS(565), - [anon_sym_break] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_continue] = ACTIONS(565), - [anon_sym_default] = ACTIONS(565), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_for] = ACTIONS(565), - [anon_sym_gen] = ACTIONS(565), - [anon_sym_if] = ACTIONS(565), - [anon_sym_impl] = ACTIONS(565), - [anon_sym_let] = ACTIONS(565), - [anon_sym_loop] = ACTIONS(565), - [anon_sym_match] = ACTIONS(565), - [anon_sym_mod] = ACTIONS(565), - [anon_sym_pub] = ACTIONS(565), - [anon_sym_return] = ACTIONS(565), - [anon_sym_static] = ACTIONS(565), - [anon_sym_struct] = ACTIONS(565), - [anon_sym_trait] = ACTIONS(565), - [anon_sym_type] = ACTIONS(565), - [anon_sym_union] = ACTIONS(565), - [anon_sym_unsafe] = ACTIONS(565), - [anon_sym_use] = ACTIONS(565), - [anon_sym_where] = ACTIONS(565), - [anon_sym_while] = ACTIONS(565), - [sym_mutable_specifier] = ACTIONS(565), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(565), - [sym_super] = ACTIONS(565), - [sym_crate] = ACTIONS(565), - [sym_metavariable] = ACTIONS(587), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [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(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(643), + [sym_super] = ACTIONS(643), + [sym_crate] = ACTIONS(643), + [sym__raw_string_literal_start] = ACTIONS(675), + [sym_float_literal] = ACTIONS(666), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(684), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(85)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(86)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(87)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(88)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(89)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_RBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(163), [aux_sym_delim_token_tree_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(92)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(163), [aux_sym_delim_token_tree_repeat1] = STATE(96), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(93)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(163), [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(94)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(98), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(95)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(98)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(99)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(100)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(101)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(102)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(103)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(104)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(133), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(105)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym_token_tree_repeat1] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(106)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(107)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(108)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(109)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym_token_tree_repeat1] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(110)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_token_tree] = STATE(160), + [sym_token_repetition] = STATE(160), + [sym__literal] = STATE(160), + [sym_string_literal] = STATE(148), + [sym_raw_string_literal] = STATE(148), + [sym_boolean_literal] = STATE(148), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym_token_tree_repeat1] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(704), + [anon_sym_i8] = ACTIONS(704), + [anon_sym_u16] = ACTIONS(704), + [anon_sym_i16] = ACTIONS(704), + [anon_sym_u32] = ACTIONS(704), + [anon_sym_i32] = ACTIONS(704), + [anon_sym_u64] = ACTIONS(704), + [anon_sym_i64] = ACTIONS(704), + [anon_sym_u128] = ACTIONS(704), + [anon_sym_i128] = ACTIONS(704), + [anon_sym_isize] = ACTIONS(704), + [anon_sym_usize] = ACTIONS(704), + [anon_sym_f32] = ACTIONS(704), + [anon_sym_f64] = ACTIONS(704), + [anon_sym_bool] = ACTIONS(704), + [anon_sym_str] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_as] = ACTIONS(704), + [anon_sym_async] = ACTIONS(704), + [anon_sym_await] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_const] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_default] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_fn] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_gen] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_impl] = ACTIONS(704), + [anon_sym_let] = ACTIONS(704), + [anon_sym_loop] = ACTIONS(704), + [anon_sym_match] = ACTIONS(704), + [anon_sym_mod] = ACTIONS(704), + [anon_sym_pub] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_struct] = ACTIONS(704), + [anon_sym_trait] = ACTIONS(704), + [anon_sym_type] = ACTIONS(704), + [anon_sym_union] = ACTIONS(704), + [anon_sym_unsafe] = ACTIONS(704), + [anon_sym_use] = ACTIONS(704), + [anon_sym_where] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [sym_mutable_specifier] = ACTIONS(704), + [sym_integer_literal] = ACTIONS(585), + [aux_sym_string_literal_token1] = ACTIONS(587), + [sym_char_literal] = ACTIONS(585), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_crate] = ACTIONS(704), + [sym_metavariable] = ACTIONS(716), + [sym__raw_string_literal_start] = ACTIONS(593), + [sym_float_literal] = ACTIONS(585), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(112)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(116), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(113)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(117), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(118), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(730), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(115)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(117)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(118)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(119)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(120)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(121)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym_token_tree_repeat1] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(122)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(163), [aux_sym_delim_token_tree_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(127), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(127)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(128)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [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(100), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(129)] = { - [sym_token_tree] = STATE(148), - [sym_token_repetition] = STATE(148), - [sym__literal] = STATE(148), - [sym_string_literal] = STATE(170), - [sym_raw_string_literal] = STATE(170), - [sym_boolean_literal] = STATE(170), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(698), - [anon_sym_i8] = ACTIONS(698), - [anon_sym_u16] = ACTIONS(698), - [anon_sym_i16] = ACTIONS(698), - [anon_sym_u32] = ACTIONS(698), - [anon_sym_i32] = ACTIONS(698), - [anon_sym_u64] = ACTIONS(698), - [anon_sym_i64] = ACTIONS(698), - [anon_sym_u128] = ACTIONS(698), - [anon_sym_i128] = ACTIONS(698), - [anon_sym_isize] = ACTIONS(698), - [anon_sym_usize] = ACTIONS(698), - [anon_sym_f32] = ACTIONS(698), - [anon_sym_f64] = ACTIONS(698), - [anon_sym_bool] = ACTIONS(698), - [anon_sym_str] = ACTIONS(698), - [anon_sym_char] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(698), - [anon_sym_as] = ACTIONS(698), - [anon_sym_async] = ACTIONS(698), - [anon_sym_await] = ACTIONS(698), - [anon_sym_break] = ACTIONS(698), - [anon_sym_const] = ACTIONS(698), - [anon_sym_continue] = ACTIONS(698), - [anon_sym_default] = ACTIONS(698), - [anon_sym_enum] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(698), - [anon_sym_for] = ACTIONS(698), - [anon_sym_gen] = ACTIONS(698), - [anon_sym_if] = ACTIONS(698), - [anon_sym_impl] = ACTIONS(698), - [anon_sym_let] = ACTIONS(698), - [anon_sym_loop] = ACTIONS(698), - [anon_sym_match] = ACTIONS(698), - [anon_sym_mod] = ACTIONS(698), - [anon_sym_pub] = ACTIONS(698), - [anon_sym_return] = ACTIONS(698), - [anon_sym_static] = ACTIONS(698), - [anon_sym_struct] = ACTIONS(698), - [anon_sym_trait] = ACTIONS(698), - [anon_sym_type] = ACTIONS(698), - [anon_sym_union] = ACTIONS(698), - [anon_sym_unsafe] = ACTIONS(698), - [anon_sym_use] = ACTIONS(698), - [anon_sym_where] = ACTIONS(698), - [anon_sym_while] = ACTIONS(698), - [sym_mutable_specifier] = ACTIONS(698), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(698), - [sym_crate] = ACTIONS(698), - [sym_metavariable] = ACTIONS(710), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(131)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(210), - [sym__delim_tokens] = STATE(211), - [sym__non_delim_token] = STATE(210), - [sym__literal] = STATE(209), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(208), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(208), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(201), + [sym_raw_string_literal] = STATE(201), + [sym_boolean_literal] = STATE(201), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(184), - [aux_sym_delim_token_tree_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [aux_sym__non_special_token_repeat1] = STATE(163), + [aux_sym_delim_token_tree_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(678), + [anon_sym_i8] = ACTIONS(678), + [anon_sym_u16] = ACTIONS(678), + [anon_sym_i16] = ACTIONS(678), + [anon_sym_u32] = ACTIONS(678), + [anon_sym_i32] = ACTIONS(678), + [anon_sym_u64] = ACTIONS(678), + [anon_sym_i64] = ACTIONS(678), + [anon_sym_u128] = ACTIONS(678), + [anon_sym_i128] = ACTIONS(678), + [anon_sym_isize] = ACTIONS(678), + [anon_sym_usize] = ACTIONS(678), + [anon_sym_f32] = ACTIONS(678), + [anon_sym_f64] = ACTIONS(678), + [anon_sym_bool] = ACTIONS(678), + [anon_sym_str] = ACTIONS(678), + [anon_sym_char] = ACTIONS(678), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(678), + [anon_sym_as] = ACTIONS(678), + [anon_sym_async] = ACTIONS(678), + [anon_sym_await] = ACTIONS(678), + [anon_sym_break] = ACTIONS(678), + [anon_sym_const] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_default] = ACTIONS(678), + [anon_sym_enum] = ACTIONS(678), + [anon_sym_fn] = ACTIONS(678), + [anon_sym_for] = ACTIONS(678), + [anon_sym_gen] = ACTIONS(678), + [anon_sym_if] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(678), + [anon_sym_let] = ACTIONS(678), + [anon_sym_loop] = ACTIONS(678), + [anon_sym_match] = ACTIONS(678), + [anon_sym_mod] = ACTIONS(678), + [anon_sym_pub] = ACTIONS(678), + [anon_sym_return] = ACTIONS(678), + [anon_sym_static] = ACTIONS(678), + [anon_sym_struct] = ACTIONS(678), + [anon_sym_trait] = ACTIONS(678), + [anon_sym_type] = ACTIONS(678), + [anon_sym_union] = ACTIONS(678), + [anon_sym_unsafe] = ACTIONS(678), + [anon_sym_use] = ACTIONS(678), + [anon_sym_where] = ACTIONS(678), + [anon_sym_while] = ACTIONS(678), + [sym_mutable_specifier] = ACTIONS(678), + [sym_integer_literal] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(696), + [sym_char_literal] = ACTIONS(694), + [anon_sym_true] = ACTIONS(698), + [anon_sym_false] = ACTIONS(698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(678), + [sym_super] = ACTIONS(678), + [sym_crate] = ACTIONS(678), + [sym__raw_string_literal_start] = ACTIONS(700), + [sym_float_literal] = ACTIONS(694), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_RBRACK] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_u8] = ACTIONS(765), + [anon_sym_i8] = ACTIONS(765), + [anon_sym_u16] = ACTIONS(765), + [anon_sym_i16] = ACTIONS(765), + [anon_sym_u32] = ACTIONS(765), + [anon_sym_i32] = ACTIONS(765), + [anon_sym_u64] = ACTIONS(765), + [anon_sym_i64] = ACTIONS(765), + [anon_sym_u128] = ACTIONS(765), + [anon_sym_i128] = ACTIONS(765), + [anon_sym_isize] = ACTIONS(765), + [anon_sym_usize] = ACTIONS(765), + [anon_sym_f32] = ACTIONS(765), + [anon_sym_f64] = ACTIONS(765), + [anon_sym_bool] = ACTIONS(765), + [anon_sym_str] = ACTIONS(765), + [anon_sym_char] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(777), + [anon_sym_COMMA] = ACTIONS(757), + [anon_sym_COLON_COLON] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(783), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_async] = ACTIONS(789), + [anon_sym_break] = ACTIONS(792), + [anon_sym_const] = ACTIONS(795), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_default] = ACTIONS(801), + [anon_sym_for] = ACTIONS(804), + [anon_sym_gen] = ACTIONS(807), + [anon_sym_if] = ACTIONS(810), + [anon_sym_loop] = ACTIONS(813), + [anon_sym_match] = ACTIONS(816), + [anon_sym_return] = ACTIONS(819), + [anon_sym_static] = ACTIONS(822), + [anon_sym_union] = ACTIONS(801), + [anon_sym_unsafe] = ACTIONS(825), + [anon_sym_while] = ACTIONS(828), + [anon_sym_yield] = ACTIONS(831), + [anon_sym_move] = ACTIONS(834), + [anon_sym_try] = ACTIONS(837), + [sym_integer_literal] = ACTIONS(840), + [aux_sym_string_literal_token1] = ACTIONS(843), + [sym_char_literal] = ACTIONS(840), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(849), + [sym_super] = ACTIONS(852), + [sym_crate] = ACTIONS(852), + [sym_metavariable] = ACTIONS(855), + [sym__raw_string_literal_start] = ACTIONS(858), + [sym_float_literal] = ACTIONS(840), + }, + [STATE(135)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_RBRACK] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(762), + [anon_sym_u8] = ACTIONS(765), + [anon_sym_i8] = ACTIONS(765), + [anon_sym_u16] = ACTIONS(765), + [anon_sym_i16] = ACTIONS(765), + [anon_sym_u32] = ACTIONS(765), + [anon_sym_i32] = ACTIONS(765), + [anon_sym_u64] = ACTIONS(765), + [anon_sym_i64] = ACTIONS(765), + [anon_sym_u128] = ACTIONS(765), + [anon_sym_i128] = ACTIONS(765), + [anon_sym_isize] = ACTIONS(765), + [anon_sym_usize] = ACTIONS(765), + [anon_sym_f32] = ACTIONS(765), + [anon_sym_f64] = ACTIONS(765), + [anon_sym_bool] = ACTIONS(765), + [anon_sym_str] = ACTIONS(765), + [anon_sym_char] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_AMP] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_DOT_DOT] = ACTIONS(777), + [anon_sym_COMMA] = ACTIONS(757), + [anon_sym_COLON_COLON] = ACTIONS(780), + [anon_sym_POUND] = ACTIONS(783), + [anon_sym_SQUOTE] = ACTIONS(786), + [anon_sym_async] = ACTIONS(789), + [anon_sym_break] = ACTIONS(792), + [anon_sym_const] = ACTIONS(795), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_default] = ACTIONS(801), + [anon_sym_for] = ACTIONS(804), + [anon_sym_gen] = ACTIONS(807), + [anon_sym_if] = ACTIONS(810), + [anon_sym_loop] = ACTIONS(813), + [anon_sym_match] = ACTIONS(816), + [anon_sym_return] = ACTIONS(819), + [anon_sym_static] = ACTIONS(822), + [anon_sym_union] = ACTIONS(801), + [anon_sym_unsafe] = ACTIONS(825), + [anon_sym_while] = ACTIONS(828), + [anon_sym_yield] = ACTIONS(831), + [anon_sym_move] = ACTIONS(834), + [anon_sym_try] = ACTIONS(837), + [sym_integer_literal] = ACTIONS(840), + [aux_sym_string_literal_token1] = ACTIONS(843), + [sym_char_literal] = ACTIONS(840), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(849), + [sym_super] = ACTIONS(852), + [sym_crate] = ACTIONS(852), + [sym_metavariable] = ACTIONS(855), + [sym__raw_string_literal_start] = ACTIONS(858), + [sym_float_literal] = ACTIONS(840), + }, + [STATE(136)] = { + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(861), + [anon_sym_i8] = ACTIONS(861), + [anon_sym_u16] = ACTIONS(861), + [anon_sym_i16] = ACTIONS(861), + [anon_sym_u32] = ACTIONS(861), + [anon_sym_i32] = ACTIONS(861), + [anon_sym_u64] = ACTIONS(861), + [anon_sym_i64] = ACTIONS(861), + [anon_sym_u128] = ACTIONS(861), + [anon_sym_i128] = ACTIONS(861), + [anon_sym_isize] = ACTIONS(861), + [anon_sym_usize] = ACTIONS(861), + [anon_sym_f32] = ACTIONS(861), + [anon_sym_f64] = ACTIONS(861), + [anon_sym_bool] = ACTIONS(861), + [anon_sym_str] = ACTIONS(861), + [anon_sym_char] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_as] = ACTIONS(861), + [anon_sym_async] = ACTIONS(861), + [anon_sym_await] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_enum] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_gen] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_impl] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_mod] = ACTIONS(861), + [anon_sym_pub] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_static] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(861), + [anon_sym_trait] = ACTIONS(861), + [anon_sym_type] = ACTIONS(861), + [anon_sym_union] = ACTIONS(861), + [anon_sym_unsafe] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [sym_mutable_specifier] = ACTIONS(861), + [sym_integer_literal] = ACTIONS(863), + [aux_sym_string_literal_token1] = ACTIONS(863), + [sym_char_literal] = ACTIONS(863), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(861), + [sym_super] = ACTIONS(861), + [sym_crate] = ACTIONS(861), + [sym_metavariable] = ACTIONS(863), + [sym__raw_string_literal_start] = ACTIONS(863), + [sym_float_literal] = ACTIONS(863), + }, + [STATE(137)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), [aux_sym_enum_variant_list_repeat1] = STATE(138), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_RBRACK] = ACTIONS(865), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32429,9 +32861,9 @@ 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(746), + [anon_sym_COMMA] = ACTIONS(867), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -32465,526 +32897,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(135)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_async] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(803), - [anon_sym_for] = ACTIONS(806), - [anon_sym_gen] = ACTIONS(809), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_match] = ACTIONS(818), - [anon_sym_return] = ACTIONS(821), - [anon_sym_static] = ACTIONS(824), - [anon_sym_union] = ACTIONS(803), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_move] = ACTIONS(836), - [anon_sym_try] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(845), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(851), - [sym_super] = ACTIONS(854), - [sym_crate] = ACTIONS(854), - [sym_metavariable] = ACTIONS(857), - [sym__raw_string_literal_start] = ACTIONS(860), - [sym_float_literal] = ACTIONS(842), - }, - [STATE(136)] = { - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u128] = ACTIONS(863), - [anon_sym_i128] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_str] = ACTIONS(863), - [anon_sym_char] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(863), - [anon_sym_as] = ACTIONS(863), - [anon_sym_async] = ACTIONS(863), - [anon_sym_await] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_const] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_default] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_fn] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_gen] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_impl] = ACTIONS(863), - [anon_sym_let] = ACTIONS(863), - [anon_sym_loop] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(863), - [anon_sym_pub] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_trait] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_union] = ACTIONS(863), - [anon_sym_unsafe] = ACTIONS(863), - [anon_sym_use] = ACTIONS(863), - [anon_sym_where] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [sym_mutable_specifier] = ACTIONS(863), - [sym_integer_literal] = ACTIONS(865), - [aux_sym_string_literal_token1] = ACTIONS(865), - [sym_char_literal] = ACTIONS(865), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(863), - [sym_super] = ACTIONS(863), - [sym_crate] = ACTIONS(863), - [sym_metavariable] = ACTIONS(865), - [sym__raw_string_literal_start] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), - }, - [STATE(137)] = { - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), - }, [STATE(138)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(750), - [anon_sym_LPAREN] = ACTIONS(753), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_async] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(803), - [anon_sym_for] = ACTIONS(806), - [anon_sym_gen] = ACTIONS(809), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_match] = ACTIONS(818), - [anon_sym_return] = ACTIONS(821), - [anon_sym_static] = ACTIONS(824), - [anon_sym_union] = ACTIONS(803), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_move] = ACTIONS(836), - [anon_sym_try] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(845), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(851), - [sym_super] = ACTIONS(854), - [sym_crate] = ACTIONS(854), - [sym_metavariable] = ACTIONS(857), - [sym__raw_string_literal_start] = ACTIONS(860), - [sym_float_literal] = ACTIONS(842), - }, - [STATE(139)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33016,7 +32980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COMMA] = ACTIONS(873), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33050,62 +33014,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(140)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(135), + [STATE(139)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(875), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(875), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33133,7 +33097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COMMA] = ACTIONS(877), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33167,58 +33131,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(141)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(213), + [STATE(140)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(879), @@ -33250,7 +33214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COMMA] = ACTIONS(881), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33284,62 +33248,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(141)] = { + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_EQ_GT] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_u8] = ACTIONS(883), + [anon_sym_i8] = ACTIONS(883), + [anon_sym_u16] = ACTIONS(883), + [anon_sym_i16] = ACTIONS(883), + [anon_sym_u32] = ACTIONS(883), + [anon_sym_i32] = ACTIONS(883), + [anon_sym_u64] = ACTIONS(883), + [anon_sym_i64] = ACTIONS(883), + [anon_sym_u128] = ACTIONS(883), + [anon_sym_i128] = ACTIONS(883), + [anon_sym_isize] = ACTIONS(883), + [anon_sym_usize] = ACTIONS(883), + [anon_sym_f32] = ACTIONS(883), + [anon_sym_f64] = ACTIONS(883), + [anon_sym_bool] = ACTIONS(883), + [anon_sym_str] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(571), + [anon_sym_DASH_EQ] = ACTIONS(571), + [anon_sym_STAR_EQ] = ACTIONS(571), + [anon_sym_SLASH_EQ] = ACTIONS(571), + [anon_sym_PERCENT_EQ] = ACTIONS(571), + [anon_sym_CARET_EQ] = ACTIONS(571), + [anon_sym_AMP_EQ] = ACTIONS(571), + [anon_sym_PIPE_EQ] = ACTIONS(571), + [anon_sym_LT_LT_EQ] = ACTIONS(571), + [anon_sym_GT_GT_EQ] = ACTIONS(571), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(571), + [anon_sym_LT_EQ] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(571), + [anon_sym__] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(571), + [anon_sym_DOT_DOT_EQ] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_COLON_COLON] = ACTIONS(571), + [anon_sym_DASH_GT] = ACTIONS(571), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(883), + [anon_sym_as] = ACTIONS(883), + [anon_sym_async] = ACTIONS(883), + [anon_sym_await] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_const] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_gen] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_impl] = ACTIONS(883), + [anon_sym_let] = ACTIONS(883), + [anon_sym_loop] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [anon_sym_mod] = ACTIONS(883), + [anon_sym_pub] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_struct] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_union] = ACTIONS(883), + [anon_sym_unsafe] = ACTIONS(883), + [anon_sym_use] = ACTIONS(883), + [anon_sym_where] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [sym_mutable_specifier] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(885), + [aux_sym_string_literal_token1] = ACTIONS(885), + [sym_char_literal] = ACTIONS(885), + [anon_sym_true] = ACTIONS(883), + [anon_sym_false] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_crate] = ACTIONS(883), + [sym_metavariable] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), + }, [STATE(142)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1617), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(143), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(883), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(887), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33365,9 +33446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(889), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33402,178 +33483,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(143)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_SLASH] = ACTIONS(894), - [anon_sym_PERCENT] = ACTIONS(894), - [anon_sym_CARET] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(894), - [anon_sym_GT_GT] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(889), - [anon_sym_DASH_EQ] = ACTIONS(889), - [anon_sym_STAR_EQ] = ACTIONS(889), - [anon_sym_SLASH_EQ] = ACTIONS(889), - [anon_sym_PERCENT_EQ] = ACTIONS(889), - [anon_sym_CARET_EQ] = ACTIONS(889), - [anon_sym_AMP_EQ] = ACTIONS(889), - [anon_sym_PIPE_EQ] = ACTIONS(889), - [anon_sym_LT_LT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_EQ] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(894), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), - [anon_sym__] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_COLON_COLON] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(889), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym_metavariable] = ACTIONS(892), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), - }, - [STATE(144)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1625), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), [aux_sym_enum_variant_list_repeat1] = STATE(134), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_RBRACK] = ACTIONS(891), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33599,9 +33563,9 @@ 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(899), + [anon_sym_COMMA] = ACTIONS(893), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33635,62 +33599,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(144)] = { + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym__non_special_token_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_RPAREN] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(900), + [anon_sym_RBRACK] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(902), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_STAR] = ACTIONS(902), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_u8] = ACTIONS(895), + [anon_sym_i8] = ACTIONS(895), + [anon_sym_u16] = ACTIONS(895), + [anon_sym_i16] = ACTIONS(895), + [anon_sym_u32] = ACTIONS(895), + [anon_sym_i32] = ACTIONS(895), + [anon_sym_u64] = ACTIONS(895), + [anon_sym_i64] = ACTIONS(895), + [anon_sym_u128] = ACTIONS(895), + [anon_sym_i128] = ACTIONS(895), + [anon_sym_isize] = ACTIONS(895), + [anon_sym_usize] = ACTIONS(895), + [anon_sym_f32] = ACTIONS(895), + [anon_sym_f64] = ACTIONS(895), + [anon_sym_bool] = ACTIONS(895), + [anon_sym_str] = ACTIONS(895), + [anon_sym_char] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(902), + [anon_sym_CARET] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_PIPE] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(902), + [anon_sym_GT_GT] = ACTIONS(902), + [anon_sym_PLUS_EQ] = ACTIONS(897), + [anon_sym_DASH_EQ] = ACTIONS(897), + [anon_sym_STAR_EQ] = ACTIONS(897), + [anon_sym_SLASH_EQ] = ACTIONS(897), + [anon_sym_PERCENT_EQ] = ACTIONS(897), + [anon_sym_CARET_EQ] = ACTIONS(897), + [anon_sym_AMP_EQ] = ACTIONS(897), + [anon_sym_PIPE_EQ] = ACTIONS(897), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_GT_GT_EQ] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym__] = ACTIONS(902), + [anon_sym_DOT] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_COLON_COLON] = ACTIONS(897), + [anon_sym_DASH_GT] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [anon_sym_SQUOTE] = ACTIONS(895), + [anon_sym_as] = ACTIONS(895), + [anon_sym_async] = ACTIONS(895), + [anon_sym_await] = ACTIONS(895), + [anon_sym_break] = ACTIONS(895), + [anon_sym_const] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_default] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(895), + [anon_sym_fn] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_gen] = ACTIONS(895), + [anon_sym_if] = ACTIONS(895), + [anon_sym_impl] = ACTIONS(895), + [anon_sym_let] = ACTIONS(895), + [anon_sym_loop] = ACTIONS(895), + [anon_sym_match] = ACTIONS(895), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_pub] = ACTIONS(895), + [anon_sym_return] = ACTIONS(895), + [anon_sym_static] = ACTIONS(895), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_trait] = ACTIONS(895), + [anon_sym_type] = ACTIONS(895), + [anon_sym_union] = ACTIONS(895), + [anon_sym_unsafe] = ACTIONS(895), + [anon_sym_use] = ACTIONS(895), + [anon_sym_where] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [sym_mutable_specifier] = ACTIONS(895), + [sym_integer_literal] = ACTIONS(900), + [aux_sym_string_literal_token1] = ACTIONS(900), + [sym_char_literal] = ACTIONS(900), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(895), + [sym_super] = ACTIONS(895), + [sym_crate] = ACTIONS(895), + [sym_metavariable] = ACTIONS(900), + [sym__raw_string_literal_start] = ACTIONS(900), + [sym_float_literal] = ACTIONS(900), + }, [STATE(145)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(901), + [anon_sym_RBRACK] = ACTIONS(905), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33717,7 +33798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -33752,356 +33833,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(146)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_EQ_GT] = ACTIONS(905), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_u8] = ACTIONS(903), - [anon_sym_i8] = ACTIONS(903), - [anon_sym_u16] = ACTIONS(903), - [anon_sym_i16] = ACTIONS(903), - [anon_sym_u32] = ACTIONS(903), - [anon_sym_i32] = ACTIONS(903), - [anon_sym_u64] = ACTIONS(903), - [anon_sym_i64] = ACTIONS(903), - [anon_sym_u128] = ACTIONS(903), - [anon_sym_i128] = ACTIONS(903), - [anon_sym_isize] = ACTIONS(903), - [anon_sym_usize] = ACTIONS(903), - [anon_sym_f32] = ACTIONS(903), - [anon_sym_f64] = ACTIONS(903), - [anon_sym_bool] = ACTIONS(903), - [anon_sym_str] = ACTIONS(903), - [anon_sym_char] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(903), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(905), - [anon_sym_DASH_EQ] = ACTIONS(905), - [anon_sym_STAR_EQ] = ACTIONS(905), - [anon_sym_SLASH_EQ] = ACTIONS(905), - [anon_sym_PERCENT_EQ] = ACTIONS(905), - [anon_sym_CARET_EQ] = ACTIONS(905), - [anon_sym_AMP_EQ] = ACTIONS(905), - [anon_sym_PIPE_EQ] = ACTIONS(905), - [anon_sym_LT_LT_EQ] = ACTIONS(905), - [anon_sym_GT_GT_EQ] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(905), - [anon_sym_LT_EQ] = ACTIONS(905), - [anon_sym_AT] = ACTIONS(905), - [anon_sym__] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(905), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(905), - [anon_sym_DASH_GT] = ACTIONS(905), - [anon_sym_POUND] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_fn] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_gen] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_impl] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_pub] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_static] = ACTIONS(903), - [anon_sym_struct] = ACTIONS(903), - [anon_sym_trait] = ACTIONS(903), - [anon_sym_type] = ACTIONS(903), - [anon_sym_union] = ACTIONS(903), - [anon_sym_unsafe] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [sym_mutable_specifier] = ACTIONS(903), - [sym_integer_literal] = ACTIONS(905), - [aux_sym_string_literal_token1] = ACTIONS(905), - [sym_char_literal] = ACTIONS(905), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_crate] = ACTIONS(903), - [sym_metavariable] = ACTIONS(905), - [sym__raw_string_literal_start] = ACTIONS(905), - [sym_float_literal] = ACTIONS(905), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(147)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u128] = ACTIONS(907), - [anon_sym_i128] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_str] = ACTIONS(907), - [anon_sym_char] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(907), - [anon_sym_as] = ACTIONS(907), - [anon_sym_async] = ACTIONS(907), - [anon_sym_await] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_fn] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_gen] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_impl] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_pub] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_trait] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_union] = ACTIONS(907), - [anon_sym_unsafe] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [sym_mutable_specifier] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(909), - [aux_sym_string_literal_token1] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(907), - [sym_crate] = ACTIONS(907), - [sym_metavariable] = ACTIONS(909), - [sym__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(148)] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_RBRACK] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_EQ_GT] = ACTIONS(865), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_QMARK] = ACTIONS(865), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u128] = ACTIONS(863), - [anon_sym_i128] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_str] = ACTIONS(863), - [anon_sym_char] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_PERCENT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(863), - [anon_sym_PIPE] = ACTIONS(863), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_LT_LT] = ACTIONS(863), - [anon_sym_GT_GT] = ACTIONS(863), - [anon_sym_PLUS_EQ] = ACTIONS(865), - [anon_sym_DASH_EQ] = ACTIONS(865), - [anon_sym_STAR_EQ] = ACTIONS(865), - [anon_sym_SLASH_EQ] = ACTIONS(865), - [anon_sym_PERCENT_EQ] = ACTIONS(865), - [anon_sym_CARET_EQ] = ACTIONS(865), - [anon_sym_AMP_EQ] = ACTIONS(865), - [anon_sym_PIPE_EQ] = ACTIONS(865), - [anon_sym_LT_LT_EQ] = ACTIONS(865), - [anon_sym_GT_GT_EQ] = ACTIONS(865), - [anon_sym_EQ] = ACTIONS(863), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(865), - [anon_sym__] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [anon_sym_COMMA] = ACTIONS(865), - [anon_sym_COLON_COLON] = ACTIONS(865), - [anon_sym_DASH_GT] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(865), - [anon_sym_SQUOTE] = ACTIONS(863), - [anon_sym_as] = ACTIONS(863), - [anon_sym_async] = ACTIONS(863), - [anon_sym_await] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_const] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_default] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_fn] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_gen] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_impl] = ACTIONS(863), - [anon_sym_let] = ACTIONS(863), - [anon_sym_loop] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_mod] = ACTIONS(863), - [anon_sym_pub] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_trait] = ACTIONS(863), - [anon_sym_type] = ACTIONS(863), - [anon_sym_union] = ACTIONS(863), - [anon_sym_unsafe] = ACTIONS(863), - [anon_sym_use] = ACTIONS(863), - [anon_sym_where] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [sym_mutable_specifier] = ACTIONS(863), - [sym_integer_literal] = ACTIONS(865), - [aux_sym_string_literal_token1] = ACTIONS(865), - [sym_char_literal] = ACTIONS(865), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(863), - [sym_super] = ACTIONS(863), - [sym_crate] = ACTIONS(863), - [sym_metavariable] = ACTIONS(865), - [sym__raw_string_literal_start] = ACTIONS(865), - [sym_float_literal] = ACTIONS(865), - }, - [STATE(149)] = { - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), [sym_identifier] = ACTIONS(911), [anon_sym_SEMI] = ACTIONS(913), [anon_sym_LPAREN] = ACTIONS(913), @@ -34215,874 +34180,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(913), [sym_float_literal] = ACTIONS(913), }, + [STATE(149)] = { + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [sym_identifier] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_EQ_GT] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_u8] = ACTIONS(861), + [anon_sym_i8] = ACTIONS(861), + [anon_sym_u16] = ACTIONS(861), + [anon_sym_i16] = ACTIONS(861), + [anon_sym_u32] = ACTIONS(861), + [anon_sym_i32] = ACTIONS(861), + [anon_sym_u64] = ACTIONS(861), + [anon_sym_i64] = ACTIONS(861), + [anon_sym_u128] = ACTIONS(861), + [anon_sym_i128] = ACTIONS(861), + [anon_sym_isize] = ACTIONS(861), + [anon_sym_usize] = ACTIONS(861), + [anon_sym_f32] = ACTIONS(861), + [anon_sym_f64] = ACTIONS(861), + [anon_sym_bool] = ACTIONS(861), + [anon_sym_str] = ACTIONS(861), + [anon_sym_char] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_PLUS_EQ] = ACTIONS(863), + [anon_sym_DASH_EQ] = ACTIONS(863), + [anon_sym_STAR_EQ] = ACTIONS(863), + [anon_sym_SLASH_EQ] = ACTIONS(863), + [anon_sym_PERCENT_EQ] = ACTIONS(863), + [anon_sym_CARET_EQ] = ACTIONS(863), + [anon_sym_AMP_EQ] = ACTIONS(863), + [anon_sym_PIPE_EQ] = ACTIONS(863), + [anon_sym_LT_LT_EQ] = ACTIONS(863), + [anon_sym_GT_GT_EQ] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [anon_sym__] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_COLON_COLON] = ACTIONS(863), + [anon_sym_DASH_GT] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_as] = ACTIONS(861), + [anon_sym_async] = ACTIONS(861), + [anon_sym_await] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_enum] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_gen] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_impl] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_mod] = ACTIONS(861), + [anon_sym_pub] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_static] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(861), + [anon_sym_trait] = ACTIONS(861), + [anon_sym_type] = ACTIONS(861), + [anon_sym_union] = ACTIONS(861), + [anon_sym_unsafe] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [sym_mutable_specifier] = ACTIONS(861), + [sym_integer_literal] = ACTIONS(863), + [aux_sym_string_literal_token1] = ACTIONS(863), + [sym_char_literal] = ACTIONS(863), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(861), + [sym_super] = ACTIONS(861), + [sym_crate] = ACTIONS(861), + [sym_metavariable] = ACTIONS(863), + [sym__raw_string_literal_start] = ACTIONS(863), + [sym_float_literal] = ACTIONS(863), + }, [STATE(150)] = { [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_RPAREN] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(919), + [anon_sym_RBRACK] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_EQ_GT] = ACTIONS(919), + [anon_sym_COLON] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(919), + [anon_sym_u8] = ACTIONS(917), + [anon_sym_i8] = ACTIONS(917), + [anon_sym_u16] = ACTIONS(917), + [anon_sym_i16] = ACTIONS(917), + [anon_sym_u32] = ACTIONS(917), + [anon_sym_i32] = ACTIONS(917), + [anon_sym_u64] = ACTIONS(917), + [anon_sym_i64] = ACTIONS(917), + [anon_sym_u128] = ACTIONS(917), + [anon_sym_i128] = ACTIONS(917), + [anon_sym_isize] = ACTIONS(917), + [anon_sym_usize] = ACTIONS(917), + [anon_sym_f32] = ACTIONS(917), + [anon_sym_f64] = ACTIONS(917), + [anon_sym_bool] = ACTIONS(917), + [anon_sym_str] = ACTIONS(917), + [anon_sym_char] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_PERCENT] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_AMP] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(917), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(917), + [anon_sym_GT_GT] = ACTIONS(917), + [anon_sym_PLUS_EQ] = ACTIONS(919), + [anon_sym_DASH_EQ] = ACTIONS(919), + [anon_sym_STAR_EQ] = ACTIONS(919), + [anon_sym_SLASH_EQ] = ACTIONS(919), + [anon_sym_PERCENT_EQ] = ACTIONS(919), + [anon_sym_CARET_EQ] = ACTIONS(919), + [anon_sym_AMP_EQ] = ACTIONS(919), + [anon_sym_PIPE_EQ] = ACTIONS(919), + [anon_sym_LT_LT_EQ] = ACTIONS(919), + [anon_sym_GT_GT_EQ] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_EQ_EQ] = ACTIONS(919), + [anon_sym_BANG_EQ] = ACTIONS(919), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_GT_EQ] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [anon_sym__] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_COLON_COLON] = ACTIONS(919), + [anon_sym_DASH_GT] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(917), + [anon_sym_as] = ACTIONS(917), + [anon_sym_async] = ACTIONS(917), + [anon_sym_await] = ACTIONS(917), + [anon_sym_break] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_default] = ACTIONS(917), + [anon_sym_enum] = ACTIONS(917), + [anon_sym_fn] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_gen] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_impl] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_mod] = ACTIONS(917), + [anon_sym_pub] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_static] = ACTIONS(917), + [anon_sym_struct] = ACTIONS(917), + [anon_sym_trait] = ACTIONS(917), + [anon_sym_type] = ACTIONS(917), + [anon_sym_union] = ACTIONS(917), + [anon_sym_unsafe] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_where] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [sym_mutable_specifier] = ACTIONS(917), + [sym_integer_literal] = ACTIONS(919), + [aux_sym_string_literal_token1] = ACTIONS(919), + [sym_char_literal] = ACTIONS(919), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(917), + [sym_super] = ACTIONS(917), + [sym_crate] = ACTIONS(917), + [sym_metavariable] = ACTIONS(919), + [sym__raw_string_literal_start] = ACTIONS(919), + [sym_float_literal] = ACTIONS(919), }, [STATE(151)] = { [sym_line_comment] = STATE(151), [sym_block_comment] = STATE(151), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym_metavariable] = ACTIONS(917), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), + [sym_identifier] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(921), + [anon_sym_i8] = ACTIONS(921), + [anon_sym_u16] = ACTIONS(921), + [anon_sym_i16] = ACTIONS(921), + [anon_sym_u32] = ACTIONS(921), + [anon_sym_i32] = ACTIONS(921), + [anon_sym_u64] = ACTIONS(921), + [anon_sym_i64] = ACTIONS(921), + [anon_sym_u128] = ACTIONS(921), + [anon_sym_i128] = ACTIONS(921), + [anon_sym_isize] = ACTIONS(921), + [anon_sym_usize] = ACTIONS(921), + [anon_sym_f32] = ACTIONS(921), + [anon_sym_f64] = ACTIONS(921), + [anon_sym_bool] = ACTIONS(921), + [anon_sym_str] = ACTIONS(921), + [anon_sym_char] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_PERCENT_EQ] = ACTIONS(923), + [anon_sym_CARET_EQ] = ACTIONS(923), + [anon_sym_AMP_EQ] = ACTIONS(923), + [anon_sym_PIPE_EQ] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(923), + [anon_sym_GT_GT_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym__] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_COLON_COLON] = ACTIONS(923), + [anon_sym_DASH_GT] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_as] = ACTIONS(921), + [anon_sym_async] = ACTIONS(921), + [anon_sym_await] = ACTIONS(921), + [anon_sym_break] = ACTIONS(921), + [anon_sym_const] = ACTIONS(921), + [anon_sym_continue] = ACTIONS(921), + [anon_sym_default] = ACTIONS(921), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_fn] = ACTIONS(921), + [anon_sym_for] = ACTIONS(921), + [anon_sym_gen] = ACTIONS(921), + [anon_sym_if] = ACTIONS(921), + [anon_sym_impl] = ACTIONS(921), + [anon_sym_let] = ACTIONS(921), + [anon_sym_loop] = ACTIONS(921), + [anon_sym_match] = ACTIONS(921), + [anon_sym_mod] = ACTIONS(921), + [anon_sym_pub] = ACTIONS(921), + [anon_sym_return] = ACTIONS(921), + [anon_sym_static] = ACTIONS(921), + [anon_sym_struct] = ACTIONS(921), + [anon_sym_trait] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_union] = ACTIONS(921), + [anon_sym_unsafe] = ACTIONS(921), + [anon_sym_use] = ACTIONS(921), + [anon_sym_where] = ACTIONS(921), + [anon_sym_while] = ACTIONS(921), + [sym_mutable_specifier] = ACTIONS(921), + [sym_integer_literal] = ACTIONS(923), + [aux_sym_string_literal_token1] = ACTIONS(923), + [sym_char_literal] = ACTIONS(923), + [anon_sym_true] = ACTIONS(921), + [anon_sym_false] = ACTIONS(921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(921), + [sym_super] = ACTIONS(921), + [sym_crate] = ACTIONS(921), + [sym_metavariable] = ACTIONS(923), + [sym__raw_string_literal_start] = ACTIONS(923), + [sym_float_literal] = ACTIONS(923), }, [STATE(152)] = { [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_gen] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_pub] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_static] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_trait] = ACTIONS(919), - [anon_sym_type] = ACTIONS(919), - [anon_sym_union] = ACTIONS(919), - [anon_sym_unsafe] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [sym_mutable_specifier] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(921), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_crate] = ACTIONS(919), - [sym_metavariable] = ACTIONS(921), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), + [sym_identifier] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_COLON] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(927), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(925), + [anon_sym_i128] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_str] = ACTIONS(925), + [anon_sym_char] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_PERCENT_EQ] = ACTIONS(927), + [anon_sym_CARET_EQ] = ACTIONS(927), + [anon_sym_AMP_EQ] = ACTIONS(927), + [anon_sym_PIPE_EQ] = ACTIONS(927), + [anon_sym_LT_LT_EQ] = ACTIONS(927), + [anon_sym_GT_GT_EQ] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [anon_sym__] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(927), + [anon_sym_DASH_GT] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_async] = ACTIONS(925), + [anon_sym_await] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_default] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(925), + [anon_sym_fn] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_gen] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_impl] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_mod] = ACTIONS(925), + [anon_sym_pub] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_static] = ACTIONS(925), + [anon_sym_struct] = ACTIONS(925), + [anon_sym_trait] = ACTIONS(925), + [anon_sym_type] = ACTIONS(925), + [anon_sym_union] = ACTIONS(925), + [anon_sym_unsafe] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_where] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [sym_mutable_specifier] = ACTIONS(925), + [sym_integer_literal] = ACTIONS(927), + [aux_sym_string_literal_token1] = ACTIONS(927), + [sym_char_literal] = ACTIONS(927), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(925), + [sym_super] = ACTIONS(925), + [sym_crate] = ACTIONS(925), + [sym_metavariable] = ACTIONS(927), + [sym__raw_string_literal_start] = ACTIONS(927), + [sym_float_literal] = ACTIONS(927), }, [STATE(153)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2792), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u128] = ACTIONS(929), + [anon_sym_i128] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_str] = ACTIONS(929), + [anon_sym_char] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym__] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_COLON_COLON] = ACTIONS(931), + [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_async] = ACTIONS(929), + [anon_sym_await] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_default] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(929), + [anon_sym_fn] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_gen] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_impl] = ACTIONS(929), [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_pub] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_static] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_trait] = ACTIONS(929), + [anon_sym_type] = ACTIONS(929), + [anon_sym_union] = ACTIONS(929), + [anon_sym_unsafe] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [sym_mutable_specifier] = ACTIONS(929), + [sym_integer_literal] = ACTIONS(931), + [aux_sym_string_literal_token1] = ACTIONS(931), + [sym_char_literal] = ACTIONS(931), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(929), + [sym_super] = ACTIONS(929), + [sym_crate] = ACTIONS(929), + [sym_metavariable] = ACTIONS(931), + [sym__raw_string_literal_start] = ACTIONS(931), + [sym_float_literal] = ACTIONS(931), }, [STATE(154)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ_GT] = ACTIONS(869), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(869), - [anon_sym_u8] = ACTIONS(867), - [anon_sym_i8] = ACTIONS(867), - [anon_sym_u16] = ACTIONS(867), - [anon_sym_i16] = ACTIONS(867), - [anon_sym_u32] = ACTIONS(867), - [anon_sym_i32] = ACTIONS(867), - [anon_sym_u64] = ACTIONS(867), - [anon_sym_i64] = ACTIONS(867), - [anon_sym_u128] = ACTIONS(867), - [anon_sym_i128] = ACTIONS(867), - [anon_sym_isize] = ACTIONS(867), - [anon_sym_usize] = ACTIONS(867), - [anon_sym_f32] = ACTIONS(867), - [anon_sym_f64] = ACTIONS(867), - [anon_sym_bool] = ACTIONS(867), - [anon_sym_str] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_SLASH] = ACTIONS(867), - [anon_sym_PERCENT] = ACTIONS(867), - [anon_sym_CARET] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(869), - [anon_sym_PIPE_PIPE] = ACTIONS(869), - [anon_sym_LT_LT] = ACTIONS(867), - [anon_sym_GT_GT] = ACTIONS(867), - [anon_sym_PLUS_EQ] = ACTIONS(869), - [anon_sym_DASH_EQ] = ACTIONS(869), - [anon_sym_STAR_EQ] = ACTIONS(869), - [anon_sym_SLASH_EQ] = ACTIONS(869), - [anon_sym_PERCENT_EQ] = ACTIONS(869), - [anon_sym_CARET_EQ] = ACTIONS(869), - [anon_sym_AMP_EQ] = ACTIONS(869), - [anon_sym_PIPE_EQ] = ACTIONS(869), - [anon_sym_LT_LT_EQ] = ACTIONS(869), - [anon_sym_GT_GT_EQ] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym__] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT] = ACTIONS(867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [anon_sym_COMMA] = ACTIONS(869), - [anon_sym_COLON_COLON] = ACTIONS(869), - [anon_sym_DASH_GT] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(867), - [anon_sym_as] = ACTIONS(867), - [anon_sym_async] = ACTIONS(867), - [anon_sym_await] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_const] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_fn] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_gen] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_impl] = ACTIONS(867), - [anon_sym_let] = ACTIONS(867), - [anon_sym_loop] = ACTIONS(867), - [anon_sym_match] = ACTIONS(867), - [anon_sym_mod] = ACTIONS(867), - [anon_sym_pub] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_struct] = ACTIONS(867), - [anon_sym_trait] = ACTIONS(867), - [anon_sym_type] = ACTIONS(867), - [anon_sym_union] = ACTIONS(867), - [anon_sym_unsafe] = ACTIONS(867), - [anon_sym_use] = ACTIONS(867), - [anon_sym_where] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [sym_mutable_specifier] = ACTIONS(867), - [sym_integer_literal] = ACTIONS(869), - [aux_sym_string_literal_token1] = ACTIONS(869), - [sym_char_literal] = ACTIONS(869), - [anon_sym_true] = ACTIONS(867), - [anon_sym_false] = ACTIONS(867), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_crate] = ACTIONS(867), - [sym_metavariable] = ACTIONS(869), - [sym__raw_string_literal_start] = ACTIONS(869), - [sym_float_literal] = ACTIONS(869), - }, - [STATE(155)] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_RPAREN] = ACTIONS(935), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_EQ_GT] = ACTIONS(935), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_u8] = ACTIONS(933), - [anon_sym_i8] = ACTIONS(933), - [anon_sym_u16] = ACTIONS(933), - [anon_sym_i16] = ACTIONS(933), - [anon_sym_u32] = ACTIONS(933), - [anon_sym_i32] = ACTIONS(933), - [anon_sym_u64] = ACTIONS(933), - [anon_sym_i64] = ACTIONS(933), - [anon_sym_u128] = ACTIONS(933), - [anon_sym_i128] = ACTIONS(933), - [anon_sym_isize] = ACTIONS(933), - [anon_sym_usize] = ACTIONS(933), - [anon_sym_f32] = ACTIONS(933), - [anon_sym_f64] = ACTIONS(933), - [anon_sym_bool] = ACTIONS(933), - [anon_sym_str] = ACTIONS(933), - [anon_sym_char] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_PLUS_EQ] = ACTIONS(935), - [anon_sym_DASH_EQ] = ACTIONS(935), - [anon_sym_STAR_EQ] = ACTIONS(935), - [anon_sym_SLASH_EQ] = ACTIONS(935), - [anon_sym_PERCENT_EQ] = ACTIONS(935), - [anon_sym_CARET_EQ] = ACTIONS(935), - [anon_sym_AMP_EQ] = ACTIONS(935), - [anon_sym_PIPE_EQ] = ACTIONS(935), - [anon_sym_LT_LT_EQ] = ACTIONS(935), - [anon_sym_GT_GT_EQ] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(935), - [anon_sym__] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_COLON_COLON] = ACTIONS(935), - [anon_sym_DASH_GT] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(933), - [anon_sym_as] = ACTIONS(933), - [anon_sym_async] = ACTIONS(933), - [anon_sym_await] = ACTIONS(933), - [anon_sym_break] = ACTIONS(933), - [anon_sym_const] = ACTIONS(933), - [anon_sym_continue] = ACTIONS(933), - [anon_sym_default] = ACTIONS(933), - [anon_sym_enum] = ACTIONS(933), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_for] = ACTIONS(933), - [anon_sym_gen] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(933), - [anon_sym_let] = ACTIONS(933), - [anon_sym_loop] = ACTIONS(933), - [anon_sym_match] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_pub] = ACTIONS(933), - [anon_sym_return] = ACTIONS(933), - [anon_sym_static] = ACTIONS(933), - [anon_sym_struct] = ACTIONS(933), - [anon_sym_trait] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(933), - [anon_sym_use] = ACTIONS(933), - [anon_sym_where] = ACTIONS(933), - [anon_sym_while] = ACTIONS(933), - [sym_mutable_specifier] = ACTIONS(933), - [sym_integer_literal] = ACTIONS(935), - [aux_sym_string_literal_token1] = ACTIONS(935), - [sym_char_literal] = ACTIONS(935), - [anon_sym_true] = ACTIONS(933), - [anon_sym_false] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(933), - [sym_super] = ACTIONS(933), - [sym_crate] = ACTIONS(933), - [sym_metavariable] = ACTIONS(935), - [sym__raw_string_literal_start] = ACTIONS(935), - [sym_float_literal] = ACTIONS(935), - }, - [STATE(156)] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(937), - [anon_sym_i8] = ACTIONS(937), - [anon_sym_u16] = ACTIONS(937), - [anon_sym_i16] = ACTIONS(937), - [anon_sym_u32] = ACTIONS(937), - [anon_sym_i32] = ACTIONS(937), - [anon_sym_u64] = ACTIONS(937), - [anon_sym_i64] = ACTIONS(937), - [anon_sym_u128] = ACTIONS(937), - [anon_sym_i128] = ACTIONS(937), - [anon_sym_isize] = ACTIONS(937), - [anon_sym_usize] = ACTIONS(937), - [anon_sym_f32] = ACTIONS(937), - [anon_sym_f64] = ACTIONS(937), - [anon_sym_bool] = ACTIONS(937), - [anon_sym_str] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym__] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_await] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_fn] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_gen] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_impl] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_loop] = ACTIONS(937), - [anon_sym_match] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(937), - [anon_sym_pub] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_trait] = ACTIONS(937), - [anon_sym_type] = ACTIONS(937), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsafe] = ACTIONS(937), - [anon_sym_use] = ACTIONS(937), - [anon_sym_where] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [sym_mutable_specifier] = ACTIONS(937), - [sym_integer_literal] = ACTIONS(939), - [aux_sym_string_literal_token1] = ACTIONS(939), - [sym_char_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_crate] = ACTIONS(937), - [sym_metavariable] = ACTIONS(939), - [sym__raw_string_literal_start] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), - }, - [STATE(157)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_RBRACK] = ACTIONS(933), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35109,7 +34842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -35143,62 +34876,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(158)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(199), + [STATE(155)] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u128] = ACTIONS(935), + [anon_sym_i128] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_str] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym__] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_async] = ACTIONS(935), + [anon_sym_await] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_fn] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_gen] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_pub] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_trait] = ACTIONS(935), + [anon_sym_type] = ACTIONS(935), + [anon_sym_union] = ACTIONS(935), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [sym_mutable_specifier] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(937), + [aux_sym_string_literal_token1] = ACTIONS(937), + [sym_char_literal] = ACTIONS(937), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_crate] = ACTIONS(935), + [sym_metavariable] = ACTIONS(937), + [sym__raw_string_literal_start] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), + }, + [STATE(156)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(943), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(939), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35225,7 +35074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -35259,9 +35108,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(159)] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), + [STATE(157)] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(943), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_u8] = ACTIONS(941), + [anon_sym_i8] = ACTIONS(941), + [anon_sym_u16] = ACTIONS(941), + [anon_sym_i16] = ACTIONS(941), + [anon_sym_u32] = ACTIONS(941), + [anon_sym_i32] = ACTIONS(941), + [anon_sym_u64] = ACTIONS(941), + [anon_sym_i64] = ACTIONS(941), + [anon_sym_u128] = ACTIONS(941), + [anon_sym_i128] = ACTIONS(941), + [anon_sym_isize] = ACTIONS(941), + [anon_sym_usize] = ACTIONS(941), + [anon_sym_f32] = ACTIONS(941), + [anon_sym_f64] = ACTIONS(941), + [anon_sym_bool] = ACTIONS(941), + [anon_sym_str] = ACTIONS(941), + [anon_sym_char] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(941), + [anon_sym_GT_GT] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PERCENT_EQ] = ACTIONS(943), + [anon_sym_CARET_EQ] = ACTIONS(943), + [anon_sym_AMP_EQ] = ACTIONS(943), + [anon_sym_PIPE_EQ] = ACTIONS(943), + [anon_sym_LT_LT_EQ] = ACTIONS(943), + [anon_sym_GT_GT_EQ] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(943), + [anon_sym__] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_COLON_COLON] = ACTIONS(943), + [anon_sym_DASH_GT] = ACTIONS(943), + [anon_sym_POUND] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_await] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_default] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_fn] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_gen] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_impl] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_mod] = ACTIONS(941), + [anon_sym_pub] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_trait] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_unsafe] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_where] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [sym_mutable_specifier] = ACTIONS(941), + [sym_integer_literal] = ACTIONS(943), + [aux_sym_string_literal_token1] = ACTIONS(943), + [sym_char_literal] = ACTIONS(943), + [anon_sym_true] = ACTIONS(941), + [anon_sym_false] = ACTIONS(941), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(941), + [sym_super] = ACTIONS(941), + [sym_crate] = ACTIONS(941), + [sym_metavariable] = ACTIONS(943), + [sym__raw_string_literal_start] = ACTIONS(943), + [sym_float_literal] = ACTIONS(943), + }, + [STATE(158)] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), [sym_identifier] = ACTIONS(945), [anon_sym_SEMI] = ACTIONS(947), [anon_sym_LPAREN] = ACTIONS(947), @@ -35375,62 +35340,758 @@ 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(159)] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(951), + [anon_sym_COLON] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_u8] = ACTIONS(949), + [anon_sym_i8] = ACTIONS(949), + [anon_sym_u16] = ACTIONS(949), + [anon_sym_i16] = ACTIONS(949), + [anon_sym_u32] = ACTIONS(949), + [anon_sym_i32] = ACTIONS(949), + [anon_sym_u64] = ACTIONS(949), + [anon_sym_i64] = ACTIONS(949), + [anon_sym_u128] = ACTIONS(949), + [anon_sym_i128] = ACTIONS(949), + [anon_sym_isize] = ACTIONS(949), + [anon_sym_usize] = ACTIONS(949), + [anon_sym_f32] = ACTIONS(949), + [anon_sym_f64] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_str] = ACTIONS(949), + [anon_sym_char] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_PERCENT_EQ] = ACTIONS(951), + [anon_sym_CARET_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(951), + [anon_sym__] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_COLON_COLON] = ACTIONS(951), + [anon_sym_DASH_GT] = ACTIONS(951), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_as] = ACTIONS(949), + [anon_sym_async] = ACTIONS(949), + [anon_sym_await] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_const] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_default] = ACTIONS(949), + [anon_sym_enum] = ACTIONS(949), + [anon_sym_fn] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_gen] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_impl] = ACTIONS(949), + [anon_sym_let] = ACTIONS(949), + [anon_sym_loop] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_pub] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_static] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_trait] = ACTIONS(949), + [anon_sym_type] = ACTIONS(949), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(949), + [anon_sym_use] = ACTIONS(949), + [anon_sym_where] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [sym_mutable_specifier] = ACTIONS(949), + [sym_integer_literal] = ACTIONS(951), + [aux_sym_string_literal_token1] = ACTIONS(951), + [sym_char_literal] = ACTIONS(951), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(949), + [sym_super] = ACTIONS(949), + [sym_crate] = ACTIONS(949), + [sym_metavariable] = ACTIONS(951), + [sym__raw_string_literal_start] = ACTIONS(951), + [sym_float_literal] = ACTIONS(951), + }, [STATE(160)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_EQ_GT] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_u8] = ACTIONS(883), + [anon_sym_i8] = ACTIONS(883), + [anon_sym_u16] = ACTIONS(883), + [anon_sym_i16] = ACTIONS(883), + [anon_sym_u32] = ACTIONS(883), + [anon_sym_i32] = ACTIONS(883), + [anon_sym_u64] = ACTIONS(883), + [anon_sym_i64] = ACTIONS(883), + [anon_sym_u128] = ACTIONS(883), + [anon_sym_i128] = ACTIONS(883), + [anon_sym_isize] = ACTIONS(883), + [anon_sym_usize] = ACTIONS(883), + [anon_sym_f32] = ACTIONS(883), + [anon_sym_f64] = ACTIONS(883), + [anon_sym_bool] = ACTIONS(883), + [anon_sym_str] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_LT_LT] = ACTIONS(883), + [anon_sym_GT_GT] = ACTIONS(883), + [anon_sym_PLUS_EQ] = ACTIONS(885), + [anon_sym_DASH_EQ] = ACTIONS(885), + [anon_sym_STAR_EQ] = ACTIONS(885), + [anon_sym_SLASH_EQ] = ACTIONS(885), + [anon_sym_PERCENT_EQ] = ACTIONS(885), + [anon_sym_CARET_EQ] = ACTIONS(885), + [anon_sym_AMP_EQ] = ACTIONS(885), + [anon_sym_PIPE_EQ] = ACTIONS(885), + [anon_sym_LT_LT_EQ] = ACTIONS(885), + [anon_sym_GT_GT_EQ] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(883), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [anon_sym__] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COLON_COLON] = ACTIONS(885), + [anon_sym_DASH_GT] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(883), + [anon_sym_as] = ACTIONS(883), + [anon_sym_async] = ACTIONS(883), + [anon_sym_await] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_const] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_gen] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_impl] = ACTIONS(883), + [anon_sym_let] = ACTIONS(883), + [anon_sym_loop] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [anon_sym_mod] = ACTIONS(883), + [anon_sym_pub] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_struct] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_union] = ACTIONS(883), + [anon_sym_unsafe] = ACTIONS(883), + [anon_sym_use] = ACTIONS(883), + [anon_sym_where] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [sym_mutable_specifier] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(885), + [aux_sym_string_literal_token1] = ACTIONS(885), + [sym_char_literal] = ACTIONS(885), + [anon_sym_true] = ACTIONS(883), + [anon_sym_false] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_crate] = ACTIONS(883), + [sym_metavariable] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), + }, + [STATE(161)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2673), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(162)] = { + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [sym_identifier] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_RPAREN] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_EQ_GT] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(863), + [anon_sym_u8] = ACTIONS(861), + [anon_sym_i8] = ACTIONS(861), + [anon_sym_u16] = ACTIONS(861), + [anon_sym_i16] = ACTIONS(861), + [anon_sym_u32] = ACTIONS(861), + [anon_sym_i32] = ACTIONS(861), + [anon_sym_u64] = ACTIONS(861), + [anon_sym_i64] = ACTIONS(861), + [anon_sym_u128] = ACTIONS(861), + [anon_sym_i128] = ACTIONS(861), + [anon_sym_isize] = ACTIONS(861), + [anon_sym_usize] = ACTIONS(861), + [anon_sym_f32] = ACTIONS(861), + [anon_sym_f64] = ACTIONS(861), + [anon_sym_bool] = ACTIONS(861), + [anon_sym_str] = ACTIONS(861), + [anon_sym_char] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_LT_LT] = ACTIONS(861), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_PLUS_EQ] = ACTIONS(863), + [anon_sym_DASH_EQ] = ACTIONS(863), + [anon_sym_STAR_EQ] = ACTIONS(863), + [anon_sym_SLASH_EQ] = ACTIONS(863), + [anon_sym_PERCENT_EQ] = ACTIONS(863), + [anon_sym_CARET_EQ] = ACTIONS(863), + [anon_sym_AMP_EQ] = ACTIONS(863), + [anon_sym_PIPE_EQ] = ACTIONS(863), + [anon_sym_LT_LT_EQ] = ACTIONS(863), + [anon_sym_GT_GT_EQ] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(863), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [anon_sym__] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_COLON_COLON] = ACTIONS(863), + [anon_sym_DASH_GT] = ACTIONS(863), + [anon_sym_POUND] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_as] = ACTIONS(861), + [anon_sym_async] = ACTIONS(861), + [anon_sym_await] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_enum] = ACTIONS(861), + [anon_sym_fn] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_gen] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_impl] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_mod] = ACTIONS(861), + [anon_sym_pub] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_static] = ACTIONS(861), + [anon_sym_struct] = ACTIONS(861), + [anon_sym_trait] = ACTIONS(861), + [anon_sym_type] = ACTIONS(861), + [anon_sym_union] = ACTIONS(861), + [anon_sym_unsafe] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [sym_mutable_specifier] = ACTIONS(861), + [sym_integer_literal] = ACTIONS(863), + [aux_sym_string_literal_token1] = ACTIONS(863), + [sym_char_literal] = ACTIONS(863), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(861), + [sym_super] = ACTIONS(861), + [sym_crate] = ACTIONS(861), + [sym_metavariable] = ACTIONS(863), + [sym__raw_string_literal_start] = ACTIONS(863), + [sym_float_literal] = ACTIONS(863), + }, + [STATE(163)] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [aux_sym__non_special_token_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(680), + [anon_sym_COLON] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(690), + [anon_sym_QMARK] = ACTIONS(680), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(690), + [anon_sym_SLASH] = ACTIONS(690), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(680), + [anon_sym_PIPE_PIPE] = ACTIONS(680), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(690), + [anon_sym_PLUS_EQ] = ACTIONS(680), + [anon_sym_DASH_EQ] = ACTIONS(680), + [anon_sym_STAR_EQ] = ACTIONS(680), + [anon_sym_SLASH_EQ] = ACTIONS(680), + [anon_sym_PERCENT_EQ] = ACTIONS(680), + [anon_sym_CARET_EQ] = ACTIONS(680), + [anon_sym_AMP_EQ] = ACTIONS(680), + [anon_sym_PIPE_EQ] = ACTIONS(680), + [anon_sym_LT_LT_EQ] = ACTIONS(680), + [anon_sym_GT_GT_EQ] = ACTIONS(680), + [anon_sym_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(680), + [anon_sym_BANG_EQ] = ACTIONS(680), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(680), + [anon_sym_LT_EQ] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym__] = ACTIONS(690), + [anon_sym_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_COLON_COLON] = ACTIONS(680), + [anon_sym_DASH_GT] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(680), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), + }, + [STATE(164)] = { + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [aux_sym__non_special_token_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_RPAREN] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(900), + [anon_sym_RBRACK] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(895), + [anon_sym_i8] = ACTIONS(895), + [anon_sym_u16] = ACTIONS(895), + [anon_sym_i16] = ACTIONS(895), + [anon_sym_u32] = ACTIONS(895), + [anon_sym_i32] = ACTIONS(895), + [anon_sym_u64] = ACTIONS(895), + [anon_sym_i64] = ACTIONS(895), + [anon_sym_u128] = ACTIONS(895), + [anon_sym_i128] = ACTIONS(895), + [anon_sym_isize] = ACTIONS(895), + [anon_sym_usize] = ACTIONS(895), + [anon_sym_f32] = ACTIONS(895), + [anon_sym_f64] = ACTIONS(895), + [anon_sym_bool] = ACTIONS(895), + [anon_sym_str] = ACTIONS(895), + [anon_sym_char] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(965), + [anon_sym_DASH_EQ] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(965), + [anon_sym_CARET_EQ] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(965), + [anon_sym_LT_LT_EQ] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym__] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_COLON_COLON] = ACTIONS(965), + [anon_sym_DASH_GT] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(895), + [anon_sym_as] = ACTIONS(895), + [anon_sym_async] = ACTIONS(895), + [anon_sym_await] = ACTIONS(895), + [anon_sym_break] = ACTIONS(895), + [anon_sym_const] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_default] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(895), + [anon_sym_fn] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_gen] = ACTIONS(895), + [anon_sym_if] = ACTIONS(895), + [anon_sym_impl] = ACTIONS(895), + [anon_sym_let] = ACTIONS(895), + [anon_sym_loop] = ACTIONS(895), + [anon_sym_match] = ACTIONS(895), + [anon_sym_mod] = ACTIONS(895), + [anon_sym_pub] = ACTIONS(895), + [anon_sym_return] = ACTIONS(895), + [anon_sym_static] = ACTIONS(895), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_trait] = ACTIONS(895), + [anon_sym_type] = ACTIONS(895), + [anon_sym_union] = ACTIONS(895), + [anon_sym_unsafe] = ACTIONS(895), + [anon_sym_use] = ACTIONS(895), + [anon_sym_where] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [sym_mutable_specifier] = ACTIONS(895), + [sym_integer_literal] = ACTIONS(900), + [aux_sym_string_literal_token1] = ACTIONS(900), + [sym_char_literal] = ACTIONS(900), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(895), + [sym_super] = ACTIONS(895), + [sym_crate] = ACTIONS(895), + [sym__raw_string_literal_start] = ACTIONS(900), + [sym_float_literal] = ACTIONS(900), + }, + [STATE(165)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(971), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35457,7 +36118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -35491,62 +36152,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(161)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [STATE(166)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(951), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(973), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35573,587 +36234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(162)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(163)] = { - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(955), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_EQ_GT] = ACTIONS(957), - [anon_sym_COLON] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(955), - [anon_sym_STAR] = ACTIONS(955), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_u8] = ACTIONS(955), - [anon_sym_i8] = ACTIONS(955), - [anon_sym_u16] = ACTIONS(955), - [anon_sym_i16] = ACTIONS(955), - [anon_sym_u32] = ACTIONS(955), - [anon_sym_i32] = ACTIONS(955), - [anon_sym_u64] = ACTIONS(955), - [anon_sym_i64] = ACTIONS(955), - [anon_sym_u128] = ACTIONS(955), - [anon_sym_i128] = ACTIONS(955), - [anon_sym_isize] = ACTIONS(955), - [anon_sym_usize] = ACTIONS(955), - [anon_sym_f32] = ACTIONS(955), - [anon_sym_f64] = ACTIONS(955), - [anon_sym_bool] = ACTIONS(955), - [anon_sym_str] = ACTIONS(955), - [anon_sym_char] = ACTIONS(955), - [anon_sym_DASH] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(955), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(955), - [anon_sym_AMP_AMP] = ACTIONS(957), - [anon_sym_PIPE_PIPE] = ACTIONS(957), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(955), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_PERCENT_EQ] = ACTIONS(957), - [anon_sym_CARET_EQ] = ACTIONS(957), - [anon_sym_AMP_EQ] = ACTIONS(957), - [anon_sym_PIPE_EQ] = ACTIONS(957), - [anon_sym_LT_LT_EQ] = ACTIONS(957), - [anon_sym_GT_GT_EQ] = ACTIONS(957), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym__] = ACTIONS(955), - [anon_sym_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_COLON_COLON] = ACTIONS(957), - [anon_sym_DASH_GT] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(957), - [anon_sym_SQUOTE] = ACTIONS(955), - [anon_sym_as] = ACTIONS(955), - [anon_sym_async] = ACTIONS(955), - [anon_sym_await] = ACTIONS(955), - [anon_sym_break] = ACTIONS(955), - [anon_sym_const] = ACTIONS(955), - [anon_sym_continue] = ACTIONS(955), - [anon_sym_default] = ACTIONS(955), - [anon_sym_enum] = ACTIONS(955), - [anon_sym_fn] = ACTIONS(955), - [anon_sym_for] = ACTIONS(955), - [anon_sym_gen] = ACTIONS(955), - [anon_sym_if] = ACTIONS(955), - [anon_sym_impl] = ACTIONS(955), - [anon_sym_let] = ACTIONS(955), - [anon_sym_loop] = ACTIONS(955), - [anon_sym_match] = ACTIONS(955), - [anon_sym_mod] = ACTIONS(955), - [anon_sym_pub] = ACTIONS(955), - [anon_sym_return] = ACTIONS(955), - [anon_sym_static] = ACTIONS(955), - [anon_sym_struct] = ACTIONS(955), - [anon_sym_trait] = ACTIONS(955), - [anon_sym_type] = ACTIONS(955), - [anon_sym_union] = ACTIONS(955), - [anon_sym_unsafe] = ACTIONS(955), - [anon_sym_use] = ACTIONS(955), - [anon_sym_where] = ACTIONS(955), - [anon_sym_while] = ACTIONS(955), - [sym_mutable_specifier] = ACTIONS(955), - [sym_integer_literal] = ACTIONS(957), - [aux_sym_string_literal_token1] = ACTIONS(957), - [sym_char_literal] = ACTIONS(957), - [anon_sym_true] = ACTIONS(955), - [anon_sym_false] = ACTIONS(955), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(955), - [sym_super] = ACTIONS(955), - [sym_crate] = ACTIONS(955), - [sym_metavariable] = ACTIONS(957), - [sym__raw_string_literal_start] = ACTIONS(957), - [sym_float_literal] = ACTIONS(957), - }, - [STATE(164)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(165)] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u128] = ACTIONS(961), - [anon_sym_i128] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_str] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PERCENT_EQ] = ACTIONS(963), - [anon_sym_CARET_EQ] = ACTIONS(963), - [anon_sym_AMP_EQ] = ACTIONS(963), - [anon_sym_PIPE_EQ] = ACTIONS(963), - [anon_sym_LT_LT_EQ] = ACTIONS(963), - [anon_sym_GT_GT_EQ] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), - [anon_sym__] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(963), - [anon_sym_DASH_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(963), - [anon_sym_SQUOTE] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_await] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_gen] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_impl] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_pub] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_union] = ACTIONS(961), - [anon_sym_unsafe] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_where] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [sym_mutable_specifier] = ACTIONS(961), - [sym_integer_literal] = ACTIONS(963), - [aux_sym_string_literal_token1] = ACTIONS(963), - [sym_char_literal] = ACTIONS(963), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym_metavariable] = ACTIONS(963), - [sym__raw_string_literal_start] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), - }, - [STATE(166)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -36190,354 +36271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(167)] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_EQ_GT] = ACTIONS(969), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(967), - [anon_sym_i8] = ACTIONS(967), - [anon_sym_u16] = ACTIONS(967), - [anon_sym_i16] = ACTIONS(967), - [anon_sym_u32] = ACTIONS(967), - [anon_sym_i32] = ACTIONS(967), - [anon_sym_u64] = ACTIONS(967), - [anon_sym_i64] = ACTIONS(967), - [anon_sym_u128] = ACTIONS(967), - [anon_sym_i128] = ACTIONS(967), - [anon_sym_isize] = ACTIONS(967), - [anon_sym_usize] = ACTIONS(967), - [anon_sym_f32] = ACTIONS(967), - [anon_sym_f64] = ACTIONS(967), - [anon_sym_bool] = ACTIONS(967), - [anon_sym_str] = ACTIONS(967), - [anon_sym_char] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(967), - [anon_sym_PERCENT] = ACTIONS(967), - [anon_sym_CARET] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_AMP] = ACTIONS(967), - [anon_sym_PIPE] = ACTIONS(967), - [anon_sym_AMP_AMP] = ACTIONS(969), - [anon_sym_PIPE_PIPE] = ACTIONS(969), - [anon_sym_LT_LT] = ACTIONS(967), - [anon_sym_GT_GT] = ACTIONS(967), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_PERCENT_EQ] = ACTIONS(969), - [anon_sym_CARET_EQ] = ACTIONS(969), - [anon_sym_AMP_EQ] = ACTIONS(969), - [anon_sym_PIPE_EQ] = ACTIONS(969), - [anon_sym_LT_LT_EQ] = ACTIONS(969), - [anon_sym_GT_GT_EQ] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym__] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_DASH_GT] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(967), - [anon_sym_as] = ACTIONS(967), - [anon_sym_async] = ACTIONS(967), - [anon_sym_await] = ACTIONS(967), - [anon_sym_break] = ACTIONS(967), - [anon_sym_const] = ACTIONS(967), - [anon_sym_continue] = ACTIONS(967), - [anon_sym_default] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(967), - [anon_sym_fn] = ACTIONS(967), - [anon_sym_for] = ACTIONS(967), - [anon_sym_gen] = ACTIONS(967), - [anon_sym_if] = ACTIONS(967), - [anon_sym_impl] = ACTIONS(967), - [anon_sym_let] = ACTIONS(967), - [anon_sym_loop] = ACTIONS(967), - [anon_sym_match] = ACTIONS(967), - [anon_sym_mod] = ACTIONS(967), - [anon_sym_pub] = ACTIONS(967), - [anon_sym_return] = ACTIONS(967), - [anon_sym_static] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_trait] = ACTIONS(967), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(967), - [anon_sym_unsafe] = ACTIONS(967), - [anon_sym_use] = ACTIONS(967), - [anon_sym_where] = ACTIONS(967), - [anon_sym_while] = ACTIONS(967), - [sym_mutable_specifier] = ACTIONS(967), - [sym_integer_literal] = ACTIONS(969), - [aux_sym_string_literal_token1] = ACTIONS(969), - [sym_char_literal] = ACTIONS(969), - [anon_sym_true] = ACTIONS(967), - [anon_sym_false] = ACTIONS(967), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(967), - [sym_super] = ACTIONS(967), - [sym_crate] = ACTIONS(967), - [sym_metavariable] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(969), - [sym_float_literal] = ACTIONS(969), - }, - [STATE(168)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2592), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_EQ_GT] = ACTIONS(973), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_QMARK] = ACTIONS(973), - [anon_sym_u8] = ACTIONS(971), - [anon_sym_i8] = ACTIONS(971), - [anon_sym_u16] = ACTIONS(971), - [anon_sym_i16] = ACTIONS(971), - [anon_sym_u32] = ACTIONS(971), - [anon_sym_i32] = ACTIONS(971), - [anon_sym_u64] = ACTIONS(971), - [anon_sym_i64] = ACTIONS(971), - [anon_sym_u128] = ACTIONS(971), - [anon_sym_i128] = ACTIONS(971), - [anon_sym_isize] = ACTIONS(971), - [anon_sym_usize] = ACTIONS(971), - [anon_sym_f32] = ACTIONS(971), - [anon_sym_f64] = ACTIONS(971), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_str] = ACTIONS(971), - [anon_sym_char] = ACTIONS(971), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_PERCENT] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_AMP_AMP] = ACTIONS(973), - [anon_sym_PIPE_PIPE] = ACTIONS(973), - [anon_sym_LT_LT] = ACTIONS(971), - [anon_sym_GT_GT] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_PERCENT_EQ] = ACTIONS(973), - [anon_sym_CARET_EQ] = ACTIONS(973), - [anon_sym_AMP_EQ] = ACTIONS(973), - [anon_sym_PIPE_EQ] = ACTIONS(973), - [anon_sym_LT_LT_EQ] = ACTIONS(973), - [anon_sym_GT_GT_EQ] = ACTIONS(973), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(973), - [anon_sym__] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_COLON_COLON] = ACTIONS(973), - [anon_sym_DASH_GT] = ACTIONS(973), - [anon_sym_POUND] = ACTIONS(973), - [anon_sym_SQUOTE] = ACTIONS(971), - [anon_sym_as] = ACTIONS(971), - [anon_sym_async] = ACTIONS(971), - [anon_sym_await] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_const] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_default] = ACTIONS(971), - [anon_sym_enum] = ACTIONS(971), - [anon_sym_fn] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_gen] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_impl] = ACTIONS(971), - [anon_sym_let] = ACTIONS(971), - [anon_sym_loop] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_mod] = ACTIONS(971), - [anon_sym_pub] = ACTIONS(971), - [anon_sym_return] = ACTIONS(971), - [anon_sym_static] = ACTIONS(971), - [anon_sym_struct] = ACTIONS(971), - [anon_sym_trait] = ACTIONS(971), - [anon_sym_type] = ACTIONS(971), - [anon_sym_union] = ACTIONS(971), - [anon_sym_unsafe] = ACTIONS(971), - [anon_sym_use] = ACTIONS(971), - [anon_sym_where] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [sym_mutable_specifier] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(973), - [aux_sym_string_literal_token1] = ACTIONS(973), - [sym_char_literal] = ACTIONS(973), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(971), - [sym_super] = ACTIONS(971), - [sym_crate] = ACTIONS(971), - [sym_metavariable] = ACTIONS(973), - [sym__raw_string_literal_start] = ACTIONS(973), - [sym_float_literal] = ACTIONS(973), - }, - [STATE(170)] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), [sym_identifier] = ACTIONS(975), [anon_sym_SEMI] = ACTIONS(977), [anon_sym_LPAREN] = ACTIONS(977), @@ -36651,107 +36384,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(977), [sym_float_literal] = ACTIONS(977), }, - [STATE(171)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), + [STATE(168)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2710), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(979), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -36760,185 +36493,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(172)] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [aux_sym__non_special_token_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(981), - [anon_sym_COLON] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(981), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(984), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(981), - [anon_sym_DASH_EQ] = ACTIONS(981), - [anon_sym_STAR_EQ] = ACTIONS(981), - [anon_sym_SLASH_EQ] = ACTIONS(981), - [anon_sym_PERCENT_EQ] = ACTIONS(981), - [anon_sym_CARET_EQ] = ACTIONS(981), - [anon_sym_AMP_EQ] = ACTIONS(981), - [anon_sym_PIPE_EQ] = ACTIONS(981), - [anon_sym_LT_LT_EQ] = ACTIONS(981), - [anon_sym_GT_GT_EQ] = ACTIONS(981), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(981), - [anon_sym_BANG_EQ] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(981), - [anon_sym_LT_EQ] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(981), - [anon_sym__] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(981), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_POUND] = ACTIONS(981), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), + [STATE(169)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2705), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(173)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(170)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(979), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(987), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36965,7 +36698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -36999,64 +36732,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(174)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1927), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(3162), - [sym__let_chain] = STATE(3165), - [sym__condition] = STATE(3509), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [STATE(171)] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_EQ_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_PERCENT_EQ] = ACTIONS(983), + [anon_sym_CARET_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [anon_sym__] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_DASH_GT] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_as] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_gen] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_loop] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_where] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [sym_mutable_specifier] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_crate] = ACTIONS(981), + [sym_metavariable] = ACTIONS(983), + [sym__raw_string_literal_start] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), + }, + [STATE(172)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_let_condition] = STATE(3354), + [sym__let_chain] = STATE(3358), + [sym__condition] = STATE(3720), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -37074,12 +36923,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(989), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -37090,7 +36939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(427), [anon_sym_gen] = ACTIONS(429), [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), + [anon_sym_let] = ACTIONS(991), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -37115,61 +36964,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(175)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(173)] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_EQ_GT] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_as] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_gen] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_static] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [sym_mutable_specifier] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), + [sym__raw_string_literal_start] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), + }, + [STATE(174)] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_gen] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym_metavariable] = ACTIONS(999), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), + }, + [STATE(175)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(1001), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -37197,7 +37278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -37232,61 +37313,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(176)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(176), [sym_block_comment] = STATE(176), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37313,7 +37394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -37350,122 +37431,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(177)] = { [sym_line_comment] = STATE(177), [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_EQ_GT] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1001), - [anon_sym_i8] = ACTIONS(1001), - [anon_sym_u16] = ACTIONS(1001), - [anon_sym_i16] = ACTIONS(1001), - [anon_sym_u32] = ACTIONS(1001), - [anon_sym_i32] = ACTIONS(1001), - [anon_sym_u64] = ACTIONS(1001), - [anon_sym_i64] = ACTIONS(1001), - [anon_sym_u128] = ACTIONS(1001), - [anon_sym_i128] = ACTIONS(1001), - [anon_sym_isize] = ACTIONS(1001), - [anon_sym_usize] = ACTIONS(1001), - [anon_sym_f32] = ACTIONS(1001), - [anon_sym_f64] = ACTIONS(1001), - [anon_sym_bool] = ACTIONS(1001), - [anon_sym_str] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1001), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym__] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_DASH_GT] = ACTIONS(1003), - [anon_sym_POUND] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_fn] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_gen] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_impl] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_pub] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_trait] = ACTIONS(1001), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [sym_mutable_specifier] = ACTIONS(1001), - [sym_integer_literal] = ACTIONS(1003), - [aux_sym_string_literal_token1] = ACTIONS(1003), - [sym_char_literal] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_crate] = ACTIONS(1001), - [sym_metavariable] = ACTIONS(1003), - [sym__raw_string_literal_start] = ACTIONS(1003), - [sym_float_literal] = ACTIONS(1003), - }, - [STATE(178)] = { - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), [sym_identifier] = ACTIONS(1005), [anon_sym_SEMI] = ACTIONS(1007), [anon_sym_LPAREN] = ACTIONS(1007), @@ -37579,58 +37544,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1007), [sym_float_literal] = ACTIONS(1007), }, - [STATE(179)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(178)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(1009), @@ -37661,7 +37626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -37695,58 +37660,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(180)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(179)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(1011), @@ -37777,7 +37742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -37811,9 +37776,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(181)] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), + [STATE(180)] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), [sym_identifier] = ACTIONS(1013), [anon_sym_SEMI] = ACTIONS(1015), [anon_sym_LPAREN] = ACTIONS(1015), @@ -37927,410 +37892,526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1015), [sym_float_literal] = ACTIONS(1015), }, + [STATE(181)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [aux_sym_enum_variant_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(182)] = { [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_RBRACK] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_EQ_GT] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_STAR] = ACTIONS(1017), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(1017), - [anon_sym_i8] = ACTIONS(1017), - [anon_sym_u16] = ACTIONS(1017), - [anon_sym_i16] = ACTIONS(1017), - [anon_sym_u32] = ACTIONS(1017), - [anon_sym_i32] = ACTIONS(1017), - [anon_sym_u64] = ACTIONS(1017), - [anon_sym_i64] = ACTIONS(1017), - [anon_sym_u128] = ACTIONS(1017), - [anon_sym_i128] = ACTIONS(1017), - [anon_sym_isize] = ACTIONS(1017), - [anon_sym_usize] = ACTIONS(1017), - [anon_sym_f32] = ACTIONS(1017), - [anon_sym_f64] = ACTIONS(1017), - [anon_sym_bool] = ACTIONS(1017), - [anon_sym_str] = ACTIONS(1017), - [anon_sym_char] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1017), - [anon_sym_PERCENT] = ACTIONS(1017), - [anon_sym_CARET] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_PIPE_PIPE] = ACTIONS(1019), - [anon_sym_LT_LT] = ACTIONS(1017), - [anon_sym_GT_GT] = ACTIONS(1017), - [anon_sym_PLUS_EQ] = ACTIONS(1019), - [anon_sym_DASH_EQ] = ACTIONS(1019), - [anon_sym_STAR_EQ] = ACTIONS(1019), - [anon_sym_SLASH_EQ] = ACTIONS(1019), - [anon_sym_PERCENT_EQ] = ACTIONS(1019), - [anon_sym_CARET_EQ] = ACTIONS(1019), - [anon_sym_AMP_EQ] = ACTIONS(1019), - [anon_sym_PIPE_EQ] = ACTIONS(1019), - [anon_sym_LT_LT_EQ] = ACTIONS(1019), - [anon_sym_GT_GT_EQ] = ACTIONS(1019), - [anon_sym_EQ] = ACTIONS(1017), - [anon_sym_EQ_EQ] = ACTIONS(1019), - [anon_sym_BANG_EQ] = ACTIONS(1019), - [anon_sym_GT] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1017), - [anon_sym_GT_EQ] = ACTIONS(1019), - [anon_sym_LT_EQ] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [anon_sym__] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(1019), - [anon_sym_SQUOTE] = ACTIONS(1017), - [anon_sym_as] = ACTIONS(1017), - [anon_sym_async] = ACTIONS(1017), - [anon_sym_await] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_const] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_enum] = ACTIONS(1017), - [anon_sym_fn] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_gen] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_impl] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1017), - [anon_sym_loop] = ACTIONS(1017), - [anon_sym_match] = ACTIONS(1017), - [anon_sym_mod] = ACTIONS(1017), - [anon_sym_pub] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1017), - [anon_sym_struct] = ACTIONS(1017), - [anon_sym_trait] = ACTIONS(1017), - [anon_sym_type] = ACTIONS(1017), - [anon_sym_union] = ACTIONS(1017), - [anon_sym_unsafe] = ACTIONS(1017), - [anon_sym_use] = ACTIONS(1017), - [anon_sym_where] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [sym_mutable_specifier] = ACTIONS(1017), - [sym_integer_literal] = ACTIONS(1019), - [aux_sym_string_literal_token1] = ACTIONS(1019), - [sym_char_literal] = ACTIONS(1019), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1017), - [sym_super] = ACTIONS(1017), - [sym_crate] = ACTIONS(1017), - [sym_metavariable] = ACTIONS(1019), - [sym__raw_string_literal_start] = ACTIONS(1019), - [sym_float_literal] = ACTIONS(1019), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_EQ_GT] = ACTIONS(1021), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(1019), + [anon_sym_i8] = ACTIONS(1019), + [anon_sym_u16] = ACTIONS(1019), + [anon_sym_i16] = ACTIONS(1019), + [anon_sym_u32] = ACTIONS(1019), + [anon_sym_i32] = ACTIONS(1019), + [anon_sym_u64] = ACTIONS(1019), + [anon_sym_i64] = ACTIONS(1019), + [anon_sym_u128] = ACTIONS(1019), + [anon_sym_i128] = ACTIONS(1019), + [anon_sym_isize] = ACTIONS(1019), + [anon_sym_usize] = ACTIONS(1019), + [anon_sym_f32] = ACTIONS(1019), + [anon_sym_f64] = ACTIONS(1019), + [anon_sym_bool] = ACTIONS(1019), + [anon_sym_str] = ACTIONS(1019), + [anon_sym_char] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_PLUS_EQ] = ACTIONS(1021), + [anon_sym_DASH_EQ] = ACTIONS(1021), + [anon_sym_STAR_EQ] = ACTIONS(1021), + [anon_sym_SLASH_EQ] = ACTIONS(1021), + [anon_sym_PERCENT_EQ] = ACTIONS(1021), + [anon_sym_CARET_EQ] = ACTIONS(1021), + [anon_sym_AMP_EQ] = ACTIONS(1021), + [anon_sym_PIPE_EQ] = ACTIONS(1021), + [anon_sym_LT_LT_EQ] = ACTIONS(1021), + [anon_sym_GT_GT_EQ] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym__] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(1019), + [anon_sym_async] = ACTIONS(1019), + [anon_sym_await] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_const] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_default] = ACTIONS(1019), + [anon_sym_enum] = ACTIONS(1019), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_gen] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_impl] = ACTIONS(1019), + [anon_sym_let] = ACTIONS(1019), + [anon_sym_loop] = ACTIONS(1019), + [anon_sym_match] = ACTIONS(1019), + [anon_sym_mod] = ACTIONS(1019), + [anon_sym_pub] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1019), + [anon_sym_struct] = ACTIONS(1019), + [anon_sym_trait] = ACTIONS(1019), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1019), + [anon_sym_unsafe] = ACTIONS(1019), + [anon_sym_use] = ACTIONS(1019), + [anon_sym_where] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [sym_mutable_specifier] = ACTIONS(1019), + [sym_integer_literal] = ACTIONS(1021), + [aux_sym_string_literal_token1] = ACTIONS(1021), + [sym_char_literal] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1019), + [sym_super] = ACTIONS(1019), + [sym_crate] = ACTIONS(1019), + [sym_metavariable] = ACTIONS(1021), + [sym__raw_string_literal_start] = ACTIONS(1021), + [sym_float_literal] = ACTIONS(1021), }, [STATE(183)] = { [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1021), - [anon_sym_i8] = ACTIONS(1021), - [anon_sym_u16] = ACTIONS(1021), - [anon_sym_i16] = ACTIONS(1021), - [anon_sym_u32] = ACTIONS(1021), - [anon_sym_i32] = ACTIONS(1021), - [anon_sym_u64] = ACTIONS(1021), - [anon_sym_i64] = ACTIONS(1021), - [anon_sym_u128] = ACTIONS(1021), - [anon_sym_i128] = ACTIONS(1021), - [anon_sym_isize] = ACTIONS(1021), - [anon_sym_usize] = ACTIONS(1021), - [anon_sym_f32] = ACTIONS(1021), - [anon_sym_f64] = ACTIONS(1021), - [anon_sym_bool] = ACTIONS(1021), - [anon_sym_str] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1021), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_DASH_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_fn] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_gen] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_impl] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_struct] = ACTIONS(1021), - [anon_sym_trait] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_union] = ACTIONS(1021), - [anon_sym_unsafe] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_where] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [sym_mutable_specifier] = ACTIONS(1021), - [sym_integer_literal] = ACTIONS(1023), - [aux_sym_string_literal_token1] = ACTIONS(1023), - [sym_char_literal] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), - [sym_crate] = ACTIONS(1021), - [sym_metavariable] = ACTIONS(1023), - [sym__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), + [sym_identifier] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_RBRACK] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1025), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_u8] = ACTIONS(1023), + [anon_sym_i8] = ACTIONS(1023), + [anon_sym_u16] = ACTIONS(1023), + [anon_sym_i16] = ACTIONS(1023), + [anon_sym_u32] = ACTIONS(1023), + [anon_sym_i32] = ACTIONS(1023), + [anon_sym_u64] = ACTIONS(1023), + [anon_sym_i64] = ACTIONS(1023), + [anon_sym_u128] = ACTIONS(1023), + [anon_sym_i128] = ACTIONS(1023), + [anon_sym_isize] = ACTIONS(1023), + [anon_sym_usize] = ACTIONS(1023), + [anon_sym_f32] = ACTIONS(1023), + [anon_sym_f64] = ACTIONS(1023), + [anon_sym_bool] = ACTIONS(1023), + [anon_sym_str] = ACTIONS(1023), + [anon_sym_char] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_PERCENT] = ACTIONS(1023), + [anon_sym_CARET] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_AMP_AMP] = ACTIONS(1025), + [anon_sym_PIPE_PIPE] = ACTIONS(1025), + [anon_sym_LT_LT] = ACTIONS(1023), + [anon_sym_GT_GT] = ACTIONS(1023), + [anon_sym_PLUS_EQ] = ACTIONS(1025), + [anon_sym_DASH_EQ] = ACTIONS(1025), + [anon_sym_STAR_EQ] = ACTIONS(1025), + [anon_sym_SLASH_EQ] = ACTIONS(1025), + [anon_sym_PERCENT_EQ] = ACTIONS(1025), + [anon_sym_CARET_EQ] = ACTIONS(1025), + [anon_sym_AMP_EQ] = ACTIONS(1025), + [anon_sym_PIPE_EQ] = ACTIONS(1025), + [anon_sym_LT_LT_EQ] = ACTIONS(1025), + [anon_sym_GT_GT_EQ] = ACTIONS(1025), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_EQ_EQ] = ACTIONS(1025), + [anon_sym_BANG_EQ] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_GT_EQ] = ACTIONS(1025), + [anon_sym_LT_EQ] = ACTIONS(1025), + [anon_sym_AT] = ACTIONS(1025), + [anon_sym__] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(1025), + [anon_sym_DASH_GT] = ACTIONS(1025), + [anon_sym_POUND] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_as] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_await] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [anon_sym_fn] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_gen] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_impl] = ACTIONS(1023), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_loop] = ACTIONS(1023), + [anon_sym_match] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_pub] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_trait] = ACTIONS(1023), + [anon_sym_type] = ACTIONS(1023), + [anon_sym_union] = ACTIONS(1023), + [anon_sym_unsafe] = ACTIONS(1023), + [anon_sym_use] = ACTIONS(1023), + [anon_sym_where] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [sym_mutable_specifier] = ACTIONS(1023), + [sym_integer_literal] = ACTIONS(1025), + [aux_sym_string_literal_token1] = ACTIONS(1025), + [sym_char_literal] = ACTIONS(1025), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_crate] = ACTIONS(1023), + [sym_metavariable] = ACTIONS(1025), + [sym__raw_string_literal_start] = ACTIONS(1025), + [sym_float_literal] = ACTIONS(1025), }, [STATE(184)] = { [sym_line_comment] = STATE(184), [sym_block_comment] = STATE(184), - [aux_sym__non_special_token_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), + [sym_identifier] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_EQ_GT] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(1027), [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_fn] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_gen] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_impl] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_pub] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1025), - [anon_sym_trait] = ACTIONS(1025), - [anon_sym_type] = ACTIONS(1025), - [anon_sym_union] = ACTIONS(1025), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [sym_mutable_specifier] = ACTIONS(1025), - [sym_integer_literal] = ACTIONS(1027), - [aux_sym_string_literal_token1] = ACTIONS(1027), - [sym_char_literal] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), - [sym_crate] = ACTIONS(1025), - [sym__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_u8] = ACTIONS(1027), + [anon_sym_i8] = ACTIONS(1027), + [anon_sym_u16] = ACTIONS(1027), + [anon_sym_i16] = ACTIONS(1027), + [anon_sym_u32] = ACTIONS(1027), + [anon_sym_i32] = ACTIONS(1027), + [anon_sym_u64] = ACTIONS(1027), + [anon_sym_i64] = ACTIONS(1027), + [anon_sym_u128] = ACTIONS(1027), + [anon_sym_i128] = ACTIONS(1027), + [anon_sym_isize] = ACTIONS(1027), + [anon_sym_usize] = ACTIONS(1027), + [anon_sym_f32] = ACTIONS(1027), + [anon_sym_f64] = ACTIONS(1027), + [anon_sym_bool] = ACTIONS(1027), + [anon_sym_str] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1027), + [anon_sym_PERCENT] = ACTIONS(1027), + [anon_sym_CARET] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1027), + [anon_sym_PIPE] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1029), + [anon_sym_PIPE_PIPE] = ACTIONS(1029), + [anon_sym_LT_LT] = ACTIONS(1027), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PERCENT_EQ] = ACTIONS(1029), + [anon_sym_CARET_EQ] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), + [anon_sym__] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_COLON_COLON] = ACTIONS(1029), + [anon_sym_DASH_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(1029), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1027), + [anon_sym_await] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_fn] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_gen] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_impl] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_mod] = ACTIONS(1027), + [anon_sym_pub] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_struct] = ACTIONS(1027), + [anon_sym_trait] = ACTIONS(1027), + [anon_sym_type] = ACTIONS(1027), + [anon_sym_union] = ACTIONS(1027), + [anon_sym_unsafe] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_where] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [sym_mutable_specifier] = ACTIONS(1027), + [sym_integer_literal] = ACTIONS(1029), + [aux_sym_string_literal_token1] = ACTIONS(1029), + [sym_char_literal] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1027), + [anon_sym_false] = ACTIONS(1027), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1027), + [sym_super] = ACTIONS(1027), + [sym_crate] = ACTIONS(1027), + [sym_metavariable] = ACTIONS(1029), + [sym__raw_string_literal_start] = ACTIONS(1029), + [sym_float_literal] = ACTIONS(1029), }, [STATE(185)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(185), [sym_block_comment] = STATE(185), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38357,7 +38438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -38392,61 +38473,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(186)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2812), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(186), [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(187)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2821), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(188)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1033), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38473,7 +38786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -38507,64 +38820,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(187)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2614), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), + [STATE(189)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2633), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38582,32 +38895,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38616,71 +38929,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(188)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2618), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), + [STATE(190)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2690), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38698,32 +39011,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38732,71 +39045,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(189)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2727), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), + [STATE(191)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2693), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38814,32 +39127,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38848,71 +39161,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(190)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2663), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), + [STATE(192)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2713), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38930,264 +39243,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(191)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2713), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(192)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2714), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39196,71 +39277,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2733), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2731), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39278,32 +39359,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39312,71 +39393,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2748), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2732), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39394,32 +39475,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39428,71 +39509,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2749), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(3008), + [sym__let_chain] = STATE(3021), + [sym__condition] = STATE(2744), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -39510,32 +39591,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39544,114 +39625,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(3072), - [sym__let_chain] = STATE(3073), - [sym__condition] = STATE(2758), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(465), + [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1035), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39660,132 +39741,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(197)] = { [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_RPAREN] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_u8] = ACTIONS(1033), - [anon_sym_i8] = ACTIONS(1033), - [anon_sym_u16] = ACTIONS(1033), - [anon_sym_i16] = ACTIONS(1033), - [anon_sym_u32] = ACTIONS(1033), - [anon_sym_i32] = ACTIONS(1033), - [anon_sym_u64] = ACTIONS(1033), - [anon_sym_i64] = ACTIONS(1033), - [anon_sym_u128] = ACTIONS(1033), - [anon_sym_i128] = ACTIONS(1033), - [anon_sym_isize] = ACTIONS(1033), - [anon_sym_usize] = ACTIONS(1033), - [anon_sym_f32] = ACTIONS(1033), - [anon_sym_f64] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1033), - [anon_sym_str] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_PLUS_EQ] = ACTIONS(1035), - [anon_sym_DASH_EQ] = ACTIONS(1035), - [anon_sym_STAR_EQ] = ACTIONS(1035), - [anon_sym_SLASH_EQ] = ACTIONS(1035), - [anon_sym_PERCENT_EQ] = ACTIONS(1035), - [anon_sym_CARET_EQ] = ACTIONS(1035), - [anon_sym_AMP_EQ] = ACTIONS(1035), - [anon_sym_PIPE_EQ] = ACTIONS(1035), - [anon_sym_LT_LT_EQ] = ACTIONS(1035), - [anon_sym_GT_GT_EQ] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_AT] = ACTIONS(1035), - [anon_sym__] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), - [anon_sym_COMMA] = ACTIONS(1035), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym_DASH_GT] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_async] = ACTIONS(1033), - [anon_sym_await] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_fn] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_gen] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_impl] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_pub] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_trait] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_unsafe] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_where] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [sym_mutable_specifier] = ACTIONS(1033), - [sym_integer_literal] = ACTIONS(1035), - [aux_sym_string_literal_token1] = ACTIONS(1035), - [sym_char_literal] = ACTIONS(1035), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), - [sym_crate] = ACTIONS(1033), - [sym_metavariable] = ACTIONS(1035), - [sym__raw_string_literal_start] = ACTIONS(1035), - [sym_float_literal] = ACTIONS(1035), - }, - [STATE(198)] = { - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), [sym_identifier] = ACTIONS(1037), [anon_sym_SEMI] = ACTIONS(1039), [anon_sym_LPAREN] = ACTIONS(1039), @@ -39796,7 +39761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1039), [anon_sym_EQ_GT] = ACTIONS(1039), [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1037), [anon_sym_PLUS] = ACTIONS(1037), [anon_sym_STAR] = ACTIONS(1037), [anon_sym_QMARK] = ACTIONS(1039), @@ -39895,61 +39860,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1037), [sym_super] = ACTIONS(1037), [sym_crate] = ACTIONS(1037), + [sym_metavariable] = ACTIONS(1039), [sym__raw_string_literal_start] = ACTIONS(1039), [sym_float_literal] = ACTIONS(1039), }, - [STATE(199)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1942), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [STATE(198)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1963), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39979,7 +39945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -40013,173 +39979,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(200)] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym__] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [sym_mutable_specifier] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, - [STATE(201)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [STATE(199)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40209,7 +40060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -40243,173 +40094,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(202)] = { - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u128] = ACTIONS(975), - [anon_sym_i128] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_str] = ACTIONS(975), - [anon_sym_char] = ACTIONS(975), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_PERCENT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(977), - [anon_sym_PIPE_PIPE] = ACTIONS(977), - [anon_sym_LT_LT] = ACTIONS(975), - [anon_sym_GT_GT] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PERCENT_EQ] = ACTIONS(977), - [anon_sym_CARET_EQ] = ACTIONS(977), - [anon_sym_AMP_EQ] = ACTIONS(977), - [anon_sym_PIPE_EQ] = ACTIONS(977), - [anon_sym_LT_LT_EQ] = ACTIONS(977), - [anon_sym_GT_GT_EQ] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym__] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_DASH_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(977), - [anon_sym_SQUOTE] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_async] = ACTIONS(975), - [anon_sym_await] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_default] = ACTIONS(975), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_fn] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_gen] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_impl] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_mod] = ACTIONS(975), - [anon_sym_pub] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_static] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_trait] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_union] = ACTIONS(975), - [anon_sym_unsafe] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_where] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [sym_mutable_specifier] = ACTIONS(975), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(977), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(975), - [sym_super] = ACTIONS(975), - [sym_crate] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - }, - [STATE(203)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(200)] = { + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40439,7 +40175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -40473,239 +40209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(204)] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_RPAREN] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_RBRACK] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_EQ_GT] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1003), - [anon_sym_u8] = ACTIONS(1001), - [anon_sym_i8] = ACTIONS(1001), - [anon_sym_u16] = ACTIONS(1001), - [anon_sym_i16] = ACTIONS(1001), - [anon_sym_u32] = ACTIONS(1001), - [anon_sym_i32] = ACTIONS(1001), - [anon_sym_u64] = ACTIONS(1001), - [anon_sym_i64] = ACTIONS(1001), - [anon_sym_u128] = ACTIONS(1001), - [anon_sym_i128] = ACTIONS(1001), - [anon_sym_isize] = ACTIONS(1001), - [anon_sym_usize] = ACTIONS(1001), - [anon_sym_f32] = ACTIONS(1001), - [anon_sym_f64] = ACTIONS(1001), - [anon_sym_bool] = ACTIONS(1001), - [anon_sym_str] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(1003), - [anon_sym_PIPE_PIPE] = ACTIONS(1003), - [anon_sym_LT_LT] = ACTIONS(1001), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_PLUS_EQ] = ACTIONS(1003), - [anon_sym_DASH_EQ] = ACTIONS(1003), - [anon_sym_STAR_EQ] = ACTIONS(1003), - [anon_sym_SLASH_EQ] = ACTIONS(1003), - [anon_sym_PERCENT_EQ] = ACTIONS(1003), - [anon_sym_CARET_EQ] = ACTIONS(1003), - [anon_sym_AMP_EQ] = ACTIONS(1003), - [anon_sym_PIPE_EQ] = ACTIONS(1003), - [anon_sym_LT_LT_EQ] = ACTIONS(1003), - [anon_sym_GT_GT_EQ] = ACTIONS(1003), - [anon_sym_EQ] = ACTIONS(1001), - [anon_sym_EQ_EQ] = ACTIONS(1003), - [anon_sym_BANG_EQ] = ACTIONS(1003), - [anon_sym_GT] = ACTIONS(1001), - [anon_sym_LT] = ACTIONS(1001), - [anon_sym_GT_EQ] = ACTIONS(1003), - [anon_sym_LT_EQ] = ACTIONS(1003), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym__] = ACTIONS(1001), - [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1003), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_DASH_GT] = ACTIONS(1003), - [anon_sym_POUND] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1001), - [anon_sym_as] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_fn] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_gen] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_impl] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_mod] = ACTIONS(1001), - [anon_sym_pub] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1001), - [anon_sym_trait] = ACTIONS(1001), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_union] = ACTIONS(1001), - [anon_sym_unsafe] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [sym_mutable_specifier] = ACTIONS(1001), - [sym_integer_literal] = ACTIONS(1003), - [aux_sym_string_literal_token1] = ACTIONS(1003), - [sym_char_literal] = ACTIONS(1003), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_crate] = ACTIONS(1001), - [sym__raw_string_literal_start] = ACTIONS(1003), - [sym_float_literal] = ACTIONS(1003), - }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u128] = ACTIONS(907), - [anon_sym_i128] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_str] = ACTIONS(907), - [anon_sym_char] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(907), - [anon_sym_as] = ACTIONS(907), - [anon_sym_async] = ACTIONS(907), - [anon_sym_await] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_fn] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_gen] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_impl] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_pub] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_trait] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_union] = ACTIONS(907), - [anon_sym_unsafe] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [sym_mutable_specifier] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(909), - [aux_sym_string_literal_token1] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(907), - [sym_crate] = ACTIONS(907), - [sym__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), - }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), + [STATE(201)] = { + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), [sym_identifier] = ACTIONS(911), [anon_sym_SEMI] = ACTIONS(913), [anon_sym_LPAREN] = ACTIONS(913), @@ -40818,382 +40324,842 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(913), [sym_float_literal] = ACTIONS(913), }, - [STATE(207)] = { - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_EQ_GT] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(915), - [anon_sym_QMARK] = ACTIONS(917), - [anon_sym_u8] = ACTIONS(915), - [anon_sym_i8] = ACTIONS(915), - [anon_sym_u16] = ACTIONS(915), - [anon_sym_i16] = ACTIONS(915), - [anon_sym_u32] = ACTIONS(915), - [anon_sym_i32] = ACTIONS(915), - [anon_sym_u64] = ACTIONS(915), - [anon_sym_i64] = ACTIONS(915), - [anon_sym_u128] = ACTIONS(915), - [anon_sym_i128] = ACTIONS(915), - [anon_sym_isize] = ACTIONS(915), - [anon_sym_usize] = ACTIONS(915), - [anon_sym_f32] = ACTIONS(915), - [anon_sym_f64] = ACTIONS(915), - [anon_sym_bool] = ACTIONS(915), - [anon_sym_str] = ACTIONS(915), - [anon_sym_char] = ACTIONS(915), - [anon_sym_DASH] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_AMP] = ACTIONS(915), - [anon_sym_PIPE] = ACTIONS(915), - [anon_sym_AMP_AMP] = ACTIONS(917), - [anon_sym_PIPE_PIPE] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(915), - [anon_sym_GT_GT] = ACTIONS(915), - [anon_sym_PLUS_EQ] = ACTIONS(917), - [anon_sym_DASH_EQ] = ACTIONS(917), - [anon_sym_STAR_EQ] = ACTIONS(917), - [anon_sym_SLASH_EQ] = ACTIONS(917), - [anon_sym_PERCENT_EQ] = ACTIONS(917), - [anon_sym_CARET_EQ] = ACTIONS(917), - [anon_sym_AMP_EQ] = ACTIONS(917), - [anon_sym_PIPE_EQ] = ACTIONS(917), - [anon_sym_LT_LT_EQ] = ACTIONS(917), - [anon_sym_GT_GT_EQ] = ACTIONS(917), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_EQ_EQ] = ACTIONS(917), - [anon_sym_BANG_EQ] = ACTIONS(917), - [anon_sym_GT] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_GT_EQ] = ACTIONS(917), - [anon_sym_LT_EQ] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym__] = ACTIONS(915), - [anon_sym_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(917), - [anon_sym_COMMA] = ACTIONS(917), - [anon_sym_COLON_COLON] = ACTIONS(917), - [anon_sym_DASH_GT] = ACTIONS(917), - [anon_sym_POUND] = ACTIONS(917), - [anon_sym_SQUOTE] = ACTIONS(915), - [anon_sym_as] = ACTIONS(915), - [anon_sym_async] = ACTIONS(915), - [anon_sym_await] = ACTIONS(915), - [anon_sym_break] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_default] = ACTIONS(915), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_gen] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_impl] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_mod] = ACTIONS(915), - [anon_sym_pub] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_static] = ACTIONS(915), - [anon_sym_struct] = ACTIONS(915), - [anon_sym_trait] = ACTIONS(915), - [anon_sym_type] = ACTIONS(915), - [anon_sym_union] = ACTIONS(915), - [anon_sym_unsafe] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_where] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [sym_mutable_specifier] = ACTIONS(915), - [sym_integer_literal] = ACTIONS(917), - [aux_sym_string_literal_token1] = ACTIONS(917), - [sym_char_literal] = ACTIONS(917), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(915), - [sym_super] = ACTIONS(915), - [sym_crate] = ACTIONS(915), - [sym__raw_string_literal_start] = ACTIONS(917), - [sym_float_literal] = ACTIONS(917), - }, - [STATE(208)] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_u8] = ACTIONS(919), - [anon_sym_i8] = ACTIONS(919), - [anon_sym_u16] = ACTIONS(919), - [anon_sym_i16] = ACTIONS(919), - [anon_sym_u32] = ACTIONS(919), - [anon_sym_i32] = ACTIONS(919), - [anon_sym_u64] = ACTIONS(919), - [anon_sym_i64] = ACTIONS(919), - [anon_sym_u128] = ACTIONS(919), - [anon_sym_i128] = ACTIONS(919), - [anon_sym_isize] = ACTIONS(919), - [anon_sym_usize] = ACTIONS(919), - [anon_sym_f32] = ACTIONS(919), - [anon_sym_f64] = ACTIONS(919), - [anon_sym_bool] = ACTIONS(919), - [anon_sym_str] = ACTIONS(919), - [anon_sym_char] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_AMP] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_CARET_EQ] = ACTIONS(921), - [anon_sym_AMP_EQ] = ACTIONS(921), - [anon_sym_PIPE_EQ] = ACTIONS(921), - [anon_sym_LT_LT_EQ] = ACTIONS(921), - [anon_sym_GT_GT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym__] = ACTIONS(919), - [anon_sym_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_COLON_COLON] = ACTIONS(921), - [anon_sym_DASH_GT] = ACTIONS(921), - [anon_sym_POUND] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(919), - [anon_sym_as] = ACTIONS(919), - [anon_sym_async] = ACTIONS(919), - [anon_sym_await] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_default] = ACTIONS(919), - [anon_sym_enum] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_gen] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_pub] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_static] = ACTIONS(919), - [anon_sym_struct] = ACTIONS(919), - [anon_sym_trait] = ACTIONS(919), - [anon_sym_type] = ACTIONS(919), - [anon_sym_union] = ACTIONS(919), - [anon_sym_unsafe] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [sym_mutable_specifier] = ACTIONS(919), - [sym_integer_literal] = ACTIONS(921), - [aux_sym_string_literal_token1] = ACTIONS(921), - [sym_char_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(919), - [sym_super] = ACTIONS(919), - [sym_crate] = ACTIONS(919), - [sym__raw_string_literal_start] = ACTIONS(921), - [sym_float_literal] = ACTIONS(921), - }, - [STATE(209)] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_PIPE_PIPE] = ACTIONS(1027), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_PLUS_EQ] = ACTIONS(1027), - [anon_sym_DASH_EQ] = ACTIONS(1027), - [anon_sym_STAR_EQ] = ACTIONS(1027), - [anon_sym_SLASH_EQ] = ACTIONS(1027), - [anon_sym_PERCENT_EQ] = ACTIONS(1027), - [anon_sym_CARET_EQ] = ACTIONS(1027), - [anon_sym_AMP_EQ] = ACTIONS(1027), - [anon_sym_PIPE_EQ] = ACTIONS(1027), - [anon_sym_LT_LT_EQ] = ACTIONS(1027), - [anon_sym_GT_GT_EQ] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1027), - [anon_sym_BANG_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1027), - [anon_sym_LT_EQ] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_COLON_COLON] = ACTIONS(1027), - [anon_sym_DASH_GT] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_fn] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_gen] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_impl] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_pub] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1025), - [anon_sym_trait] = ACTIONS(1025), - [anon_sym_type] = ACTIONS(1025), - [anon_sym_union] = ACTIONS(1025), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [sym_mutable_specifier] = ACTIONS(1025), - [sym_integer_literal] = ACTIONS(1027), - [aux_sym_string_literal_token1] = ACTIONS(1027), - [sym_char_literal] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), - [sym_crate] = ACTIONS(1025), - [sym__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), - }, - [STATE(210)] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_EQ_GT] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), + [STATE(202)] = { + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(947), + [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(947), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_u8] = ACTIONS(945), + [anon_sym_i8] = ACTIONS(945), + [anon_sym_u16] = ACTIONS(945), + [anon_sym_i16] = ACTIONS(945), + [anon_sym_u32] = ACTIONS(945), + [anon_sym_i32] = ACTIONS(945), + [anon_sym_u64] = ACTIONS(945), + [anon_sym_i64] = ACTIONS(945), + [anon_sym_u128] = ACTIONS(945), + [anon_sym_i128] = ACTIONS(945), + [anon_sym_isize] = ACTIONS(945), + [anon_sym_usize] = ACTIONS(945), + [anon_sym_f32] = ACTIONS(945), + [anon_sym_f64] = ACTIONS(945), + [anon_sym_bool] = ACTIONS(945), + [anon_sym_str] = ACTIONS(945), + [anon_sym_char] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(945), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_PERCENT_EQ] = ACTIONS(947), + [anon_sym_CARET_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(947), + [anon_sym__] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_COLON_COLON] = ACTIONS(947), + [anon_sym_DASH_GT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_as] = ACTIONS(945), + [anon_sym_async] = ACTIONS(945), + [anon_sym_await] = ACTIONS(945), + [anon_sym_break] = ACTIONS(945), + [anon_sym_const] = ACTIONS(945), + [anon_sym_continue] = ACTIONS(945), + [anon_sym_default] = ACTIONS(945), + [anon_sym_enum] = ACTIONS(945), + [anon_sym_fn] = ACTIONS(945), + [anon_sym_for] = ACTIONS(945), + [anon_sym_gen] = ACTIONS(945), + [anon_sym_if] = ACTIONS(945), + [anon_sym_impl] = ACTIONS(945), + [anon_sym_let] = ACTIONS(945), + [anon_sym_loop] = ACTIONS(945), + [anon_sym_match] = ACTIONS(945), + [anon_sym_mod] = ACTIONS(945), + [anon_sym_pub] = ACTIONS(945), + [anon_sym_return] = ACTIONS(945), + [anon_sym_static] = ACTIONS(945), + [anon_sym_struct] = ACTIONS(945), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(945), + [anon_sym_union] = ACTIONS(945), + [anon_sym_unsafe] = ACTIONS(945), + [anon_sym_use] = ACTIONS(945), + [anon_sym_where] = ACTIONS(945), + [anon_sym_while] = ACTIONS(945), + [sym_mutable_specifier] = ACTIONS(945), + [sym_integer_literal] = ACTIONS(947), + [aux_sym_string_literal_token1] = ACTIONS(947), + [sym_char_literal] = ACTIONS(947), + [anon_sym_true] = ACTIONS(945), + [anon_sym_false] = ACTIONS(945), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(945), + [sym_super] = ACTIONS(945), + [sym_crate] = ACTIONS(945), + [sym__raw_string_literal_start] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), + }, + [STATE(203)] = { + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [sym_identifier] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(975), + [anon_sym_i8] = ACTIONS(975), + [anon_sym_u16] = ACTIONS(975), + [anon_sym_i16] = ACTIONS(975), + [anon_sym_u32] = ACTIONS(975), + [anon_sym_i32] = ACTIONS(975), + [anon_sym_u64] = ACTIONS(975), + [anon_sym_i64] = ACTIONS(975), + [anon_sym_u128] = ACTIONS(975), + [anon_sym_i128] = ACTIONS(975), + [anon_sym_isize] = ACTIONS(975), + [anon_sym_usize] = ACTIONS(975), + [anon_sym_f32] = ACTIONS(975), + [anon_sym_f64] = ACTIONS(975), + [anon_sym_bool] = ACTIONS(975), + [anon_sym_str] = ACTIONS(975), + [anon_sym_char] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(977), + [anon_sym_PIPE_PIPE] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PERCENT_EQ] = ACTIONS(977), + [anon_sym_CARET_EQ] = ACTIONS(977), + [anon_sym_AMP_EQ] = ACTIONS(977), + [anon_sym_PIPE_EQ] = ACTIONS(977), + [anon_sym_LT_LT_EQ] = ACTIONS(977), + [anon_sym_GT_GT_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym__] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(977), + [anon_sym_DASH_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_async] = ACTIONS(975), + [anon_sym_await] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_default] = ACTIONS(975), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_fn] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_gen] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_impl] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(975), + [anon_sym_pub] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_static] = ACTIONS(975), + [anon_sym_struct] = ACTIONS(975), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(975), + [anon_sym_union] = ACTIONS(975), + [anon_sym_unsafe] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_where] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [sym_mutable_specifier] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(977), + [aux_sym_string_literal_token1] = ACTIONS(977), + [sym_char_literal] = ACTIONS(977), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(975), + [sym_super] = ACTIONS(975), + [sym_crate] = ACTIONS(975), + [sym__raw_string_literal_start] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), + }, + [STATE(204)] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), + }, + [STATE(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_EQ_GT] = ACTIONS(983), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u128] = ACTIONS(981), + [anon_sym_i128] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_str] = ACTIONS(981), + [anon_sym_char] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_PERCENT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_PERCENT_EQ] = ACTIONS(983), + [anon_sym_CARET_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [anon_sym__] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_COLON_COLON] = ACTIONS(983), + [anon_sym_DASH_GT] = ACTIONS(983), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(981), + [anon_sym_as] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_await] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [anon_sym_fn] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_gen] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_impl] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_loop] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_mod] = ACTIONS(981), + [anon_sym_pub] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_static] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_trait] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_union] = ACTIONS(981), + [anon_sym_unsafe] = ACTIONS(981), + [anon_sym_use] = ACTIONS(981), + [anon_sym_where] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [sym_mutable_specifier] = ACTIONS(981), + [sym_integer_literal] = ACTIONS(983), + [aux_sym_string_literal_token1] = ACTIONS(983), + [sym_char_literal] = ACTIONS(983), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_crate] = ACTIONS(981), + [sym__raw_string_literal_start] = ACTIONS(983), + [sym_float_literal] = ACTIONS(983), + }, + [STATE(206)] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_EQ_GT] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_as] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_gen] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_static] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [sym_mutable_specifier] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_crate] = ACTIONS(993), + [sym__raw_string_literal_start] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), + }, + [STATE(207)] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym__] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_DASH_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), + }, + [STATE(208)] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [sym_mutable_specifier] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, + [STATE(209)] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), [anon_sym_bool] = ACTIONS(1045), [anon_sym_str] = ACTIONS(1045), [anon_sym_char] = ACTIONS(1045), @@ -41278,9 +41244,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1047), [sym_float_literal] = ACTIONS(1047), }, - [STATE(211)] = { - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), [sym_identifier] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1051), [anon_sym_LPAREN] = ACTIONS(1051), @@ -41393,58 +41359,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1051), [sym_float_literal] = ACTIONS(1051), }, + [STATE(211)] = { + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_EQ_GT] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_AMP_AMP] = ACTIONS(1055), + [anon_sym_PIPE_PIPE] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_PLUS_EQ] = ACTIONS(1055), + [anon_sym_DASH_EQ] = ACTIONS(1055), + [anon_sym_STAR_EQ] = ACTIONS(1055), + [anon_sym_SLASH_EQ] = ACTIONS(1055), + [anon_sym_PERCENT_EQ] = ACTIONS(1055), + [anon_sym_CARET_EQ] = ACTIONS(1055), + [anon_sym_AMP_EQ] = ACTIONS(1055), + [anon_sym_PIPE_EQ] = ACTIONS(1055), + [anon_sym_LT_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_GT_EQ] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_await] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_gen] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_impl] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_loop] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_pub] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1053), + [anon_sym_where] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [sym_mutable_specifier] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_crate] = ACTIONS(1053), + [sym__raw_string_literal_start] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), + }, [STATE(212)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1937), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_enum_variant_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41474,7 +41555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41509,57 +41590,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(213)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1968), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(213), [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41589,7 +41670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41624,57 +41705,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(214)] = { - [sym_attribute_item] = STATE(1050), - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_attribute_item] = STATE(1057), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41704,7 +41785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(869), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41739,59 +41820,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(215)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1516), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1061), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(216)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1461), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(217)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1461), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(218)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [aux_sym_tuple_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1053), + [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41852,56 +42275,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(216)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), + [STATE(219)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41929,10 +42352,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_DASH_GT] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41966,60 +42389,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(217)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [STATE(220)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1523), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42040,13 +42461,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1079), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42080,60 +42503,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(224), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [aux_sym_tuple_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42194,61 +42617,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(219)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1523), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -42266,33 +42689,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1069), - [anon_sym_raw] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42301,112 +42724,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(465), + [STATE(223)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1523), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym__] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1075), - [anon_sym_raw] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42415,67 +42838,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(221)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(217), + [STATE(224)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1516), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1079), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42496,13 +42917,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1057), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42536,288 +42959,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1084), - [anon_sym_RPAREN] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_u8] = ACTIONS(1098), - [anon_sym_i8] = ACTIONS(1098), - [anon_sym_u16] = ACTIONS(1098), - [anon_sym_i16] = ACTIONS(1098), - [anon_sym_u32] = ACTIONS(1098), - [anon_sym_i32] = ACTIONS(1098), - [anon_sym_u64] = ACTIONS(1098), - [anon_sym_i64] = ACTIONS(1098), - [anon_sym_u128] = ACTIONS(1098), - [anon_sym_i128] = ACTIONS(1098), - [anon_sym_isize] = ACTIONS(1098), - [anon_sym_usize] = ACTIONS(1098), - [anon_sym_f32] = ACTIONS(1098), - [anon_sym_f64] = ACTIONS(1098), - [anon_sym_bool] = ACTIONS(1098), - [anon_sym_str] = ACTIONS(1098), - [anon_sym_char] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1119), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1131), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1137), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_loop] = ACTIONS(1143), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_union] = ACTIONS(1131), - [anon_sym_unsafe] = ACTIONS(1155), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1161), - [anon_sym_move] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1167), - [sym_integer_literal] = ACTIONS(1170), - [aux_sym_string_literal_token1] = ACTIONS(1173), - [sym_char_literal] = ACTIONS(1170), - [anon_sym_true] = ACTIONS(1176), - [anon_sym_false] = ACTIONS(1176), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1182), - [sym_crate] = ACTIONS(1182), - [sym_metavariable] = ACTIONS(1185), - [sym__raw_string_literal_start] = ACTIONS(1188), - [sym_float_literal] = ACTIONS(1170), - }, - [STATE(223)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [STATE(225)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1087), + [anon_sym_raw] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [STATE(226)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1461), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42838,13 +43145,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1063), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42871,67 +43180,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(227)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(228)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1873), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(229)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1719), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1097), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(232), + [STATE(230)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1193), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42952,13 +43601,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42992,289 +43643,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(226)] = { - [sym_attribute_item] = STATE(394), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2995), - [sym_variadic_parameter] = STATE(2995), - [sym_parameter] = STATE(2995), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2730), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1225), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(227)] = { - [sym_attribute_item] = STATE(419), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2859), - [sym_variadic_parameter] = STATE(2859), - [sym_parameter] = STATE(2859), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2651), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(228)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [STATE(231)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1840), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1871), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43293,14 +43716,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym__] = ACTIONS(1099), + [anon_sym_DOT_DOT] = ACTIONS(1085), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1281), + [anon_sym_DASH_GT] = ACTIONS(1101), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43334,61 +43757,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(229)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), + [STATE(232)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1913), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1716), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43407,14 +43830,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym__] = ACTIONS(1103), + [anon_sym_DOT_DOT] = ACTIONS(1085), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1285), + [anon_sym_DASH_GT] = ACTIONS(1105), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43448,105 +43871,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(233)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1569), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1461), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43555,68 +43978,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(231)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), + [STATE(234)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1510), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -43634,33 +44057,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [sym_mutable_specifier] = ACTIONS(1107), + [anon_sym_raw] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43669,67 +44092,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(232)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [STATE(235)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_tuple_expression_repeat1] = STATE(240), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1111), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43790,60 +44213,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(215), + [STATE(236)] = { + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(2915), + [sym_variadic_parameter] = STATE(2915), + [sym_parameter] = STATE(2915), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1117), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(237)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_tuple_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_RPAREN] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1206), + [anon_sym_i8] = ACTIONS(1206), + [anon_sym_u16] = ACTIONS(1206), + [anon_sym_i16] = ACTIONS(1206), + [anon_sym_u32] = ACTIONS(1206), + [anon_sym_i32] = ACTIONS(1206), + [anon_sym_u64] = ACTIONS(1206), + [anon_sym_i64] = ACTIONS(1206), + [anon_sym_u128] = ACTIONS(1206), + [anon_sym_i128] = ACTIONS(1206), + [anon_sym_isize] = ACTIONS(1206), + [anon_sym_usize] = ACTIONS(1206), + [anon_sym_f32] = ACTIONS(1206), + [anon_sym_f64] = ACTIONS(1206), + [anon_sym_bool] = ACTIONS(1206), + [anon_sym_str] = ACTIONS(1206), + [anon_sym_char] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_gen] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1239), + [anon_sym_unsafe] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1269), + [anon_sym_move] = ACTIONS(1272), + [anon_sym_try] = ACTIONS(1275), + [sym_integer_literal] = ACTIONS(1278), + [aux_sym_string_literal_token1] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1287), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1293), + [sym__raw_string_literal_start] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1278), + }, + [STATE(238)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [aux_sym_tuple_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1299), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43904,289 +44555,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(234)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1305), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(235)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1858), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), + [STATE(239)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1523), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -44205,146 +44628,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44353,65 +44662,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(238)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), + [STATE(240)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [aux_sym_tuple_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1301), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44423,384 +44734,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_i32] = ACTIONS(23), [anon_sym_u64] = ACTIONS(23), [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44809,112 +44776,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(242)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_let_condition] = STATE(2587), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(465), + [STATE(241)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_tuple_expression_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1301), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44923,65 +44890,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(242)] = { + [sym_attribute_item] = STATE(418), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3074), + [sym_variadic_parameter] = STATE(3074), + [sym_parameter] = STATE(3074), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2584), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, [STATE(243)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), + [aux_sym_tuple_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1329), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45002,15 +45085,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45045,167 +45126,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(244)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(418), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3074), + [sym_variadic_parameter] = STATE(3074), + [sym_parameter] = STATE(3074), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2584), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(245)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1532), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1510), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), [sym_identifier] = ACTIONS(339), @@ -45230,15 +45311,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1055), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45255,6 +45334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1335), + [anon_sym_raw] = ACTIONS(1337), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -45273,60 +45354,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(246)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1510), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1339), + [anon_sym_raw] = ACTIONS(1341), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(247)] = { + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3176), + [sym_variadic_parameter] = STATE(3176), + [sym_parameter] = STATE(3176), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2708), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(248)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_let_condition] = STATE(2625), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(985), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -45344,12 +45654,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1085), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -45360,6 +45670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(427), [anon_sym_gen] = ACTIONS(429), [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(991), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -45367,8 +45678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1331), - [anon_sym_raw] = ACTIONS(1333), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -45386,172 +45695,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(247)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2548), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(248)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), + [STATE(249)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1922), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [aux_sym_tuple_expression_repeat1] = STATE(218), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45572,15 +45769,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45614,56 +45809,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(249)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1447), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), + [STATE(250)] = { + [sym_attribute_item] = STATE(418), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3074), + [sym_variadic_parameter] = STATE(3074), + [sym_parameter] = STATE(3074), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2584), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1313), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1353), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1323), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(251)] = { + [sym_attribute_item] = STATE(418), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3074), + [sym_variadic_parameter] = STATE(3074), + [sym_parameter] = STATE(3074), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1357), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1359), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(252)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1516), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45686,13 +46109,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45709,8 +46134,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1339), - [anon_sym_raw] = ACTIONS(1341), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -45728,105 +46151,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(250)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1511), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(339), + [STATE(253)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(2625), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1287), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45835,182 +46258,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(251)] = { - [sym_attribute_item] = STATE(407), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3068), - [sym_variadic_parameter] = STATE(3068), - [sym_parameter] = STATE(3068), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2595), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1345), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1472), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), + [STATE(254)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_let_condition] = STATE(2625), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -46028,33 +46338,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(959), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46063,1127 +46372,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(253)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(254)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(255)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_let_condition] = STATE(2625), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(991), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [STATE(256)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1516), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(257)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(258)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(259)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(260)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(261)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(262)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1925), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47192,68 +46600,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(263)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), + [STATE(257)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -47271,31 +46679,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym__] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47304,63 +46714,1080 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(264)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), + [STATE(258)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(259)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(260)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(261)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(262)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(263)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(264)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(265)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(266)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(267)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47423,56 +47850,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(265)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), + [STATE(268)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47500,7 +47927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47535,103 +47962,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(266)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(339), + [STATE(269)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1548), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47640,110 +48067,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(339), + [STATE(270)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1902), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(271)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47752,852 +48291,1412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(268)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_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), + [STATE(272)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [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(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(273)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(274)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(275)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(276)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(269)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), - [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), + [STATE(277)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [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(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(270)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(278)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(271)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1922), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(279)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [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(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(272)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(280)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [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(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(281)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(282)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [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(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1953), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1614), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), + [STATE(284)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -48615,143 +49714,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1381), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48760,222 +49747,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(277)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(285)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(278)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(339), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1464), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48984,110 +49971,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1548), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(339), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49096,110 +50083,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(280)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(339), + [STATE(288)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49208,110 +50195,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(281)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(339), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49320,110 +50307,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(282)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1558), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(339), + [STATE(290)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49432,110 +50419,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(339), + [STATE(291)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [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(957), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49544,110 +50531,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(339), + [STATE(292)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49656,63 +50643,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), + [STATE(293)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49775,215 +50762,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), - [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), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), [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(989), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1926), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(339), + [STATE(295)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1754), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49992,63 +50979,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1921), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50111,56 +51098,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(298)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50223,56 +51322,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(290)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1956), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50300,7 +51399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50335,56 +51434,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), + [STATE(300)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50412,7 +51511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50447,215 +51546,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(292)] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3183), - [sym_variadic_parameter] = STATE(3183), - [sym_parameter] = STATE(3183), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(339), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1500), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50664,67 +51651,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), + [STATE(302)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1464), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50748,27 +51735,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50783,56 +51770,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50860,7 +51847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50895,56 +51882,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1562), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50972,7 +51959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51007,60 +51994,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(473), - [sym_match_expression] = STATE(473), - [sym_while_expression] = STATE(473), - [sym_loop_expression] = STATE(473), - [sym_for_expression] = STATE(473), - [sym_const_block] = STATE(473), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3729), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(473), - [sym_async_block] = STATE(473), - [sym_gen_block] = STATE(473), - [sym_try_block] = STATE(473), - [sym_block] = STATE(473), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1959), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51087,24 +52074,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_gen] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -51119,56 +52106,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [STATE(306)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1565), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51196,7 +52183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51211,459 +52198,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51672,110 +52211,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(465), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51784,110 +52323,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(465), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51896,110 +52435,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(465), + [STATE(309)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52008,110 +52547,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1731), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(310)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1964), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52120,68 +52659,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), + [STATE(311)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -52199,31 +52738,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52232,68 +52771,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), + [STATE(312)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -52311,31 +52850,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52344,110 +52883,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(465), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52456,68 +52995,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1548), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -52535,31 +53074,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52568,68 +53107,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [STATE(315)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3183), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2874), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(316)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -52647,31 +53298,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52680,63 +53331,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), + [STATE(317)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3183), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2874), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(318)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52764,7 +53527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52799,103 +53562,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(465), + [STATE(319)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52904,222 +53667,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(320)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53128,68 +53779,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53207,31 +53858,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53240,63 +53891,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53324,7 +53975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53359,61 +54010,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53431,31 +54082,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53464,180 +54115,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(319)] = { - [sym_else_clause] = STATE(414), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(1393), - [sym_identifier] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_macro_rules_BANG] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [anon_sym_u8] = ACTIONS(1395), - [anon_sym_i8] = ACTIONS(1395), - [anon_sym_u16] = ACTIONS(1395), - [anon_sym_i16] = ACTIONS(1395), - [anon_sym_u32] = ACTIONS(1395), - [anon_sym_i32] = ACTIONS(1395), - [anon_sym_u64] = ACTIONS(1395), - [anon_sym_i64] = ACTIONS(1395), - [anon_sym_u128] = ACTIONS(1395), - [anon_sym_i128] = ACTIONS(1395), - [anon_sym_isize] = ACTIONS(1395), - [anon_sym_usize] = ACTIONS(1395), - [anon_sym_f32] = ACTIONS(1395), - [anon_sym_f64] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_str] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_impl] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_mod] = ACTIONS(1395), - [anon_sym_pub] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_trait] = ACTIONS(1395), - [anon_sym_type] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_unsafe] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1395), - [anon_sym_try] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), - }, - [STATE(320)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), + [STATE(324)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1464), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53655,31 +54194,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53688,110 +54227,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53800,68 +54339,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(326)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(497), + [sym_match_expression] = STATE(497), + [sym_while_expression] = STATE(497), + [sym_loop_expression] = STATE(497), + [sym_for_expression] = STATE(497), + [sym_const_block] = STATE(497), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), + [sym_label] = STATE(3765), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(497), + [sym_async_block] = STATE(497), + [sym_gen_block] = STATE(497), + [sym_try_block] = STATE(497), + [sym_block] = STATE(497), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1403), + [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(1405), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_gen] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(327)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53879,31 +54530,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53912,68 +54563,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1729), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53991,31 +54642,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54024,110 +54675,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1971), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54136,110 +54787,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(465), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54248,110 +54899,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(331)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(465), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54360,68 +55011,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(333)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1500), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54439,31 +55202,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54472,68 +55235,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), + [STATE(334)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54551,31 +55314,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54584,68 +55347,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(335)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54663,31 +55426,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54696,68 +55459,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1621), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54775,31 +55538,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54808,68 +55571,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1438), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54887,31 +55650,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54920,1524 +55683,852 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(339), + [STATE(338)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(338)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(339)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3183), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2874), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(340)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1969), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(341)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(342)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(343)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(344)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(345)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -56455,31 +56546,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(346)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56488,222 +56691,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, [STATE(347)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56712,61 +56803,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(348)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), [sym_identifier] = ACTIONS(339), @@ -56832,102 +56923,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(349)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(491), + [sym_match_expression] = STATE(491), + [sym_while_expression] = STATE(491), + [sym_loop_expression] = STATE(491), + [sym_for_expression] = STATE(491), + [sym_const_block] = STATE(491), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_label] = STATE(3765), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(491), + [sym_async_block] = STATE(491), + [sym_gen_block] = STATE(491), + [sym_try_block] = STATE(491), + [sym_block] = STATE(491), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1403), + [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(1405), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_gen] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(350)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1970), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56936,292 +57139,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, [STATE(351)] = { - [sym_bracketed_type] = STATE(3628), - [sym_generic_function] = STATE(1711), - [sym_generic_type_with_turbofish] = STATE(2927), - [sym__expression_except_range] = STATE(1645), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1716), - [sym_scoped_identifier] = STATE(1620), - [sym_scoped_type_identifier_in_expression_position] = STATE(3242), - [sym_range_expression] = STATE(1703), - [sym_unary_expression] = STATE(1711), - [sym_try_expression] = STATE(1711), - [sym_reference_expression] = STATE(1711), - [sym_binary_expression] = STATE(1711), - [sym_assignment_expression] = STATE(1711), - [sym_compound_assignment_expr] = STATE(1711), - [sym_type_cast_expression] = STATE(1711), - [sym_return_expression] = STATE(1711), - [sym_yield_expression] = STATE(1711), - [sym_call_expression] = STATE(1711), - [sym_array_expression] = STATE(1711), - [sym_parenthesized_expression] = STATE(1711), - [sym_tuple_expression] = STATE(1711), - [sym_unit_expression] = STATE(1711), - [sym_struct_expression] = STATE(1711), - [sym_if_expression] = STATE(1711), - [sym_match_expression] = STATE(1711), - [sym_while_expression] = STATE(1711), - [sym_loop_expression] = STATE(1711), - [sym_for_expression] = STATE(1711), - [sym_const_block] = STATE(1711), - [sym_closure_expression] = STATE(1711), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3735), - [sym_break_expression] = STATE(1711), - [sym_continue_expression] = STATE(1711), - [sym_index_expression] = STATE(1711), - [sym_await_expression] = STATE(1711), - [sym_field_expression] = STATE(1640), - [sym_unsafe_block] = STATE(1711), - [sym_async_block] = STATE(1711), - [sym_gen_block] = STATE(1711), - [sym_try_block] = STATE(1711), - [sym_block] = STATE(1711), - [sym__literal] = STATE(1711), - [sym_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_boolean_literal] = STATE(1819), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(352)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1498), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(353)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1498), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -57239,31 +57442,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57272,63 +57475,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1933), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), + [STATE(354)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1500), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57356,7 +57559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -57391,166 +57594,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(354)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(355)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1548), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), [sym_identifier] = ACTIONS(339), @@ -57580,7 +57671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -57616,165 +57707,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(356)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3304), + [sym_variadic_parameter] = STATE(3304), + [sym_parameter] = STATE(3304), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1147), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(357)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(339), @@ -57840,59 +57931,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(358)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1958), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(497), + [sym_match_expression] = STATE(497), + [sym_while_expression] = STATE(497), + [sym_loop_expression] = STATE(497), + [sym_for_expression] = STATE(497), + [sym_const_block] = STATE(497), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3765), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(497), + [sym_async_block] = STATE(497), + [sym_gen_block] = STATE(497), + [sym_try_block] = STATE(497), + [sym_block] = STATE(497), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57919,24 +58010,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1405), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1407), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_gen] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1417), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1421), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1423), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57952,102 +58043,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(359)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1434), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(359), [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58056,180 +58147,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(360)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(360), [sym_block_comment] = STATE(360), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -58247,31 +58226,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58280,67 +58259,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), + [STATE(361)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(491), + [sym_match_expression] = STATE(491), + [sym_while_expression] = STATE(491), + [sym_loop_expression] = STATE(491), + [sym_for_expression] = STATE(491), + [sym_const_block] = STATE(491), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3765), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(491), + [sym_async_block] = STATE(491), + [sym_gen_block] = STATE(491), + [sym_try_block] = STATE(491), + [sym_block] = STATE(491), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1403), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58367,24 +58346,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1405), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1407), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_gen] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1415), + [anon_sym_match] = ACTIONS(1417), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1421), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1423), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -58399,56 +58378,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), + [STATE(362)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58511,56 +58490,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), + [STATE(363)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58588,7 +58567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58623,61 +58602,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(364)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(365)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1498), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -58695,31 +58786,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58728,61 +58819,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(366)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1948), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), [sym_identifier] = ACTIONS(339), @@ -58847,56 +58938,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1920), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(368)] = { + [sym_else_clause] = STATE(419), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_macro_rules_BANG] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_PLUS_EQ] = ACTIONS(1427), + [anon_sym_DASH_EQ] = ACTIONS(1427), + [anon_sym_STAR_EQ] = ACTIONS(1427), + [anon_sym_SLASH_EQ] = ACTIONS(1427), + [anon_sym_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_CARET_EQ] = ACTIONS(1427), + [anon_sym_AMP_EQ] = ACTIONS(1427), + [anon_sym_PIPE_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_EQ] = ACTIONS(1427), + [anon_sym_GT_GT_EQ] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_gen] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsafe] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), + }, + [STATE(369)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(370)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58959,168 +59386,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1622), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), + [STATE(371)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59183,56 +59498,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1928), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), + [STATE(372)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59295,56 +59610,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), + [STATE(373)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59407,56 +59722,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), + [STATE(374)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59519,56 +59834,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1944), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), + [STATE(375)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1946), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59631,56 +59946,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), + [STATE(376)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59743,56 +60058,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), + [STATE(377)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59855,61 +60170,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), + [STATE(378)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -59927,31 +60242,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59960,63 +60275,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(377)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), + [STATE(379)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60079,56 +60394,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(378)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), + [STATE(380)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1949), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60191,56 +60506,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(379)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), + [STATE(381)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60303,56 +60618,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1932), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), + [STATE(382)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60415,103 +60730,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(381)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(339), + [STATE(383)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60520,68 +60835,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(382)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), + [STATE(384)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -60599,31 +60914,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(385)] = { + [sym_bracketed_type] = STATE(3664), + [sym_generic_function] = STATE(1726), + [sym_generic_type_with_turbofish] = STATE(3015), + [sym__expression_except_range] = STATE(1663), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1743), + [sym_scoped_identifier] = STATE(1619), + [sym_scoped_type_identifier_in_expression_position] = STATE(3313), + [sym_range_expression] = STATE(1731), + [sym_unary_expression] = STATE(1726), + [sym_try_expression] = STATE(1726), + [sym_reference_expression] = STATE(1726), + [sym_binary_expression] = STATE(1726), + [sym_assignment_expression] = STATE(1726), + [sym_compound_assignment_expr] = STATE(1726), + [sym_type_cast_expression] = STATE(1726), + [sym_return_expression] = STATE(1726), + [sym_yield_expression] = STATE(1726), + [sym_call_expression] = STATE(1726), + [sym_array_expression] = STATE(1726), + [sym_parenthesized_expression] = STATE(1726), + [sym_tuple_expression] = STATE(1726), + [sym_unit_expression] = STATE(1726), + [sym_struct_expression] = STATE(1726), + [sym_if_expression] = STATE(1726), + [sym_match_expression] = STATE(1726), + [sym_while_expression] = STATE(1726), + [sym_loop_expression] = STATE(1726), + [sym_for_expression] = STATE(1726), + [sym_const_block] = STATE(1726), + [sym_closure_expression] = STATE(1726), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3771), + [sym_break_expression] = STATE(1726), + [sym_continue_expression] = STATE(1726), + [sym_index_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_field_expression] = STATE(1692), + [sym_unsafe_block] = STATE(1726), + [sym_async_block] = STATE(1726), + [sym_gen_block] = STATE(1726), + [sym_try_block] = STATE(1726), + [sym_block] = STATE(1726), + [sym__literal] = STATE(1726), + [sym_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(386)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60632,68 +61171,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1626), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), + [STATE(387)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -60711,31 +61250,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60744,63 +61283,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(384)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3030), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), + [STATE(388)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1965), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60863,61 +61402,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(385)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), + [STATE(389)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -60935,31 +61474,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1381), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -60968,68 +61507,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(386)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(230), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), + [STATE(390)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -61047,31 +61586,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(513), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(391)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(3086), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1541), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(475), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(477), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -61080,68 +61731,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(387)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), + [STATE(392)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1645), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(257), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(953), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -61159,31 +61810,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(957), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(507), + [anon_sym_break] = ACTIONS(509), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(513), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(519), + [anon_sym_move] = ACTIONS(521), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -61192,68 +61843,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3461), - [sym_generic_function] = STATE(1515), - [sym_generic_type_with_turbofish] = STATE(3058), - [sym__expression_except_range] = STATE(1416), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1490), - [sym_scoped_identifier] = STATE(1601), - [sym_scoped_type_identifier_in_expression_position] = STATE(3187), - [sym_range_expression] = STATE(1524), - [sym_unary_expression] = STATE(1515), - [sym_try_expression] = STATE(1515), - [sym_reference_expression] = STATE(1515), - [sym_binary_expression] = STATE(1515), - [sym_assignment_expression] = STATE(1515), - [sym_compound_assignment_expr] = STATE(1515), - [sym_type_cast_expression] = STATE(1515), - [sym_return_expression] = STATE(1515), - [sym_yield_expression] = STATE(1515), - [sym_call_expression] = STATE(1515), - [sym_array_expression] = STATE(1515), - [sym_parenthesized_expression] = STATE(1515), - [sym_tuple_expression] = STATE(1515), - [sym_unit_expression] = STATE(1515), - [sym_struct_expression] = STATE(1515), - [sym_if_expression] = STATE(1515), - [sym_match_expression] = STATE(1515), - [sym_while_expression] = STATE(1515), - [sym_loop_expression] = STATE(1515), - [sym_for_expression] = STATE(1515), - [sym_const_block] = STATE(1515), - [sym_closure_expression] = STATE(1515), - [sym_closure_parameters] = STATE(223), - [sym_label] = STATE(3669), - [sym_break_expression] = STATE(1515), - [sym_continue_expression] = STATE(1515), - [sym_index_expression] = STATE(1515), - [sym_await_expression] = STATE(1515), - [sym_field_expression] = STATE(1418), - [sym_unsafe_block] = STATE(1515), - [sym_async_block] = STATE(1515), - [sym_gen_block] = STATE(1515), - [sym_try_block] = STATE(1515), - [sym_block] = STATE(1515), - [sym__literal] = STATE(1515), - [sym_string_literal] = STATE(1491), - [sym_raw_string_literal] = STATE(1491), - [sym_boolean_literal] = STATE(1491), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), + [STATE(393)] = { + [sym_bracketed_type] = STATE(3525), + [sym_generic_function] = STATE(1526), + [sym_generic_type_with_turbofish] = STATE(2992), + [sym__expression_except_range] = STATE(1423), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1481), + [sym_scoped_identifier] = STATE(1612), + [sym_scoped_type_identifier_in_expression_position] = STATE(3217), + [sym_range_expression] = STATE(1534), + [sym_unary_expression] = STATE(1526), + [sym_try_expression] = STATE(1526), + [sym_reference_expression] = STATE(1526), + [sym_binary_expression] = STATE(1526), + [sym_assignment_expression] = STATE(1526), + [sym_compound_assignment_expr] = STATE(1526), + [sym_type_cast_expression] = STATE(1526), + [sym_return_expression] = STATE(1526), + [sym_yield_expression] = STATE(1526), + [sym_call_expression] = STATE(1526), + [sym_array_expression] = STATE(1526), + [sym_parenthesized_expression] = STATE(1526), + [sym_tuple_expression] = STATE(1526), + [sym_unit_expression] = STATE(1526), + [sym_struct_expression] = STATE(1526), + [sym_if_expression] = STATE(1526), + [sym_match_expression] = STATE(1526), + [sym_while_expression] = STATE(1526), + [sym_loop_expression] = STATE(1526), + [sym_for_expression] = STATE(1526), + [sym_const_block] = STATE(1526), + [sym_closure_expression] = STATE(1526), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3705), + [sym_break_expression] = STATE(1526), + [sym_continue_expression] = STATE(1526), + [sym_index_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_field_expression] = STATE(1425), + [sym_unsafe_block] = STATE(1526), + [sym_async_block] = STATE(1526), + [sym_gen_block] = STATE(1526), + [sym_try_block] = STATE(1526), + [sym_block] = STATE(1526), + [sym__literal] = STATE(1526), + [sym_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(1067), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -61271,31 +61922,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_async] = ACTIONS(473), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(475), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(475), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -61304,681 +61955,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(389)] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - }, - [STATE(390)] = { - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_QMARK] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1425), - [anon_sym_PERCENT] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_PIPE_PIPE] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS_EQ] = ACTIONS(1423), - [anon_sym_DASH_EQ] = ACTIONS(1423), - [anon_sym_STAR_EQ] = ACTIONS(1423), - [anon_sym_SLASH_EQ] = ACTIONS(1423), - [anon_sym_PERCENT_EQ] = ACTIONS(1423), - [anon_sym_CARET_EQ] = ACTIONS(1423), - [anon_sym_AMP_EQ] = ACTIONS(1423), - [anon_sym_PIPE_EQ] = ACTIONS(1423), - [anon_sym_LT_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_GT_EQ] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1423), - [anon_sym_BANG_EQ] = ACTIONS(1423), - [anon_sym_GT] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_as] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_gen] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), - }, - [STATE(391)] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_QMARK] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PIPE] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_CARET_EQ] = ACTIONS(1427), - [anon_sym_AMP_EQ] = ACTIONS(1427), - [anon_sym_PIPE_EQ] = ACTIONS(1427), - [anon_sym_LT_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_GT_EQ] = ACTIONS(1427), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1427), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_gen] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym__raw_string_literal_start] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - }, - [STATE(392)] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_as] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_try] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - }, - [STATE(393)] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_PLUS_EQ] = ACTIONS(1435), - [anon_sym_DASH_EQ] = ACTIONS(1435), - [anon_sym_STAR_EQ] = ACTIONS(1435), - [anon_sym_SLASH_EQ] = ACTIONS(1435), - [anon_sym_PERCENT_EQ] = ACTIONS(1435), - [anon_sym_CARET_EQ] = ACTIONS(1435), - [anon_sym_AMP_EQ] = ACTIONS(1435), - [anon_sym_PIPE_EQ] = ACTIONS(1435), - [anon_sym_LT_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_GT_EQ] = ACTIONS(1435), - [anon_sym_EQ] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_gen] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym__raw_string_literal_start] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), - }, [STATE(394)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3006), - [sym_variadic_parameter] = STATE(3006), - [sym_parameter] = STATE(3006), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2735), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), }, [STATE(395)] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_macro_rules_BANG] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_impl] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(1439), + [anon_sym_loop] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_mod] = ACTIONS(1439), + [anon_sym_pub] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_trait] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_unsafe] = ACTIONS(1439), + [anon_sym_use] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), + }, + [STATE(396)] = { + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), [ts_builtin_sym_end] = ACTIONS(1441), [sym_identifier] = ACTIONS(1443), [anon_sym_SEMI] = ACTIONS(1441), @@ -62069,6 +62277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1443), [anon_sym_while] = ACTIONS(1443), [anon_sym_extern] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1443), [anon_sym_yield] = ACTIONS(1443), [anon_sym_move] = ACTIONS(1443), [anon_sym_try] = ACTIONS(1443), @@ -62086,9 +62295,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1441), [sym_float_literal] = ACTIONS(1441), }, - [STATE(396)] = { - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), + [STATE(397)] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), [ts_builtin_sym_end] = ACTIONS(1445), [sym_identifier] = ACTIONS(1447), [anon_sym_SEMI] = ACTIONS(1445), @@ -62097,9 +62306,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1445), [anon_sym_LBRACE] = ACTIONS(1445), [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1447), [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1445), [anon_sym_u8] = ACTIONS(1447), [anon_sym_i8] = ACTIONS(1447), [anon_sym_u16] = ACTIONS(1447), @@ -62118,41 +62327,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1447), [anon_sym_char] = ACTIONS(1447), [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), [anon_sym_BANG] = ACTIONS(1447), [anon_sym_AMP] = ACTIONS(1447), [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1447), [anon_sym_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), [anon_sym_COLON_COLON] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(1445), [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1447), [anon_sym_async] = ACTIONS(1447), [anon_sym_break] = ACTIONS(1447), [anon_sym_const] = ACTIONS(1447), @@ -62179,6 +62388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1447), [anon_sym_while] = ACTIONS(1447), [anon_sym_extern] = ACTIONS(1447), + [anon_sym_else] = ACTIONS(1447), [anon_sym_yield] = ACTIONS(1447), [anon_sym_move] = ACTIONS(1447), [anon_sym_try] = ACTIONS(1447), @@ -62196,9 +62406,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1445), [sym_float_literal] = ACTIONS(1445), }, - [STATE(397)] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), + [STATE(398)] = { + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(399)] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1453), [sym_identifier] = ACTIONS(1455), [anon_sym_SEMI] = ACTIONS(1453), @@ -62306,9 +62627,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1453), [sym_float_literal] = ACTIONS(1453), }, - [STATE(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), + [STATE(400)] = { + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), [ts_builtin_sym_end] = ACTIONS(1457), [sym_identifier] = ACTIONS(1459), [anon_sym_SEMI] = ACTIONS(1457), @@ -62416,9 +62737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1457), [sym_float_literal] = ACTIONS(1457), }, - [STATE(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), + [STATE(401)] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), [ts_builtin_sym_end] = ACTIONS(1461), [sym_identifier] = ACTIONS(1463), [anon_sym_SEMI] = ACTIONS(1461), @@ -62526,9 +62847,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1461), [sym_float_literal] = ACTIONS(1461), }, - [STATE(400)] = { - [sym_line_comment] = STATE(400), - [sym_block_comment] = STATE(400), + [STATE(402)] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), [ts_builtin_sym_end] = ACTIONS(1465), [sym_identifier] = ACTIONS(1467), [anon_sym_SEMI] = ACTIONS(1465), @@ -62636,119 +62957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1465), [sym_float_literal] = ACTIONS(1465), }, - [STATE(401)] = { - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_macro_rules_BANG] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_extern] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_move] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym_metavariable] = ACTIONS(1043), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), - }, - [STATE(402)] = { - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), + [STATE(403)] = { + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), [ts_builtin_sym_end] = ACTIONS(1469), [sym_identifier] = ACTIONS(1471), [anon_sym_SEMI] = ACTIONS(1469), @@ -62856,9 +63067,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1469), [sym_float_literal] = ACTIONS(1469), }, - [STATE(403)] = { - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), + [STATE(404)] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), [ts_builtin_sym_end] = ACTIONS(1473), [sym_identifier] = ACTIONS(1475), [anon_sym_SEMI] = ACTIONS(1473), @@ -62966,9 +63177,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1473), [sym_float_literal] = ACTIONS(1473), }, - [STATE(404)] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), + [STATE(405)] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), [ts_builtin_sym_end] = ACTIONS(1477), [sym_identifier] = ACTIONS(1479), [anon_sym_SEMI] = ACTIONS(1477), @@ -62977,9 +63188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_LBRACE] = ACTIONS(1477), [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1481), [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1483), [anon_sym_u8] = ACTIONS(1479), [anon_sym_i8] = ACTIONS(1479), [anon_sym_u16] = ACTIONS(1479), @@ -62998,41 +63209,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1479), [anon_sym_char] = ACTIONS(1479), [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), [anon_sym_BANG] = ACTIONS(1479), [anon_sym_AMP] = ACTIONS(1479), [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1481), [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1481), [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), [anon_sym_COLON_COLON] = ACTIONS(1477), [anon_sym_POUND] = ACTIONS(1477), [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1481), [anon_sym_async] = ACTIONS(1479), [anon_sym_break] = ACTIONS(1479), [anon_sym_const] = ACTIONS(1479), @@ -63076,116 +63287,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1477), [sym_float_literal] = ACTIONS(1477), }, - [STATE(405)] = { - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_macro_rules_BANG] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_async] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_impl] = ACTIONS(1483), - [anon_sym_let] = ACTIONS(1483), - [anon_sym_loop] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_mod] = ACTIONS(1483), - [anon_sym_pub] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_trait] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_unsafe] = ACTIONS(1483), - [anon_sym_use] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_move] = ACTIONS(1483), - [anon_sym_try] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), - }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), @@ -63297,1009 +63398,1009 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1485), }, [STATE(407)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3084), - [sym_variadic_parameter] = STATE(3084), - [sym_parameter] = STATE(3084), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2802), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_macro_rules_BANG] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_async] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_enum] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_gen] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_impl] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1491), + [anon_sym_pub] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_trait] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_unsafe] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_yield] = ACTIONS(1491), + [anon_sym_move] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym__raw_string_literal_start] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), }, [STATE(408)] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_macro_rules_BANG] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), - [anon_sym_DASH_EQ] = ACTIONS(1039), - [anon_sym_STAR_EQ] = ACTIONS(1039), - [anon_sym_SLASH_EQ] = ACTIONS(1039), - [anon_sym_PERCENT_EQ] = ACTIONS(1039), - [anon_sym_CARET_EQ] = ACTIONS(1039), - [anon_sym_AMP_EQ] = ACTIONS(1039), - [anon_sym_PIPE_EQ] = ACTIONS(1039), - [anon_sym_LT_LT_EQ] = ACTIONS(1039), - [anon_sym_GT_GT_EQ] = ACTIONS(1039), - [anon_sym_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1037), - [anon_sym_LT] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1039), - [anon_sym_LT_EQ] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_SQUOTE] = ACTIONS(1037), - [anon_sym_as] = ACTIONS(1037), - [anon_sym_async] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_fn] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_gen] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_impl] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_mod] = ACTIONS(1037), - [anon_sym_pub] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_struct] = ACTIONS(1037), - [anon_sym_trait] = ACTIONS(1037), - [anon_sym_type] = ACTIONS(1037), - [anon_sym_union] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_move] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1039), - [aux_sym_string_literal_token1] = ACTIONS(1039), - [sym_char_literal] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(1037), - [anon_sym_false] = ACTIONS(1037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym_metavariable] = ACTIONS(1039), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_identifier] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_macro_rules_BANG] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_QMARK] = ACTIONS(1493), + [anon_sym_u8] = ACTIONS(1495), + [anon_sym_i8] = ACTIONS(1495), + [anon_sym_u16] = ACTIONS(1495), + [anon_sym_i16] = ACTIONS(1495), + [anon_sym_u32] = ACTIONS(1495), + [anon_sym_i32] = ACTIONS(1495), + [anon_sym_u64] = ACTIONS(1495), + [anon_sym_i64] = ACTIONS(1495), + [anon_sym_u128] = ACTIONS(1495), + [anon_sym_i128] = ACTIONS(1495), + [anon_sym_isize] = ACTIONS(1495), + [anon_sym_usize] = ACTIONS(1495), + [anon_sym_f32] = ACTIONS(1495), + [anon_sym_f64] = ACTIONS(1495), + [anon_sym_bool] = ACTIONS(1495), + [anon_sym_str] = ACTIONS(1495), + [anon_sym_char] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym_PERCENT] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1495), + [anon_sym_AMP_AMP] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(1495), + [anon_sym_GT_GT] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1493), + [anon_sym_DASH_EQ] = ACTIONS(1493), + [anon_sym_STAR_EQ] = ACTIONS(1493), + [anon_sym_SLASH_EQ] = ACTIONS(1493), + [anon_sym_PERCENT_EQ] = ACTIONS(1493), + [anon_sym_CARET_EQ] = ACTIONS(1493), + [anon_sym_AMP_EQ] = ACTIONS(1493), + [anon_sym_PIPE_EQ] = ACTIONS(1493), + [anon_sym_LT_LT_EQ] = ACTIONS(1493), + [anon_sym_GT_GT_EQ] = ACTIONS(1493), + [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), + [anon_sym_COLON_COLON] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(1493), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1495), + [anon_sym_async] = ACTIONS(1495), + [anon_sym_break] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1495), + [anon_sym_continue] = ACTIONS(1495), + [anon_sym_default] = ACTIONS(1495), + [anon_sym_enum] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1495), + [anon_sym_for] = ACTIONS(1495), + [anon_sym_gen] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1495), + [anon_sym_impl] = ACTIONS(1495), + [anon_sym_let] = ACTIONS(1495), + [anon_sym_loop] = ACTIONS(1495), + [anon_sym_match] = ACTIONS(1495), + [anon_sym_mod] = ACTIONS(1495), + [anon_sym_pub] = ACTIONS(1495), + [anon_sym_return] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1495), + [anon_sym_struct] = ACTIONS(1495), + [anon_sym_trait] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1495), + [anon_sym_union] = ACTIONS(1495), + [anon_sym_unsafe] = ACTIONS(1495), + [anon_sym_use] = ACTIONS(1495), + [anon_sym_while] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(1495), + [anon_sym_yield] = ACTIONS(1495), + [anon_sym_move] = ACTIONS(1495), + [anon_sym_try] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1493), + [aux_sym_string_literal_token1] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1495), + [sym_super] = ACTIONS(1495), + [sym_crate] = ACTIONS(1495), + [sym_metavariable] = ACTIONS(1493), + [sym__raw_string_literal_start] = ACTIONS(1493), + [sym_float_literal] = ACTIONS(1493), }, [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_identifier] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1491), - [anon_sym_macro_rules_BANG] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_async] = ACTIONS(1493), - [anon_sym_break] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_continue] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_enum] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1493), - [anon_sym_for] = ACTIONS(1493), - [anon_sym_gen] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1493), - [anon_sym_impl] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), - [anon_sym_loop] = ACTIONS(1493), - [anon_sym_match] = ACTIONS(1493), - [anon_sym_mod] = ACTIONS(1493), - [anon_sym_pub] = ACTIONS(1493), - [anon_sym_return] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1493), - [anon_sym_trait] = ACTIONS(1493), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_unsafe] = ACTIONS(1493), - [anon_sym_use] = ACTIONS(1493), - [anon_sym_while] = ACTIONS(1493), - [anon_sym_extern] = ACTIONS(1493), - [anon_sym_yield] = ACTIONS(1493), - [anon_sym_move] = ACTIONS(1493), - [anon_sym_try] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym__raw_string_literal_start] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), }, [STATE(410)] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_macro_rules_BANG] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1495), - [anon_sym_LT_LT] = ACTIONS(1497), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_gen] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_impl] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_loop] = ACTIONS(1497), - [anon_sym_match] = ACTIONS(1497), - [anon_sym_mod] = ACTIONS(1497), - [anon_sym_pub] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1497), - [anon_sym_trait] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_unsafe] = ACTIONS(1497), - [anon_sym_use] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_extern] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_move] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym__raw_string_literal_start] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym_identifier] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_macro_rules_BANG] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1501), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1501), + [anon_sym_DASH_EQ] = ACTIONS(1501), + [anon_sym_STAR_EQ] = ACTIONS(1501), + [anon_sym_SLASH_EQ] = ACTIONS(1501), + [anon_sym_PERCENT_EQ] = ACTIONS(1501), + [anon_sym_CARET_EQ] = ACTIONS(1501), + [anon_sym_AMP_EQ] = ACTIONS(1501), + [anon_sym_PIPE_EQ] = ACTIONS(1501), + [anon_sym_LT_LT_EQ] = ACTIONS(1501), + [anon_sym_GT_GT_EQ] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_break] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_continue] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_enum] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1503), + [anon_sym_for] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1503), + [anon_sym_impl] = ACTIONS(1503), + [anon_sym_let] = ACTIONS(1503), + [anon_sym_loop] = ACTIONS(1503), + [anon_sym_match] = ACTIONS(1503), + [anon_sym_mod] = ACTIONS(1503), + [anon_sym_pub] = ACTIONS(1503), + [anon_sym_return] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1503), + [anon_sym_trait] = ACTIONS(1503), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_unsafe] = ACTIONS(1503), + [anon_sym_use] = ACTIONS(1503), + [anon_sym_while] = ACTIONS(1503), + [anon_sym_extern] = ACTIONS(1503), + [anon_sym_yield] = ACTIONS(1503), + [anon_sym_move] = ACTIONS(1503), + [anon_sym_try] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), }, [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_macro_rules_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP_AMP] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_gen] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_impl] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_loop] = ACTIONS(1501), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_mod] = ACTIONS(1501), - [anon_sym_pub] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_trait] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_unsafe] = ACTIONS(1501), - [anon_sym_use] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_move] = ACTIONS(1501), - [anon_sym_try] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym__raw_string_literal_start] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_macro_rules_BANG] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_extern] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_move] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1051), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_macro_rules_BANG] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_impl] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_loop] = ACTIONS(1505), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_mod] = ACTIONS(1505), - [anon_sym_pub] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_trait] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_unsafe] = ACTIONS(1505), - [anon_sym_use] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_move] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_identifier] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_macro_rules_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_enum] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_impl] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_mod] = ACTIONS(1507), + [anon_sym_pub] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1507), + [anon_sym_struct] = ACTIONS(1507), + [anon_sym_trait] = ACTIONS(1507), + [anon_sym_type] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_unsafe] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_yield] = ACTIONS(1507), + [anon_sym_move] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_macro_rules_BANG] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_async] = ACTIONS(1511), + [anon_sym_break] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_continue] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_enum] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1511), + [anon_sym_for] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1511), + [anon_sym_impl] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), + [anon_sym_loop] = ACTIONS(1511), + [anon_sym_match] = ACTIONS(1511), + [anon_sym_mod] = ACTIONS(1511), + [anon_sym_pub] = ACTIONS(1511), + [anon_sym_return] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_struct] = ACTIONS(1511), + [anon_sym_trait] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_unsafe] = ACTIONS(1511), + [anon_sym_use] = ACTIONS(1511), + [anon_sym_while] = ACTIONS(1511), + [anon_sym_extern] = ACTIONS(1511), + [anon_sym_yield] = ACTIONS(1511), + [anon_sym_move] = ACTIONS(1511), + [anon_sym_try] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), }, [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_macro_rules_BANG] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PERCENT_EQ] = ACTIONS(1511), - [anon_sym_CARET_EQ] = ACTIONS(1511), - [anon_sym_AMP_EQ] = ACTIONS(1511), - [anon_sym_PIPE_EQ] = ACTIONS(1511), - [anon_sym_LT_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_GT_EQ] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_as] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_gen] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_impl] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_loop] = ACTIONS(1513), - [anon_sym_match] = ACTIONS(1513), - [anon_sym_mod] = ACTIONS(1513), - [anon_sym_pub] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_trait] = ACTIONS(1513), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_unsafe] = ACTIONS(1513), - [anon_sym_use] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym_yield] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym__raw_string_literal_start] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [ts_builtin_sym_end] = ACTIONS(1513), + [sym_identifier] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_macro_rules_BANG] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_async] = ACTIONS(1515), + [anon_sym_break] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_continue] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_enum] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1515), + [anon_sym_for] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_impl] = ACTIONS(1515), + [anon_sym_let] = ACTIONS(1515), + [anon_sym_loop] = ACTIONS(1515), + [anon_sym_match] = ACTIONS(1515), + [anon_sym_mod] = ACTIONS(1515), + [anon_sym_pub] = ACTIONS(1515), + [anon_sym_return] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1515), + [anon_sym_struct] = ACTIONS(1515), + [anon_sym_trait] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_unsafe] = ACTIONS(1515), + [anon_sym_use] = ACTIONS(1515), + [anon_sym_while] = ACTIONS(1515), + [anon_sym_extern] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(1515), + [anon_sym_move] = ACTIONS(1515), + [anon_sym_try] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), }, [STATE(415)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(2879), + [sym_variadic_parameter] = STATE(2879), + [sym_parameter] = STATE(2879), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2614), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_identifier] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_macro_rules_BANG] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_PERCENT] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_PIPE_PIPE] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1517), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PERCENT_EQ] = ACTIONS(1515), - [anon_sym_CARET_EQ] = ACTIONS(1515), - [anon_sym_AMP_EQ] = ACTIONS(1515), - [anon_sym_PIPE_EQ] = ACTIONS(1515), - [anon_sym_LT_LT_EQ] = ACTIONS(1515), - [anon_sym_GT_GT_EQ] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1515), - [anon_sym_BANG_EQ] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_GT_EQ] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1515), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_gen] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_impl] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_loop] = ACTIONS(1517), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_mod] = ACTIONS(1517), - [anon_sym_pub] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_trait] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_unsafe] = ACTIONS(1517), - [anon_sym_use] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym_yield] = ACTIONS(1517), - [anon_sym_move] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym__raw_string_literal_start] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), [ts_builtin_sym_end] = ACTIONS(1519), [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1519), [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1519), [anon_sym_u8] = ACTIONS(1521), [anon_sym_i8] = ACTIONS(1521), [anon_sym_u16] = ACTIONS(1521), @@ -64317,42 +64418,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1521), [anon_sym_str] = ACTIONS(1521), [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_LT_LT] = ACTIONS(1521), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PERCENT_EQ] = ACTIONS(1519), + [anon_sym_CARET_EQ] = ACTIONS(1519), + [anon_sym_AMP_EQ] = ACTIONS(1519), + [anon_sym_PIPE_EQ] = ACTIONS(1519), + [anon_sym_LT_LT_EQ] = ACTIONS(1519), + [anon_sym_GT_GT_EQ] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_EQ_EQ] = ACTIONS(1519), + [anon_sym_BANG_EQ] = ACTIONS(1519), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(1519), [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1521), [anon_sym_async] = ACTIONS(1521), [anon_sym_break] = ACTIONS(1521), [anon_sym_const] = ACTIONS(1521), @@ -64397,118 +64498,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1519), }, [STATE(417)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(3163), - [sym_variadic_parameter] = STATE(3163), - [sym_parameter] = STATE(3163), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1055), + [sym_identifier] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_macro_rules_BANG] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1053), + [anon_sym_i8] = ACTIONS(1053), + [anon_sym_u16] = ACTIONS(1053), + [anon_sym_i16] = ACTIONS(1053), + [anon_sym_u32] = ACTIONS(1053), + [anon_sym_i32] = ACTIONS(1053), + [anon_sym_u64] = ACTIONS(1053), + [anon_sym_i64] = ACTIONS(1053), + [anon_sym_u128] = ACTIONS(1053), + [anon_sym_i128] = ACTIONS(1053), + [anon_sym_isize] = ACTIONS(1053), + [anon_sym_usize] = ACTIONS(1053), + [anon_sym_f32] = ACTIONS(1053), + [anon_sym_f64] = ACTIONS(1053), + [anon_sym_bool] = ACTIONS(1053), + [anon_sym_str] = ACTIONS(1053), + [anon_sym_char] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_AMP_AMP] = ACTIONS(1055), + [anon_sym_PIPE_PIPE] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_PLUS_EQ] = ACTIONS(1055), + [anon_sym_DASH_EQ] = ACTIONS(1055), + [anon_sym_STAR_EQ] = ACTIONS(1055), + [anon_sym_SLASH_EQ] = ACTIONS(1055), + [anon_sym_PERCENT_EQ] = ACTIONS(1055), + [anon_sym_CARET_EQ] = ACTIONS(1055), + [anon_sym_AMP_EQ] = ACTIONS(1055), + [anon_sym_PIPE_EQ] = ACTIONS(1055), + [anon_sym_LT_LT_EQ] = ACTIONS(1055), + [anon_sym_GT_GT_EQ] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_EQ_EQ] = ACTIONS(1055), + [anon_sym_BANG_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT_EQ] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_as] = ACTIONS(1053), + [anon_sym_async] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1053), + [anon_sym_const] = ACTIONS(1053), + [anon_sym_continue] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1053), + [anon_sym_enum] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(1053), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_gen] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1053), + [anon_sym_impl] = ACTIONS(1053), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_loop] = ACTIONS(1053), + [anon_sym_match] = ACTIONS(1053), + [anon_sym_mod] = ACTIONS(1053), + [anon_sym_pub] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1053), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_struct] = ACTIONS(1053), + [anon_sym_trait] = ACTIONS(1053), + [anon_sym_type] = ACTIONS(1053), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_unsafe] = ACTIONS(1053), + [anon_sym_use] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1053), + [anon_sym_extern] = ACTIONS(1053), + [anon_sym_yield] = ACTIONS(1053), + [anon_sym_move] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1053), + [sym_integer_literal] = ACTIONS(1055), + [aux_sym_string_literal_token1] = ACTIONS(1055), + [sym_char_literal] = ACTIONS(1055), + [anon_sym_true] = ACTIONS(1053), + [anon_sym_false] = ACTIONS(1053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1053), + [sym_super] = ACTIONS(1053), + [sym_crate] = ACTIONS(1053), + [sym_metavariable] = ACTIONS(1055), + [sym__raw_string_literal_start] = ACTIONS(1055), + [sym_float_literal] = ACTIONS(1055), }, [STATE(418)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3034), + [sym_variadic_parameter] = STATE(3034), + [sym_parameter] = STATE(3034), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2802), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(419)] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), [ts_builtin_sym_end] = ACTIONS(1525), [sym_identifier] = ACTIONS(1527), [anon_sym_SEMI] = ACTIONS(1525), @@ -64616,4382 +64827,4147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1525), [sym_float_literal] = ACTIONS(1525), }, - [STATE(419)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_self_parameter] = STATE(2908), - [sym_variadic_parameter] = STATE(2908), - [sym_parameter] = STATE(2908), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2666), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(2909), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3213), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, [STATE(420)] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_impl] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_loop] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_mod] = ACTIONS(1533), - [anon_sym_pub] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_trait] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_unsafe] = ACTIONS(1533), - [anon_sym_use] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_move] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_macro_rules_BANG] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_QMARK] = ACTIONS(1529), + [anon_sym_u8] = ACTIONS(1531), + [anon_sym_i8] = ACTIONS(1531), + [anon_sym_u16] = ACTIONS(1531), + [anon_sym_i16] = ACTIONS(1531), + [anon_sym_u32] = ACTIONS(1531), + [anon_sym_i32] = ACTIONS(1531), + [anon_sym_u64] = ACTIONS(1531), + [anon_sym_i64] = ACTIONS(1531), + [anon_sym_u128] = ACTIONS(1531), + [anon_sym_i128] = ACTIONS(1531), + [anon_sym_isize] = ACTIONS(1531), + [anon_sym_usize] = ACTIONS(1531), + [anon_sym_f32] = ACTIONS(1531), + [anon_sym_f64] = ACTIONS(1531), + [anon_sym_bool] = ACTIONS(1531), + [anon_sym_str] = ACTIONS(1531), + [anon_sym_char] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1531), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PERCENT_EQ] = ACTIONS(1529), + [anon_sym_CARET_EQ] = ACTIONS(1529), + [anon_sym_AMP_EQ] = ACTIONS(1529), + [anon_sym_PIPE_EQ] = ACTIONS(1529), + [anon_sym_LT_LT_EQ] = ACTIONS(1529), + [anon_sym_GT_GT_EQ] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_EQ_EQ] = ACTIONS(1529), + [anon_sym_BANG_EQ] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_GT_EQ] = ACTIONS(1529), + [anon_sym_LT_EQ] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_as] = ACTIONS(1531), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_break] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_continue] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_enum] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1531), + [anon_sym_for] = ACTIONS(1531), + [anon_sym_gen] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_impl] = ACTIONS(1531), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_loop] = ACTIONS(1531), + [anon_sym_match] = ACTIONS(1531), + [anon_sym_mod] = ACTIONS(1531), + [anon_sym_pub] = ACTIONS(1531), + [anon_sym_return] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(1531), + [anon_sym_struct] = ACTIONS(1531), + [anon_sym_trait] = ACTIONS(1531), + [anon_sym_type] = ACTIONS(1531), + [anon_sym_union] = ACTIONS(1531), + [anon_sym_unsafe] = ACTIONS(1531), + [anon_sym_use] = ACTIONS(1531), + [anon_sym_while] = ACTIONS(1531), + [anon_sym_extern] = ACTIONS(1531), + [anon_sym_yield] = ACTIONS(1531), + [anon_sym_move] = ACTIONS(1531), + [anon_sym_try] = ACTIONS(1531), + [sym_integer_literal] = ACTIONS(1529), + [aux_sym_string_literal_token1] = ACTIONS(1529), + [sym_char_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1531), + [anon_sym_false] = ACTIONS(1531), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym__raw_string_literal_start] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), }, [STATE(421)] = { [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PERCENT_EQ] = ACTIONS(1535), - [anon_sym_CARET_EQ] = ACTIONS(1535), - [anon_sym_AMP_EQ] = ACTIONS(1535), - [anon_sym_PIPE_EQ] = ACTIONS(1535), - [anon_sym_LT_LT_EQ] = ACTIONS(1535), - [anon_sym_GT_GT_EQ] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_impl] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_loop] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1537), - [anon_sym_mod] = ACTIONS(1537), - [anon_sym_pub] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_trait] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_unsafe] = ACTIONS(1537), - [anon_sym_use] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_extern] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_move] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [ts_builtin_sym_end] = ACTIONS(1533), + [sym_identifier] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_macro_rules_BANG] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_QMARK] = ACTIONS(1533), + [anon_sym_u8] = ACTIONS(1535), + [anon_sym_i8] = ACTIONS(1535), + [anon_sym_u16] = ACTIONS(1535), + [anon_sym_i16] = ACTIONS(1535), + [anon_sym_u32] = ACTIONS(1535), + [anon_sym_i32] = ACTIONS(1535), + [anon_sym_u64] = ACTIONS(1535), + [anon_sym_i64] = ACTIONS(1535), + [anon_sym_u128] = ACTIONS(1535), + [anon_sym_i128] = ACTIONS(1535), + [anon_sym_isize] = ACTIONS(1535), + [anon_sym_usize] = ACTIONS(1535), + [anon_sym_f32] = ACTIONS(1535), + [anon_sym_f64] = ACTIONS(1535), + [anon_sym_bool] = ACTIONS(1535), + [anon_sym_str] = ACTIONS(1535), + [anon_sym_char] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PERCENT_EQ] = ACTIONS(1533), + [anon_sym_CARET_EQ] = ACTIONS(1533), + [anon_sym_AMP_EQ] = ACTIONS(1533), + [anon_sym_PIPE_EQ] = ACTIONS(1533), + [anon_sym_LT_LT_EQ] = ACTIONS(1533), + [anon_sym_GT_GT_EQ] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_break] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_continue] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1535), + [anon_sym_for] = ACTIONS(1535), + [anon_sym_gen] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_impl] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1535), + [anon_sym_loop] = ACTIONS(1535), + [anon_sym_match] = ACTIONS(1535), + [anon_sym_mod] = ACTIONS(1535), + [anon_sym_pub] = ACTIONS(1535), + [anon_sym_return] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1535), + [anon_sym_struct] = ACTIONS(1535), + [anon_sym_trait] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_unsafe] = ACTIONS(1535), + [anon_sym_use] = ACTIONS(1535), + [anon_sym_while] = ACTIONS(1535), + [anon_sym_extern] = ACTIONS(1535), + [anon_sym_yield] = ACTIONS(1535), + [anon_sym_move] = ACTIONS(1535), + [anon_sym_try] = ACTIONS(1535), + [sym_integer_literal] = ACTIONS(1533), + [aux_sym_string_literal_token1] = ACTIONS(1533), + [sym_char_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1535), + [anon_sym_false] = ACTIONS(1535), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym__raw_string_literal_start] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), }, [STATE(422)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(2889), + [sym_variadic_parameter] = STATE(2889), + [sym_parameter] = STATE(2889), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2715), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_async] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_impl] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1541), - [anon_sym_loop] = ACTIONS(1541), - [anon_sym_match] = ACTIONS(1541), - [anon_sym_mod] = ACTIONS(1541), - [anon_sym_pub] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_trait] = ACTIONS(1541), - [anon_sym_type] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1541), - [anon_sym_use] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym_yield] = ACTIONS(1541), - [anon_sym_move] = ACTIONS(1541), - [anon_sym_try] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(423)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_self_parameter] = STATE(3417), + [sym_variadic_parameter] = STATE(3417), + [sym_parameter] = STATE(3417), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3104), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(2984), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3408), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1539), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1181), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2278), + [ts_builtin_sym_end] = ACTIONS(1541), [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_macro_rules_BANG] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(1541), + [anon_sym_u8] = ACTIONS(1543), + [anon_sym_i8] = ACTIONS(1543), + [anon_sym_u16] = ACTIONS(1543), + [anon_sym_i16] = ACTIONS(1543), + [anon_sym_u32] = ACTIONS(1543), + [anon_sym_i32] = ACTIONS(1543), + [anon_sym_u64] = ACTIONS(1543), + [anon_sym_i64] = ACTIONS(1543), + [anon_sym_u128] = ACTIONS(1543), + [anon_sym_i128] = ACTIONS(1543), + [anon_sym_isize] = ACTIONS(1543), + [anon_sym_usize] = ACTIONS(1543), + [anon_sym_f32] = ACTIONS(1543), + [anon_sym_f64] = ACTIONS(1543), + [anon_sym_bool] = ACTIONS(1543), + [anon_sym_str] = ACTIONS(1543), + [anon_sym_char] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1541), + [anon_sym_PIPE_PIPE] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_CARET_EQ] = ACTIONS(1541), + [anon_sym_AMP_EQ] = ACTIONS(1541), + [anon_sym_PIPE_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_GT_EQ] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_EQ_EQ] = ACTIONS(1541), + [anon_sym_BANG_EQ] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1541), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1543), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_break] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [anon_sym_continue] = ACTIONS(1543), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_enum] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1543), + [anon_sym_for] = ACTIONS(1543), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1543), + [anon_sym_impl] = ACTIONS(1543), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_loop] = ACTIONS(1543), + [anon_sym_match] = ACTIONS(1543), + [anon_sym_mod] = ACTIONS(1543), + [anon_sym_pub] = ACTIONS(1543), + [anon_sym_return] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1543), + [anon_sym_trait] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_unsafe] = ACTIONS(1543), + [anon_sym_use] = ACTIONS(1543), + [anon_sym_while] = ACTIONS(1543), + [anon_sym_extern] = ACTIONS(1543), + [anon_sym_yield] = ACTIONS(1543), + [anon_sym_move] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1543), + [sym_integer_literal] = ACTIONS(1541), + [aux_sym_string_literal_token1] = ACTIONS(1541), + [sym_char_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1543), + [sym_super] = ACTIONS(1543), + [sym_crate] = ACTIONS(1543), + [sym_metavariable] = ACTIONS(1541), + [sym__raw_string_literal_start] = ACTIONS(1541), + [sym_float_literal] = ACTIONS(1541), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1545), + [sym_identifier] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_macro_rules_BANG] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_QMARK] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(1547), + [anon_sym_i8] = ACTIONS(1547), + [anon_sym_u16] = ACTIONS(1547), + [anon_sym_i16] = ACTIONS(1547), + [anon_sym_u32] = ACTIONS(1547), + [anon_sym_i32] = ACTIONS(1547), + [anon_sym_u64] = ACTIONS(1547), + [anon_sym_i64] = ACTIONS(1547), + [anon_sym_u128] = ACTIONS(1547), + [anon_sym_i128] = ACTIONS(1547), + [anon_sym_isize] = ACTIONS(1547), + [anon_sym_usize] = ACTIONS(1547), + [anon_sym_f32] = ACTIONS(1547), + [anon_sym_f64] = ACTIONS(1547), + [anon_sym_bool] = ACTIONS(1547), + [anon_sym_str] = ACTIONS(1547), + [anon_sym_char] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1547), + [anon_sym_PERCENT] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_AMP_AMP] = ACTIONS(1545), + [anon_sym_PIPE_PIPE] = ACTIONS(1545), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1545), + [anon_sym_DASH_EQ] = ACTIONS(1545), + [anon_sym_STAR_EQ] = ACTIONS(1545), + [anon_sym_SLASH_EQ] = ACTIONS(1545), + [anon_sym_PERCENT_EQ] = ACTIONS(1545), + [anon_sym_CARET_EQ] = ACTIONS(1545), + [anon_sym_AMP_EQ] = ACTIONS(1545), + [anon_sym_PIPE_EQ] = ACTIONS(1545), + [anon_sym_LT_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_GT_EQ] = ACTIONS(1545), + [anon_sym_EQ] = ACTIONS(1547), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), + [anon_sym_COLON_COLON] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_gen] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_impl] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_mod] = ACTIONS(1547), + [anon_sym_pub] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1547), + [anon_sym_struct] = ACTIONS(1547), + [anon_sym_trait] = ACTIONS(1547), + [anon_sym_type] = ACTIONS(1547), + [anon_sym_union] = ACTIONS(1547), + [anon_sym_unsafe] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_yield] = ACTIONS(1547), + [anon_sym_move] = ACTIONS(1547), + [anon_sym_try] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1545), + [aux_sym_string_literal_token1] = ACTIONS(1545), + [sym_char_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1545), + [sym__raw_string_literal_start] = ACTIONS(1545), + [sym_float_literal] = ACTIONS(1545), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1549), + [sym_identifier] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_macro_rules_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_QMARK] = ACTIONS(1549), + [anon_sym_u8] = ACTIONS(1551), + [anon_sym_i8] = ACTIONS(1551), + [anon_sym_u16] = ACTIONS(1551), + [anon_sym_i16] = ACTIONS(1551), + [anon_sym_u32] = ACTIONS(1551), + [anon_sym_i32] = ACTIONS(1551), + [anon_sym_u64] = ACTIONS(1551), + [anon_sym_i64] = ACTIONS(1551), + [anon_sym_u128] = ACTIONS(1551), + [anon_sym_i128] = ACTIONS(1551), + [anon_sym_isize] = ACTIONS(1551), + [anon_sym_usize] = ACTIONS(1551), + [anon_sym_f32] = ACTIONS(1551), + [anon_sym_f64] = ACTIONS(1551), + [anon_sym_bool] = ACTIONS(1551), + [anon_sym_str] = ACTIONS(1551), + [anon_sym_char] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1549), + [anon_sym_LT_LT] = ACTIONS(1551), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PERCENT_EQ] = ACTIONS(1549), + [anon_sym_CARET_EQ] = ACTIONS(1549), + [anon_sym_AMP_EQ] = ACTIONS(1549), + [anon_sym_PIPE_EQ] = ACTIONS(1549), + [anon_sym_LT_LT_EQ] = ACTIONS(1549), + [anon_sym_GT_GT_EQ] = ACTIONS(1549), + [anon_sym_EQ] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1549), + [anon_sym_BANG_EQ] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1549), + [anon_sym_LT_EQ] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1549), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_POUND] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1551), + [anon_sym_async] = ACTIONS(1551), + [anon_sym_break] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1551), + [anon_sym_continue] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_enum] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1551), + [anon_sym_for] = ACTIONS(1551), + [anon_sym_gen] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_impl] = ACTIONS(1551), + [anon_sym_let] = ACTIONS(1551), + [anon_sym_loop] = ACTIONS(1551), + [anon_sym_match] = ACTIONS(1551), + [anon_sym_mod] = ACTIONS(1551), + [anon_sym_pub] = ACTIONS(1551), + [anon_sym_return] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1551), + [anon_sym_struct] = ACTIONS(1551), + [anon_sym_trait] = ACTIONS(1551), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_union] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1551), + [anon_sym_use] = ACTIONS(1551), + [anon_sym_while] = ACTIONS(1551), + [anon_sym_extern] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1551), + [anon_sym_move] = ACTIONS(1551), + [anon_sym_try] = ACTIONS(1551), + [sym_integer_literal] = ACTIONS(1549), + [aux_sym_string_literal_token1] = ACTIONS(1549), + [sym_char_literal] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1551), + [anon_sym_false] = ACTIONS(1551), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1551), + [sym_super] = ACTIONS(1551), + [sym_crate] = ACTIONS(1551), + [sym_metavariable] = ACTIONS(1549), + [sym__raw_string_literal_start] = ACTIONS(1549), + [sym_float_literal] = ACTIONS(1549), }, [STATE(427)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_macro_rules_BANG] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_u8] = ACTIONS(1555), + [anon_sym_i8] = ACTIONS(1555), + [anon_sym_u16] = ACTIONS(1555), + [anon_sym_i16] = ACTIONS(1555), + [anon_sym_u32] = ACTIONS(1555), + [anon_sym_i32] = ACTIONS(1555), + [anon_sym_u64] = ACTIONS(1555), + [anon_sym_i64] = ACTIONS(1555), + [anon_sym_u128] = ACTIONS(1555), + [anon_sym_i128] = ACTIONS(1555), + [anon_sym_isize] = ACTIONS(1555), + [anon_sym_usize] = ACTIONS(1555), + [anon_sym_f32] = ACTIONS(1555), + [anon_sym_f64] = ACTIONS(1555), + [anon_sym_bool] = ACTIONS(1555), + [anon_sym_str] = ACTIONS(1555), + [anon_sym_char] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1553), + [anon_sym_DASH_EQ] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1553), + [anon_sym_SLASH_EQ] = ACTIONS(1553), + [anon_sym_PERCENT_EQ] = ACTIONS(1553), + [anon_sym_CARET_EQ] = ACTIONS(1553), + [anon_sym_AMP_EQ] = ACTIONS(1553), + [anon_sym_PIPE_EQ] = ACTIONS(1553), + [anon_sym_LT_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_GT_EQ] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_as] = ACTIONS(1555), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_break] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_continue] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_enum] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1555), + [anon_sym_for] = ACTIONS(1555), + [anon_sym_gen] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1555), + [anon_sym_impl] = ACTIONS(1555), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_loop] = ACTIONS(1555), + [anon_sym_match] = ACTIONS(1555), + [anon_sym_mod] = ACTIONS(1555), + [anon_sym_pub] = ACTIONS(1555), + [anon_sym_return] = ACTIONS(1555), + [anon_sym_static] = ACTIONS(1555), + [anon_sym_struct] = ACTIONS(1555), + [anon_sym_trait] = ACTIONS(1555), + [anon_sym_type] = ACTIONS(1555), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_unsafe] = ACTIONS(1555), + [anon_sym_use] = ACTIONS(1555), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_extern] = ACTIONS(1555), + [anon_sym_yield] = ACTIONS(1555), + [anon_sym_move] = ACTIONS(1555), + [anon_sym_try] = ACTIONS(1555), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), }, [STATE(428)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3121), + [sym_bracketed_type] = STATE(3698), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2547), + [sym_scoped_identifier] = STATE(2272), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2813), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3698), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2547), + [sym_scoped_identifier] = STATE(2272), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2205), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(431)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2510), - [sym_scoped_identifier] = STATE(2309), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3698), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2547), + [sym_scoped_identifier] = STATE(2272), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2222), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1563), + [anon_sym_i8] = ACTIONS(1563), + [anon_sym_u16] = ACTIONS(1563), + [anon_sym_i16] = ACTIONS(1563), + [anon_sym_u32] = ACTIONS(1563), + [anon_sym_i32] = ACTIONS(1563), + [anon_sym_u64] = ACTIONS(1563), + [anon_sym_i64] = ACTIONS(1563), + [anon_sym_u128] = ACTIONS(1563), + [anon_sym_i128] = ACTIONS(1563), + [anon_sym_isize] = ACTIONS(1563), + [anon_sym_usize] = ACTIONS(1563), + [anon_sym_f32] = ACTIONS(1563), + [anon_sym_f64] = ACTIONS(1563), + [anon_sym_bool] = ACTIONS(1563), + [anon_sym_str] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1237), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1265), - [sym_super] = ACTIONS(1265), - [sym_crate] = ACTIONS(1265), - [sym_metavariable] = ACTIONS(1267), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1573), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1575), + [sym_crate] = ACTIONS(1575), + [sym_metavariable] = ACTIONS(1577), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3662), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3403), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2575), - [sym_scoped_identifier] = STATE(2249), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(856), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2205), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1559), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1559), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1563), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1583), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1585), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2222), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1587), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3661), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3398), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2571), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2185), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2205), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1317), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1183), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(435)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3689), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3338), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2292), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2222), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [sym_identifier] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_RBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_QMARK] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1585), - [anon_sym_i8] = ACTIONS(1585), - [anon_sym_u16] = ACTIONS(1585), - [anon_sym_i16] = ACTIONS(1585), - [anon_sym_u32] = ACTIONS(1585), - [anon_sym_i32] = ACTIONS(1585), - [anon_sym_u64] = ACTIONS(1585), - [anon_sym_i64] = ACTIONS(1585), - [anon_sym_u128] = ACTIONS(1585), - [anon_sym_i128] = ACTIONS(1585), - [anon_sym_isize] = ACTIONS(1585), - [anon_sym_usize] = ACTIONS(1585), - [anon_sym_f32] = ACTIONS(1585), - [anon_sym_f64] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_str] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_PERCENT] = ACTIONS(1585), - [anon_sym_CARET] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_PIPE_PIPE] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1585), - [anon_sym_GT_GT] = ACTIONS(1585), - [anon_sym_PLUS_EQ] = ACTIONS(1587), - [anon_sym_DASH_EQ] = ACTIONS(1587), - [anon_sym_STAR_EQ] = ACTIONS(1587), - [anon_sym_SLASH_EQ] = ACTIONS(1587), - [anon_sym_PERCENT_EQ] = ACTIONS(1587), - [anon_sym_CARET_EQ] = ACTIONS(1587), - [anon_sym_AMP_EQ] = ACTIONS(1587), - [anon_sym_PIPE_EQ] = ACTIONS(1587), - [anon_sym_LT_LT_EQ] = ACTIONS(1587), - [anon_sym_GT_GT_EQ] = ACTIONS(1587), - [anon_sym_EQ] = ACTIONS(1585), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_COMMA] = ACTIONS(1587), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_gen] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_unsafe] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [aux_sym_string_literal_token1] = ACTIONS(1587), - [sym_char_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_crate] = ACTIONS(1585), - [sym_metavariable] = ACTIONS(1587), - [sym__raw_string_literal_start] = ACTIONS(1587), - [sym_float_literal] = ACTIONS(1587), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u128] = ACTIONS(1125), + [anon_sym_i128] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_str] = ACTIONS(1125), + [anon_sym_char] = ACTIONS(1125), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1161), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1161), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1183), + [sym_super] = ACTIONS(1183), + [sym_crate] = ACTIONS(1183), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(436)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(856), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2205), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [sym_identifier] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_EQ_GT] = ACTIONS(1587), - [anon_sym_COLON] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_QMARK] = ACTIONS(1587), - [anon_sym_u8] = ACTIONS(1585), - [anon_sym_i8] = ACTIONS(1585), - [anon_sym_u16] = ACTIONS(1585), - [anon_sym_i16] = ACTIONS(1585), - [anon_sym_u32] = ACTIONS(1585), - [anon_sym_i32] = ACTIONS(1585), - [anon_sym_u64] = ACTIONS(1585), - [anon_sym_i64] = ACTIONS(1585), - [anon_sym_u128] = ACTIONS(1585), - [anon_sym_i128] = ACTIONS(1585), - [anon_sym_isize] = ACTIONS(1585), - [anon_sym_usize] = ACTIONS(1585), - [anon_sym_f32] = ACTIONS(1585), - [anon_sym_f64] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_str] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_SLASH] = ACTIONS(1585), - [anon_sym_PERCENT] = ACTIONS(1585), - [anon_sym_CARET] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_PIPE_PIPE] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1585), - [anon_sym_GT_GT] = ACTIONS(1585), - [anon_sym_PLUS_EQ] = ACTIONS(1587), - [anon_sym_DASH_EQ] = ACTIONS(1587), - [anon_sym_STAR_EQ] = ACTIONS(1587), - [anon_sym_SLASH_EQ] = ACTIONS(1587), - [anon_sym_PERCENT_EQ] = ACTIONS(1587), - [anon_sym_CARET_EQ] = ACTIONS(1587), - [anon_sym_AMP_EQ] = ACTIONS(1587), - [anon_sym_PIPE_EQ] = ACTIONS(1587), - [anon_sym_LT_LT_EQ] = ACTIONS(1587), - [anon_sym_GT_GT_EQ] = ACTIONS(1587), - [anon_sym_EQ] = ACTIONS(1585), - [anon_sym_EQ_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1585), - [anon_sym_LT] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_COLON_COLON] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_as] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_gen] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_loop] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_unsafe] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_move] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [aux_sym_string_literal_token1] = ACTIONS(1587), - [sym_char_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1591), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_crate] = ACTIONS(1585), - [sym_metavariable] = ACTIONS(1587), - [sym__raw_string_literal_start] = ACTIONS(1587), - [sym_float_literal] = ACTIONS(1587), + [sym_self] = ACTIONS(1593), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2205), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [sym_identifier] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_u8] = ACTIONS(1589), - [anon_sym_i8] = ACTIONS(1589), - [anon_sym_u16] = ACTIONS(1589), - [anon_sym_i16] = ACTIONS(1589), - [anon_sym_u32] = ACTIONS(1589), - [anon_sym_i32] = ACTIONS(1589), - [anon_sym_u64] = ACTIONS(1589), - [anon_sym_i64] = ACTIONS(1589), - [anon_sym_u128] = ACTIONS(1589), - [anon_sym_i128] = ACTIONS(1589), - [anon_sym_isize] = ACTIONS(1589), - [anon_sym_usize] = ACTIONS(1589), - [anon_sym_f32] = ACTIONS(1589), - [anon_sym_f64] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_str] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym__] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1591), - [anon_sym_DASH_GT] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_async] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_gen] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_loop] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_unsafe] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1589), - [anon_sym_move] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1591), - [aux_sym_string_literal_token1] = ACTIONS(1591), - [sym_char_literal] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1589), - [sym_super] = ACTIONS(1589), - [sym_crate] = ACTIONS(1589), - [sym_metavariable] = ACTIONS(1591), - [sym__raw_string_literal_start] = ACTIONS(1591), - [sym_float_literal] = ACTIONS(1591), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1595), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(438)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2222), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u128] = ACTIONS(1593), - [anon_sym_i128] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_str] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym__] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_DASH_GT] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_gen] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_unsafe] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [aux_sym_string_literal_token1] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1595), - [sym__raw_string_literal_start] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3697), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3435), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2566), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2222), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1309), + [anon_sym_i8] = ACTIONS(1309), + [anon_sym_u16] = ACTIONS(1309), + [anon_sym_i16] = ACTIONS(1309), + [anon_sym_u32] = ACTIONS(1309), + [anon_sym_i32] = ACTIONS(1309), + [anon_sym_u64] = ACTIONS(1309), + [anon_sym_i64] = ACTIONS(1309), + [anon_sym_u128] = ACTIONS(1309), + [anon_sym_i128] = ACTIONS(1309), + [anon_sym_isize] = ACTIONS(1309), + [anon_sym_usize] = ACTIONS(1309), + [anon_sym_f32] = ACTIONS(1309), + [anon_sym_f64] = ACTIONS(1309), + [anon_sym_bool] = ACTIONS(1309), + [anon_sym_str] = ACTIONS(1309), + [anon_sym_char] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1149), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1153), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1321), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_ref] = ACTIONS(1169), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_crate] = ACTIONS(1325), + [sym_metavariable] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(440)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_COLON] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1599), + [anon_sym_GT_GT] = ACTIONS(1599), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), + [anon_sym_COMMA] = ACTIONS(1601), + [anon_sym_COLON_COLON] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_gen] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1599), + [anon_sym_union] = ACTIONS(1599), + [anon_sym_unsafe] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_yield] = ACTIONS(1599), + [anon_sym_move] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [sym_integer_literal] = ACTIONS(1601), + [aux_sym_string_literal_token1] = ACTIONS(1601), + [sym_char_literal] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1601), + [sym_float_literal] = ACTIONS(1601), }, [STATE(441)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_EQ_GT] = ACTIONS(1601), + [anon_sym_COLON] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1599), + [anon_sym_GT_GT] = ACTIONS(1599), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1601), + [anon_sym_COLON_COLON] = ACTIONS(1601), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_default] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_gen] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1599), + [anon_sym_union] = ACTIONS(1599), + [anon_sym_unsafe] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_yield] = ACTIONS(1599), + [anon_sym_move] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [sym_integer_literal] = ACTIONS(1601), + [aux_sym_string_literal_token1] = ACTIONS(1601), + [sym_char_literal] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1599), + [sym_super] = ACTIONS(1599), + [sym_crate] = ACTIONS(1599), + [sym_metavariable] = ACTIONS(1601), + [sym__raw_string_literal_start] = ACTIONS(1601), + [sym_float_literal] = ACTIONS(1601), }, [STATE(442)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2182), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), + [sym_identifier] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym__] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_DASH_GT] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_async] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_gen] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1603), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_move] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1603), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1605), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1603), + [sym_super] = ACTIONS(1603), + [sym_crate] = ACTIONS(1603), + [sym_metavariable] = ACTIONS(1605), + [sym__raw_string_literal_start] = ACTIONS(1605), + [sym_float_literal] = ACTIONS(1605), }, [STATE(443)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2176), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [sym_identifier] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_u8] = ACTIONS(1607), + [anon_sym_i8] = ACTIONS(1607), + [anon_sym_u16] = ACTIONS(1607), + [anon_sym_i16] = ACTIONS(1607), + [anon_sym_u32] = ACTIONS(1607), + [anon_sym_i32] = ACTIONS(1607), + [anon_sym_u64] = ACTIONS(1607), + [anon_sym_i64] = ACTIONS(1607), + [anon_sym_u128] = ACTIONS(1607), + [anon_sym_i128] = ACTIONS(1607), + [anon_sym_isize] = ACTIONS(1607), + [anon_sym_usize] = ACTIONS(1607), + [anon_sym_f32] = ACTIONS(1607), + [anon_sym_f64] = ACTIONS(1607), + [anon_sym_bool] = ACTIONS(1607), + [anon_sym_str] = ACTIONS(1607), + [anon_sym_char] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1609), + [anon_sym__] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_gen] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_loop] = ACTIONS(1607), + [anon_sym_match] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_unsafe] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_move] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1607), + [sym_integer_literal] = ACTIONS(1609), + [aux_sym_string_literal_token1] = ACTIONS(1609), + [sym_char_literal] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_crate] = ACTIONS(1607), + [sym_metavariable] = ACTIONS(1609), + [sym__raw_string_literal_start] = ACTIONS(1609), + [sym_float_literal] = ACTIONS(1609), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1645), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1649), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1653), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1651), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1655), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2392), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2392), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2520), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2520), - [sym__literal] = STATE(2520), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2474), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2474), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2516), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2516), - [sym__literal] = STATE(2516), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2524), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2658), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2658), - [sym__literal] = STATE(2658), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2451), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2451), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2544), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2544), - [sym__literal] = STATE(2544), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2380), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_type_binding] = STATE(2549), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_label] = STATE(3732), - [sym_block] = STATE(2549), - [sym__literal] = STATE(2549), - [sym_string_literal] = STATE(2886), - [sym_raw_string_literal] = STATE(2886), - [sym_boolean_literal] = STATE(2886), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1629), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1669), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(456)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3737), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2413), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2413), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2561), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2561), + [sym__literal] = STATE(2561), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_match_block_repeat1] = STATE(469), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(457)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3459), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2559), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2814), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2814), + [sym__literal] = STATE(2814), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(458)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3528), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2418), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2514), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2514), + [sym__literal] = STATE(2514), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_match_block_repeat1] = STATE(462), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(459)] = { - [sym_else_clause] = STATE(479), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2422), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2422), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2583), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2583), + [sym__literal] = STATE(2583), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1393), - [anon_sym_u8] = ACTIONS(1395), - [anon_sym_i8] = ACTIONS(1395), - [anon_sym_u16] = ACTIONS(1395), - [anon_sym_i16] = ACTIONS(1395), - [anon_sym_u32] = ACTIONS(1395), - [anon_sym_i32] = ACTIONS(1395), - [anon_sym_u64] = ACTIONS(1395), - [anon_sym_i64] = ACTIONS(1395), - [anon_sym_u128] = ACTIONS(1395), - [anon_sym_i128] = ACTIONS(1395), - [anon_sym_isize] = ACTIONS(1395), - [anon_sym_usize] = ACTIONS(1395), - [anon_sym_f32] = ACTIONS(1395), - [anon_sym_f64] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_str] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym__] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), - [anon_sym_COMMA] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1393), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_gen] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_ref] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1707), - [sym_mutable_specifier] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1393), - [aux_sym_string_literal_token1] = ACTIONS(1393), - [sym_char_literal] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_crate] = ACTIONS(1395), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1393), - [sym_float_literal] = ACTIONS(1393), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(460)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3527), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2445), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2445), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_type_binding] = STATE(2565), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), + [sym_label] = STATE(3768), + [sym_block] = STATE(2565), + [sym__literal] = STATE(2565), + [sym_string_literal] = STATE(2917), + [sym_raw_string_literal] = STATE(2917), + [sym_boolean_literal] = STATE(2917), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1643), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1643), }, [STATE(461)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3654), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [anon_sym_PLUS_EQ] = ACTIONS(1431), - [anon_sym_DASH_EQ] = ACTIONS(1431), - [anon_sym_STAR_EQ] = ACTIONS(1431), - [anon_sym_SLASH_EQ] = ACTIONS(1431), - [anon_sym_PERCENT_EQ] = ACTIONS(1431), - [anon_sym_CARET_EQ] = ACTIONS(1431), - [anon_sym_AMP_EQ] = ACTIONS(1431), - [anon_sym_PIPE_EQ] = ACTIONS(1431), - [anon_sym_LT_LT_EQ] = ACTIONS(1431), - [anon_sym_GT_GT_EQ] = ACTIONS(1431), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1431), - [anon_sym__] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_ref] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [sym_mutable_specifier] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [aux_sym_match_block_repeat1] = STATE(467), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(462)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3777), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_else_clause] = STATE(480), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(463)] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1419), - [anon_sym_LT_LT] = ACTIONS(1421), - [anon_sym_GT_GT] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1419), - [anon_sym_DASH_EQ] = ACTIONS(1419), - [anon_sym_STAR_EQ] = ACTIONS(1419), - [anon_sym_SLASH_EQ] = ACTIONS(1419), - [anon_sym_PERCENT_EQ] = ACTIONS(1419), - [anon_sym_CARET_EQ] = ACTIONS(1419), - [anon_sym_AMP_EQ] = ACTIONS(1419), - [anon_sym_PIPE_EQ] = ACTIONS(1419), - [anon_sym_LT_LT_EQ] = ACTIONS(1419), - [anon_sym_GT_GT_EQ] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1419), - [anon_sym_BANG_EQ] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1419), - [anon_sym__] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_as] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_ref] = ACTIONS(1421), - [anon_sym_else] = ACTIONS(1421), - [sym_mutable_specifier] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - }, - [STATE(464)] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_QMARK] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1425), - [anon_sym_PERCENT] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_PIPE_PIPE] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [anon_sym_PLUS_EQ] = ACTIONS(1423), - [anon_sym_DASH_EQ] = ACTIONS(1423), - [anon_sym_STAR_EQ] = ACTIONS(1423), - [anon_sym_SLASH_EQ] = ACTIONS(1423), - [anon_sym_PERCENT_EQ] = ACTIONS(1423), - [anon_sym_CARET_EQ] = ACTIONS(1423), - [anon_sym_AMP_EQ] = ACTIONS(1423), - [anon_sym_PIPE_EQ] = ACTIONS(1423), - [anon_sym_LT_LT_EQ] = ACTIONS(1423), - [anon_sym_GT_GT_EQ] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1423), - [anon_sym_BANG_EQ] = ACTIONS(1423), - [anon_sym_GT] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1423), - [anon_sym_LT_EQ] = ACTIONS(1423), - [anon_sym__] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), - [anon_sym_COMMA] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_as] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_gen] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_ref] = ACTIONS(1425), - [anon_sym_else] = ACTIONS(1425), - [sym_mutable_specifier] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), - }, - [STATE(465)] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), [sym_identifier] = ACTIONS(1429), [anon_sym_LPAREN] = ACTIONS(1427), [anon_sym_LBRACK] = ACTIONS(1427), @@ -69057,7 +69033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_gen] = ACTIONS(1429), [anon_sym_union] = ACTIONS(1429), [anon_sym_ref] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1717), [sym_mutable_specifier] = ACTIONS(1429), [sym_integer_literal] = ACTIONS(1427), [aux_sym_string_literal_token1] = ACTIONS(1427), @@ -69066,684 +69042,1691 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1429), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym__raw_string_literal_start] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), - }, - [STATE(466)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3580), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(467)] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [anon_sym_LT_LT] = ACTIONS(1437), - [anon_sym_GT_GT] = ACTIONS(1437), - [anon_sym_PLUS_EQ] = ACTIONS(1435), - [anon_sym_DASH_EQ] = ACTIONS(1435), - [anon_sym_STAR_EQ] = ACTIONS(1435), - [anon_sym_SLASH_EQ] = ACTIONS(1435), - [anon_sym_PERCENT_EQ] = ACTIONS(1435), - [anon_sym_CARET_EQ] = ACTIONS(1435), - [anon_sym_AMP_EQ] = ACTIONS(1435), - [anon_sym_PIPE_EQ] = ACTIONS(1435), - [anon_sym_LT_LT_EQ] = ACTIONS(1435), - [anon_sym_GT_GT_EQ] = ACTIONS(1435), - [anon_sym_EQ] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1435), - [anon_sym_BANG_EQ] = ACTIONS(1435), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1435), - [anon_sym__] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_gen] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_ref] = ACTIONS(1437), - [anon_sym_else] = ACTIONS(1437), - [sym_mutable_specifier] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym__raw_string_literal_start] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), - }, - [STATE(468)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3499), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(469)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_last_match_arm] = STATE(3469), - [sym_match_pattern] = STATE(3720), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(470)] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_QMARK] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PERCENT_EQ] = ACTIONS(1535), - [anon_sym_CARET_EQ] = ACTIONS(1535), - [anon_sym_AMP_EQ] = ACTIONS(1535), - [anon_sym_PIPE_EQ] = ACTIONS(1535), - [anon_sym_LT_LT_EQ] = ACTIONS(1535), - [anon_sym_GT_GT_EQ] = ACTIONS(1535), - [anon_sym_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(1535), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(1535), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_gen] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1537), - [sym_mutable_specifier] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [aux_sym_string_literal_token1] = ACTIONS(1535), - [sym_char_literal] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym__raw_string_literal_start] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), + }, + [STATE(463)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3730), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [aux_sym_match_block_repeat1] = STATE(468), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(464)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3643), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [aux_sym_match_block_repeat1] = STATE(474), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(465)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3744), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [aux_sym_match_block_repeat1] = STATE(466), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(466)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3769), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [aux_sym_match_block_repeat1] = STATE(490), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(467)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3506), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [aux_sym_match_block_repeat1] = STATE(490), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(468)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3606), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [aux_sym_match_block_repeat1] = STATE(490), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(469)] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_identifier] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym__] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_ref] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1451), + [sym_mutable_specifier] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), + }, + [STATE(470)] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_identifier] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym__] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [sym_mutable_specifier] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), + }, + [STATE(471)] = { + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [sym_identifier] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym__] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_ref] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [sym_mutable_specifier] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), + }, + [STATE(472)] = { + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_identifier] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_QMARK] = ACTIONS(1445), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1445), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_DASH_EQ] = ACTIONS(1445), + [anon_sym_STAR_EQ] = ACTIONS(1445), + [anon_sym_SLASH_EQ] = ACTIONS(1445), + [anon_sym_PERCENT_EQ] = ACTIONS(1445), + [anon_sym_CARET_EQ] = ACTIONS(1445), + [anon_sym_AMP_EQ] = ACTIONS(1445), + [anon_sym_PIPE_EQ] = ACTIONS(1445), + [anon_sym_LT_LT_EQ] = ACTIONS(1445), + [anon_sym_GT_GT_EQ] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1445), + [anon_sym_BANG_EQ] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1445), + [anon_sym__] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_ref] = ACTIONS(1447), + [anon_sym_else] = ACTIONS(1447), + [sym_mutable_specifier] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), + }, + [STATE(473)] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_identifier] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_ref] = ACTIONS(1443), + [anon_sym_else] = ACTIONS(1443), + [sym_mutable_specifier] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(474)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_last_match_arm] = STATE(3509), + [sym_match_pattern] = STATE(3752), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [aux_sym_match_block_repeat1] = STATE(490), + [aux_sym_match_arm_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(475)] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym_identifier] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_QMARK] = ACTIONS(1553), + [anon_sym_u8] = ACTIONS(1555), + [anon_sym_i8] = ACTIONS(1555), + [anon_sym_u16] = ACTIONS(1555), + [anon_sym_i16] = ACTIONS(1555), + [anon_sym_u32] = ACTIONS(1555), + [anon_sym_i32] = ACTIONS(1555), + [anon_sym_u64] = ACTIONS(1555), + [anon_sym_i64] = ACTIONS(1555), + [anon_sym_u128] = ACTIONS(1555), + [anon_sym_i128] = ACTIONS(1555), + [anon_sym_isize] = ACTIONS(1555), + [anon_sym_usize] = ACTIONS(1555), + [anon_sym_f32] = ACTIONS(1555), + [anon_sym_f64] = ACTIONS(1555), + [anon_sym_bool] = ACTIONS(1555), + [anon_sym_str] = ACTIONS(1555), + [anon_sym_char] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1553), + [anon_sym_DASH_EQ] = ACTIONS(1553), + [anon_sym_STAR_EQ] = ACTIONS(1553), + [anon_sym_SLASH_EQ] = ACTIONS(1553), + [anon_sym_PERCENT_EQ] = ACTIONS(1553), + [anon_sym_CARET_EQ] = ACTIONS(1553), + [anon_sym_AMP_EQ] = ACTIONS(1553), + [anon_sym_PIPE_EQ] = ACTIONS(1553), + [anon_sym_LT_LT_EQ] = ACTIONS(1553), + [anon_sym_GT_GT_EQ] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1553), + [anon_sym_BANG_EQ] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1553), + [anon_sym_LT_EQ] = ACTIONS(1553), + [anon_sym__] = ACTIONS(1555), + [anon_sym_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_POUND] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1555), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_gen] = ACTIONS(1555), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_ref] = ACTIONS(1555), + [sym_mutable_specifier] = ACTIONS(1555), + [sym_integer_literal] = ACTIONS(1553), + [aux_sym_string_literal_token1] = ACTIONS(1553), + [sym_char_literal] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1555), + [anon_sym_false] = ACTIONS(1555), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1553), + [sym__raw_string_literal_start] = ACTIONS(1553), + [sym_float_literal] = ACTIONS(1553), + }, + [STATE(476)] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_identifier] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_QMARK] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_LT_LT] = ACTIONS(1475), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1473), + [anon_sym_DASH_EQ] = ACTIONS(1473), + [anon_sym_STAR_EQ] = ACTIONS(1473), + [anon_sym_SLASH_EQ] = ACTIONS(1473), + [anon_sym_PERCENT_EQ] = ACTIONS(1473), + [anon_sym_CARET_EQ] = ACTIONS(1473), + [anon_sym_AMP_EQ] = ACTIONS(1473), + [anon_sym_PIPE_EQ] = ACTIONS(1473), + [anon_sym_LT_LT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1473), + [anon_sym_BANG_EQ] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym__] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_gen] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_ref] = ACTIONS(1475), + [sym_mutable_specifier] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym__raw_string_literal_start] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), + }, + [STATE(477)] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym_identifier] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1501), + [anon_sym_u8] = ACTIONS(1503), + [anon_sym_i8] = ACTIONS(1503), + [anon_sym_u16] = ACTIONS(1503), + [anon_sym_i16] = ACTIONS(1503), + [anon_sym_u32] = ACTIONS(1503), + [anon_sym_i32] = ACTIONS(1503), + [anon_sym_u64] = ACTIONS(1503), + [anon_sym_i64] = ACTIONS(1503), + [anon_sym_u128] = ACTIONS(1503), + [anon_sym_i128] = ACTIONS(1503), + [anon_sym_isize] = ACTIONS(1503), + [anon_sym_usize] = ACTIONS(1503), + [anon_sym_f32] = ACTIONS(1503), + [anon_sym_f64] = ACTIONS(1503), + [anon_sym_bool] = ACTIONS(1503), + [anon_sym_str] = ACTIONS(1503), + [anon_sym_char] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_AMP_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1501), + [anon_sym_LT_LT] = ACTIONS(1503), + [anon_sym_GT_GT] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1501), + [anon_sym_DASH_EQ] = ACTIONS(1501), + [anon_sym_STAR_EQ] = ACTIONS(1501), + [anon_sym_SLASH_EQ] = ACTIONS(1501), + [anon_sym_PERCENT_EQ] = ACTIONS(1501), + [anon_sym_CARET_EQ] = ACTIONS(1501), + [anon_sym_AMP_EQ] = ACTIONS(1501), + [anon_sym_PIPE_EQ] = ACTIONS(1501), + [anon_sym_LT_LT_EQ] = ACTIONS(1501), + [anon_sym_GT_GT_EQ] = ACTIONS(1501), + [anon_sym_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym__] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_COLON_COLON] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1503), + [anon_sym_default] = ACTIONS(1503), + [anon_sym_gen] = ACTIONS(1503), + [anon_sym_union] = ACTIONS(1503), + [anon_sym_ref] = ACTIONS(1503), + [sym_mutable_specifier] = ACTIONS(1503), + [sym_integer_literal] = ACTIONS(1501), + [aux_sym_string_literal_token1] = ACTIONS(1501), + [sym_char_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1503), + [anon_sym_false] = ACTIONS(1503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1503), + [sym_super] = ACTIONS(1503), + [sym_crate] = ACTIONS(1503), + [sym_metavariable] = ACTIONS(1501), + [sym__raw_string_literal_start] = ACTIONS(1501), + [sym_float_literal] = ACTIONS(1501), + }, + [STATE(478)] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym_identifier] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_QMARK] = ACTIONS(1529), + [anon_sym_u8] = ACTIONS(1531), + [anon_sym_i8] = ACTIONS(1531), + [anon_sym_u16] = ACTIONS(1531), + [anon_sym_i16] = ACTIONS(1531), + [anon_sym_u32] = ACTIONS(1531), + [anon_sym_i32] = ACTIONS(1531), + [anon_sym_u64] = ACTIONS(1531), + [anon_sym_i64] = ACTIONS(1531), + [anon_sym_u128] = ACTIONS(1531), + [anon_sym_i128] = ACTIONS(1531), + [anon_sym_isize] = ACTIONS(1531), + [anon_sym_usize] = ACTIONS(1531), + [anon_sym_f32] = ACTIONS(1531), + [anon_sym_f64] = ACTIONS(1531), + [anon_sym_bool] = ACTIONS(1531), + [anon_sym_str] = ACTIONS(1531), + [anon_sym_char] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1531), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PERCENT_EQ] = ACTIONS(1529), + [anon_sym_CARET_EQ] = ACTIONS(1529), + [anon_sym_AMP_EQ] = ACTIONS(1529), + [anon_sym_PIPE_EQ] = ACTIONS(1529), + [anon_sym_LT_LT_EQ] = ACTIONS(1529), + [anon_sym_GT_GT_EQ] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1531), + [anon_sym_EQ_EQ] = ACTIONS(1529), + [anon_sym_BANG_EQ] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_GT_EQ] = ACTIONS(1529), + [anon_sym_LT_EQ] = ACTIONS(1529), + [anon_sym__] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1529), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1531), + [anon_sym_gen] = ACTIONS(1531), + [anon_sym_union] = ACTIONS(1531), + [anon_sym_ref] = ACTIONS(1531), + [sym_mutable_specifier] = ACTIONS(1531), + [sym_integer_literal] = ACTIONS(1529), + [aux_sym_string_literal_token1] = ACTIONS(1529), + [sym_char_literal] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1531), + [anon_sym_false] = ACTIONS(1531), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1531), + [sym_super] = ACTIONS(1531), + [sym_crate] = ACTIONS(1531), + [sym_metavariable] = ACTIONS(1529), + [sym__raw_string_literal_start] = ACTIONS(1529), + [sym_float_literal] = ACTIONS(1529), + }, + [STATE(479)] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_identifier] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_QMARK] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(1547), + [anon_sym_i8] = ACTIONS(1547), + [anon_sym_u16] = ACTIONS(1547), + [anon_sym_i16] = ACTIONS(1547), + [anon_sym_u32] = ACTIONS(1547), + [anon_sym_i32] = ACTIONS(1547), + [anon_sym_u64] = ACTIONS(1547), + [anon_sym_i64] = ACTIONS(1547), + [anon_sym_u128] = ACTIONS(1547), + [anon_sym_i128] = ACTIONS(1547), + [anon_sym_isize] = ACTIONS(1547), + [anon_sym_usize] = ACTIONS(1547), + [anon_sym_f32] = ACTIONS(1547), + [anon_sym_f64] = ACTIONS(1547), + [anon_sym_bool] = ACTIONS(1547), + [anon_sym_str] = ACTIONS(1547), + [anon_sym_char] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1547), + [anon_sym_PERCENT] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_AMP_AMP] = ACTIONS(1545), + [anon_sym_PIPE_PIPE] = ACTIONS(1545), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1545), + [anon_sym_DASH_EQ] = ACTIONS(1545), + [anon_sym_STAR_EQ] = ACTIONS(1545), + [anon_sym_SLASH_EQ] = ACTIONS(1545), + [anon_sym_PERCENT_EQ] = ACTIONS(1545), + [anon_sym_CARET_EQ] = ACTIONS(1545), + [anon_sym_AMP_EQ] = ACTIONS(1545), + [anon_sym_PIPE_EQ] = ACTIONS(1545), + [anon_sym_LT_LT_EQ] = ACTIONS(1545), + [anon_sym_GT_GT_EQ] = ACTIONS(1545), + [anon_sym_EQ] = ACTIONS(1547), + [anon_sym_EQ_EQ] = ACTIONS(1545), + [anon_sym_BANG_EQ] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1545), + [anon_sym_LT_EQ] = ACTIONS(1545), + [anon_sym__] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1545), + [anon_sym_COMMA] = ACTIONS(1545), + [anon_sym_COLON_COLON] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1547), + [anon_sym_gen] = ACTIONS(1547), + [anon_sym_union] = ACTIONS(1547), + [anon_sym_ref] = ACTIONS(1547), + [sym_mutable_specifier] = ACTIONS(1547), + [sym_integer_literal] = ACTIONS(1545), + [aux_sym_string_literal_token1] = ACTIONS(1545), + [sym_char_literal] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1547), + [sym_super] = ACTIONS(1547), + [sym_crate] = ACTIONS(1547), + [sym_metavariable] = ACTIONS(1545), + [sym__raw_string_literal_start] = ACTIONS(1545), + [sym_float_literal] = ACTIONS(1545), + }, + [STATE(480)] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym_identifier] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(1525), + [anon_sym_u8] = ACTIONS(1527), + [anon_sym_i8] = ACTIONS(1527), + [anon_sym_u16] = ACTIONS(1527), + [anon_sym_i16] = ACTIONS(1527), + [anon_sym_u32] = ACTIONS(1527), + [anon_sym_i32] = ACTIONS(1527), + [anon_sym_u64] = ACTIONS(1527), + [anon_sym_i64] = ACTIONS(1527), + [anon_sym_u128] = ACTIONS(1527), + [anon_sym_i128] = ACTIONS(1527), + [anon_sym_isize] = ACTIONS(1527), + [anon_sym_usize] = ACTIONS(1527), + [anon_sym_f32] = ACTIONS(1527), + [anon_sym_f64] = ACTIONS(1527), + [anon_sym_bool] = ACTIONS(1527), + [anon_sym_str] = ACTIONS(1527), + [anon_sym_char] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1527), + [anon_sym_PERCENT] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_EQ_EQ] = ACTIONS(1525), + [anon_sym_BANG_EQ] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym__] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1525), + [anon_sym_COLON_COLON] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [anon_sym_default] = ACTIONS(1527), + [anon_sym_gen] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_ref] = ACTIONS(1527), + [sym_mutable_specifier] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1525), + [aux_sym_string_literal_token1] = ACTIONS(1525), + [sym_char_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym__raw_string_literal_start] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), + }, + [STATE(481)] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym_identifier] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym__] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_ref] = ACTIONS(1459), + [sym_mutable_specifier] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), }, - [STATE(471)] = { - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1711), - [anon_sym_i8] = ACTIONS(1711), - [anon_sym_u16] = ACTIONS(1711), - [anon_sym_i16] = ACTIONS(1711), - [anon_sym_u32] = ACTIONS(1711), - [anon_sym_i32] = ACTIONS(1711), - [anon_sym_u64] = ACTIONS(1711), - [anon_sym_i64] = ACTIONS(1711), - [anon_sym_u128] = ACTIONS(1711), - [anon_sym_i128] = ACTIONS(1711), - [anon_sym_isize] = ACTIONS(1711), - [anon_sym_usize] = ACTIONS(1711), - [anon_sym_f32] = ACTIONS(1711), - [anon_sym_f64] = ACTIONS(1711), - [anon_sym_bool] = ACTIONS(1711), - [anon_sym_str] = ACTIONS(1711), - [anon_sym_char] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1711), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_gen] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_ref] = ACTIONS(1711), - [sym_mutable_specifier] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1713), - [aux_sym_string_literal_token1] = ACTIONS(1713), - [sym_char_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), + [STATE(482)] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_identifier] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1519), + [anon_sym_u8] = ACTIONS(1521), + [anon_sym_i8] = ACTIONS(1521), + [anon_sym_u16] = ACTIONS(1521), + [anon_sym_i16] = ACTIONS(1521), + [anon_sym_u32] = ACTIONS(1521), + [anon_sym_i32] = ACTIONS(1521), + [anon_sym_u64] = ACTIONS(1521), + [anon_sym_i64] = ACTIONS(1521), + [anon_sym_u128] = ACTIONS(1521), + [anon_sym_i128] = ACTIONS(1521), + [anon_sym_isize] = ACTIONS(1521), + [anon_sym_usize] = ACTIONS(1521), + [anon_sym_f32] = ACTIONS(1521), + [anon_sym_f64] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_str] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_LT_LT] = ACTIONS(1521), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PERCENT_EQ] = ACTIONS(1519), + [anon_sym_CARET_EQ] = ACTIONS(1519), + [anon_sym_AMP_EQ] = ACTIONS(1519), + [anon_sym_PIPE_EQ] = ACTIONS(1519), + [anon_sym_LT_LT_EQ] = ACTIONS(1519), + [anon_sym_GT_GT_EQ] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_EQ_EQ] = ACTIONS(1519), + [anon_sym_BANG_EQ] = ACTIONS(1519), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym__] = ACTIONS(1521), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_gen] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_ref] = ACTIONS(1521), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1519), + [aux_sym_string_literal_token1] = ACTIONS(1519), + [sym_char_literal] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_crate] = ACTIONS(1711), - [sym_metavariable] = ACTIONS(1713), - [sym__raw_string_literal_start] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), - }, - [STATE(472)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_arm] = STATE(1413), - [sym_match_pattern] = STATE(3570), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(627), - [sym_identifier] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym__] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_ref] = ACTIONS(1760), - [sym_mutable_specifier] = ACTIONS(1763), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1769), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1775), - [sym_super] = ACTIONS(1775), - [sym_crate] = ACTIONS(1775), - [sym_metavariable] = ACTIONS(1778), - [sym__raw_string_literal_start] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1766), - }, - [STATE(473)] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_gen] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_ref] = ACTIONS(1784), - [sym_mutable_specifier] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1786), - [sym__raw_string_literal_start] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_crate] = ACTIONS(1521), + [sym_metavariable] = ACTIONS(1519), + [sym__raw_string_literal_start] = ACTIONS(1519), + [sym_float_literal] = ACTIONS(1519), }, - [STATE(474)] = { - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), + [STATE(483)] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), [sym_identifier] = ACTIONS(1463), [anon_sym_LPAREN] = ACTIONS(1461), [anon_sym_LBRACK] = ACTIONS(1461), @@ -69824,92 +70807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1461), [sym_float_literal] = ACTIONS(1461), }, - [STATE(475)] = { - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym__] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1483), - [sym_mutable_specifier] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), - }, - [STATE(476)] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), + [STATE(484)] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), [sym_identifier] = ACTIONS(1455), [anon_sym_LPAREN] = ACTIONS(1453), [anon_sym_LBRACK] = ACTIONS(1453), @@ -69990,92 +70890,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1453), [sym_float_literal] = ACTIONS(1453), }, - [STATE(477)] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_PLUS_EQ] = ACTIONS(1531), - [anon_sym_DASH_EQ] = ACTIONS(1531), - [anon_sym_STAR_EQ] = ACTIONS(1531), - [anon_sym_SLASH_EQ] = ACTIONS(1531), - [anon_sym_PERCENT_EQ] = ACTIONS(1531), - [anon_sym_CARET_EQ] = ACTIONS(1531), - [anon_sym_AMP_EQ] = ACTIONS(1531), - [anon_sym_PIPE_EQ] = ACTIONS(1531), - [anon_sym_LT_LT_EQ] = ACTIONS(1531), - [anon_sym_GT_GT_EQ] = ACTIONS(1531), - [anon_sym_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), - [anon_sym_COMMA] = ACTIONS(1531), - [anon_sym_COLON_COLON] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(1531), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_gen] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_ref] = ACTIONS(1533), - [sym_mutable_specifier] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [aux_sym_string_literal_token1] = ACTIONS(1531), - [sym_char_literal] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym__raw_string_literal_start] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), - }, - [STATE(478)] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), + [STATE(485)] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), [sym_identifier] = ACTIONS(1467), [anon_sym_LPAREN] = ACTIONS(1465), [anon_sym_LBRACK] = ACTIONS(1465), @@ -70156,1738 +70973,1416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1465), [sym_float_literal] = ACTIONS(1465), }, - [STATE(479)] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(1511), - [anon_sym_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_PERCENT] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PERCENT_EQ] = ACTIONS(1511), - [anon_sym_CARET_EQ] = ACTIONS(1511), - [anon_sym_AMP_EQ] = ACTIONS(1511), - [anon_sym_PIPE_EQ] = ACTIONS(1511), - [anon_sym_LT_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_GT_EQ] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_EQ_EQ] = ACTIONS(1511), - [anon_sym_BANG_EQ] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym__] = ACTIONS(1513), - [anon_sym_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT] = ACTIONS(1513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), - [anon_sym_COMMA] = ACTIONS(1511), - [anon_sym_COLON_COLON] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(1511), - [anon_sym_as] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_gen] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_ref] = ACTIONS(1513), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1511), - [aux_sym_string_literal_token1] = ACTIONS(1511), - [sym_char_literal] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym__raw_string_literal_start] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), - }, - [STATE(480)] = { - [sym_line_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_QMARK] = ACTIONS(1515), - [anon_sym_u8] = ACTIONS(1517), - [anon_sym_i8] = ACTIONS(1517), - [anon_sym_u16] = ACTIONS(1517), - [anon_sym_i16] = ACTIONS(1517), - [anon_sym_u32] = ACTIONS(1517), - [anon_sym_i32] = ACTIONS(1517), - [anon_sym_u64] = ACTIONS(1517), - [anon_sym_i64] = ACTIONS(1517), - [anon_sym_u128] = ACTIONS(1517), - [anon_sym_i128] = ACTIONS(1517), - [anon_sym_isize] = ACTIONS(1517), - [anon_sym_usize] = ACTIONS(1517), - [anon_sym_f32] = ACTIONS(1517), - [anon_sym_f64] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_str] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_PERCENT] = ACTIONS(1517), - [anon_sym_CARET] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_PIPE] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_PIPE_PIPE] = ACTIONS(1515), - [anon_sym_LT_LT] = ACTIONS(1517), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PERCENT_EQ] = ACTIONS(1515), - [anon_sym_CARET_EQ] = ACTIONS(1515), - [anon_sym_AMP_EQ] = ACTIONS(1515), - [anon_sym_PIPE_EQ] = ACTIONS(1515), - [anon_sym_LT_LT_EQ] = ACTIONS(1515), - [anon_sym_GT_GT_EQ] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1517), - [anon_sym_EQ_EQ] = ACTIONS(1515), - [anon_sym_BANG_EQ] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1517), - [anon_sym_LT] = ACTIONS(1517), - [anon_sym_GT_EQ] = ACTIONS(1515), - [anon_sym_LT_EQ] = ACTIONS(1515), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), - [anon_sym_COMMA] = ACTIONS(1515), - [anon_sym_COLON_COLON] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(1515), - [anon_sym_as] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_gen] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_ref] = ACTIONS(1517), - [sym_mutable_specifier] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1515), - [aux_sym_string_literal_token1] = ACTIONS(1515), - [sym_char_literal] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym__raw_string_literal_start] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), - }, - [STATE(481)] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1495), - [anon_sym_u8] = ACTIONS(1497), - [anon_sym_i8] = ACTIONS(1497), - [anon_sym_u16] = ACTIONS(1497), - [anon_sym_i16] = ACTIONS(1497), - [anon_sym_u32] = ACTIONS(1497), - [anon_sym_i32] = ACTIONS(1497), - [anon_sym_u64] = ACTIONS(1497), - [anon_sym_i64] = ACTIONS(1497), - [anon_sym_u128] = ACTIONS(1497), - [anon_sym_i128] = ACTIONS(1497), - [anon_sym_isize] = ACTIONS(1497), - [anon_sym_usize] = ACTIONS(1497), - [anon_sym_f32] = ACTIONS(1497), - [anon_sym_f64] = ACTIONS(1497), - [anon_sym_bool] = ACTIONS(1497), - [anon_sym_str] = ACTIONS(1497), - [anon_sym_char] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1495), - [anon_sym_LT_LT] = ACTIONS(1497), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym__] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(1495), - [anon_sym_COLON_COLON] = ACTIONS(1495), - [anon_sym_POUND] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_gen] = ACTIONS(1497), - [anon_sym_union] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1497), - [sym_mutable_specifier] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1495), - [aux_sym_string_literal_token1] = ACTIONS(1495), - [sym_char_literal] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1497), - [anon_sym_false] = ACTIONS(1497), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1495), - [sym__raw_string_literal_start] = ACTIONS(1495), - [sym_float_literal] = ACTIONS(1495), - }, - [STATE(482)] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_QMARK] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_CARET] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1507), - [anon_sym_DASH_EQ] = ACTIONS(1507), - [anon_sym_STAR_EQ] = ACTIONS(1507), - [anon_sym_SLASH_EQ] = ACTIONS(1507), - [anon_sym_PERCENT_EQ] = ACTIONS(1507), - [anon_sym_CARET_EQ] = ACTIONS(1507), - [anon_sym_AMP_EQ] = ACTIONS(1507), - [anon_sym_PIPE_EQ] = ACTIONS(1507), - [anon_sym_LT_LT_EQ] = ACTIONS(1507), - [anon_sym_GT_GT_EQ] = ACTIONS(1507), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1507), - [anon_sym__] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_as] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_ref] = ACTIONS(1509), - [sym_mutable_specifier] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), - }, - [STATE(483)] = { - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_u8] = ACTIONS(1527), - [anon_sym_i8] = ACTIONS(1527), - [anon_sym_u16] = ACTIONS(1527), - [anon_sym_i16] = ACTIONS(1527), - [anon_sym_u32] = ACTIONS(1527), - [anon_sym_i32] = ACTIONS(1527), - [anon_sym_u64] = ACTIONS(1527), - [anon_sym_i64] = ACTIONS(1527), - [anon_sym_u128] = ACTIONS(1527), - [anon_sym_i128] = ACTIONS(1527), - [anon_sym_isize] = ACTIONS(1527), - [anon_sym_usize] = ACTIONS(1527), - [anon_sym_f32] = ACTIONS(1527), - [anon_sym_f64] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_str] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1527), - [anon_sym_GT_GT] = ACTIONS(1527), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym__] = ACTIONS(1527), - [anon_sym_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(1525), - [anon_sym_as] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_gen] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_ref] = ACTIONS(1527), - [sym_mutable_specifier] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), - }, - [STATE(484)] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1503), - [anon_sym_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1503), - [anon_sym_DASH_EQ] = ACTIONS(1503), - [anon_sym_STAR_EQ] = ACTIONS(1503), - [anon_sym_SLASH_EQ] = ACTIONS(1503), - [anon_sym_PERCENT_EQ] = ACTIONS(1503), - [anon_sym_CARET_EQ] = ACTIONS(1503), - [anon_sym_AMP_EQ] = ACTIONS(1503), - [anon_sym_PIPE_EQ] = ACTIONS(1503), - [anon_sym_LT_LT_EQ] = ACTIONS(1503), - [anon_sym_GT_GT_EQ] = ACTIONS(1503), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_COLON_COLON] = ACTIONS(1503), - [anon_sym_POUND] = ACTIONS(1503), - [anon_sym_as] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_gen] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1505), - [sym_mutable_specifier] = ACTIONS(1505), - [sym_integer_literal] = ACTIONS(1503), - [aux_sym_string_literal_token1] = ACTIONS(1503), - [sym_char_literal] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1505), - [anon_sym_false] = ACTIONS(1505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym__raw_string_literal_start] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), - }, - [STATE(485)] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_u8] = ACTIONS(1493), - [anon_sym_i8] = ACTIONS(1493), - [anon_sym_u16] = ACTIONS(1493), - [anon_sym_i16] = ACTIONS(1493), - [anon_sym_u32] = ACTIONS(1493), - [anon_sym_i32] = ACTIONS(1493), - [anon_sym_u64] = ACTIONS(1493), - [anon_sym_i64] = ACTIONS(1493), - [anon_sym_u128] = ACTIONS(1493), - [anon_sym_i128] = ACTIONS(1493), - [anon_sym_isize] = ACTIONS(1493), - [anon_sym_usize] = ACTIONS(1493), - [anon_sym_f32] = ACTIONS(1493), - [anon_sym_f64] = ACTIONS(1493), - [anon_sym_bool] = ACTIONS(1493), - [anon_sym_str] = ACTIONS(1493), - [anon_sym_char] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1491), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1491), - [anon_sym_DASH_EQ] = ACTIONS(1491), - [anon_sym_STAR_EQ] = ACTIONS(1491), - [anon_sym_SLASH_EQ] = ACTIONS(1491), - [anon_sym_PERCENT_EQ] = ACTIONS(1491), - [anon_sym_CARET_EQ] = ACTIONS(1491), - [anon_sym_AMP_EQ] = ACTIONS(1491), - [anon_sym_PIPE_EQ] = ACTIONS(1491), - [anon_sym_LT_LT_EQ] = ACTIONS(1491), - [anon_sym_GT_GT_EQ] = ACTIONS(1491), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1491), - [anon_sym_BANG_EQ] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1491), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1491), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym_POUND] = ACTIONS(1491), - [anon_sym_as] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1493), - [anon_sym_default] = ACTIONS(1493), - [anon_sym_gen] = ACTIONS(1493), - [anon_sym_union] = ACTIONS(1493), - [anon_sym_ref] = ACTIONS(1493), - [sym_mutable_specifier] = ACTIONS(1493), - [sym_integer_literal] = ACTIONS(1491), - [aux_sym_string_literal_token1] = ACTIONS(1491), - [sym_char_literal] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1493), - [anon_sym_false] = ACTIONS(1493), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym__raw_string_literal_start] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), - }, [STATE(486)] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1485), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u128] = ACTIONS(1487), - [anon_sym_i128] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_str] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym__] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_COLON_COLON] = ACTIONS(1485), - [anon_sym_POUND] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_gen] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_ref] = ACTIONS(1487), - [sym_mutable_specifier] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1485), - [aux_sym_string_literal_token1] = ACTIONS(1485), - [sym_char_literal] = ACTIONS(1485), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_crate] = ACTIONS(1487), - [sym_metavariable] = ACTIONS(1485), - [sym__raw_string_literal_start] = ACTIONS(1485), - [sym_float_literal] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_QMARK] = ACTIONS(1509), + [anon_sym_u8] = ACTIONS(1511), + [anon_sym_i8] = ACTIONS(1511), + [anon_sym_u16] = ACTIONS(1511), + [anon_sym_i16] = ACTIONS(1511), + [anon_sym_u32] = ACTIONS(1511), + [anon_sym_i32] = ACTIONS(1511), + [anon_sym_u64] = ACTIONS(1511), + [anon_sym_i64] = ACTIONS(1511), + [anon_sym_u128] = ACTIONS(1511), + [anon_sym_i128] = ACTIONS(1511), + [anon_sym_isize] = ACTIONS(1511), + [anon_sym_usize] = ACTIONS(1511), + [anon_sym_f32] = ACTIONS(1511), + [anon_sym_f64] = ACTIONS(1511), + [anon_sym_bool] = ACTIONS(1511), + [anon_sym_str] = ACTIONS(1511), + [anon_sym_char] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_AMP_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1509), + [anon_sym_LT_LT] = ACTIONS(1511), + [anon_sym_GT_GT] = ACTIONS(1511), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym__] = ACTIONS(1511), + [anon_sym_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_COLON_COLON] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1511), + [anon_sym_default] = ACTIONS(1511), + [anon_sym_gen] = ACTIONS(1511), + [anon_sym_union] = ACTIONS(1511), + [anon_sym_ref] = ACTIONS(1511), + [sym_mutable_specifier] = ACTIONS(1511), + [sym_integer_literal] = ACTIONS(1509), + [aux_sym_string_literal_token1] = ACTIONS(1509), + [sym_char_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1511), + [anon_sym_false] = ACTIONS(1511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1511), + [sym_super] = ACTIONS(1511), + [sym_crate] = ACTIONS(1511), + [sym_metavariable] = ACTIONS(1509), + [sym__raw_string_literal_start] = ACTIONS(1509), + [sym_float_literal] = ACTIONS(1509), }, [STATE(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(1441), - [anon_sym_u8] = ACTIONS(1443), - [anon_sym_i8] = ACTIONS(1443), - [anon_sym_u16] = ACTIONS(1443), - [anon_sym_i16] = ACTIONS(1443), - [anon_sym_u32] = ACTIONS(1443), - [anon_sym_i32] = ACTIONS(1443), - [anon_sym_u64] = ACTIONS(1443), - [anon_sym_i64] = ACTIONS(1443), - [anon_sym_u128] = ACTIONS(1443), - [anon_sym_i128] = ACTIONS(1443), - [anon_sym_isize] = ACTIONS(1443), - [anon_sym_usize] = ACTIONS(1443), - [anon_sym_f32] = ACTIONS(1443), - [anon_sym_f64] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_str] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1443), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_COLON_COLON] = ACTIONS(1441), - [anon_sym_POUND] = ACTIONS(1441), - [anon_sym_as] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_gen] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_ref] = ACTIONS(1443), - [sym_mutable_specifier] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_crate] = ACTIONS(1443), - [sym_metavariable] = ACTIONS(1441), - [sym__raw_string_literal_start] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_u8] = ACTIONS(1491), + [anon_sym_i8] = ACTIONS(1491), + [anon_sym_u16] = ACTIONS(1491), + [anon_sym_i16] = ACTIONS(1491), + [anon_sym_u32] = ACTIONS(1491), + [anon_sym_i32] = ACTIONS(1491), + [anon_sym_u64] = ACTIONS(1491), + [anon_sym_i64] = ACTIONS(1491), + [anon_sym_u128] = ACTIONS(1491), + [anon_sym_i128] = ACTIONS(1491), + [anon_sym_isize] = ACTIONS(1491), + [anon_sym_usize] = ACTIONS(1491), + [anon_sym_f32] = ACTIONS(1491), + [anon_sym_f64] = ACTIONS(1491), + [anon_sym_bool] = ACTIONS(1491), + [anon_sym_str] = ACTIONS(1491), + [anon_sym_char] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_PERCENT] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_AMP_AMP] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1489), + [anon_sym_LT_LT] = ACTIONS(1491), + [anon_sym_GT_GT] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1489), + [anon_sym_DASH_EQ] = ACTIONS(1489), + [anon_sym_STAR_EQ] = ACTIONS(1489), + [anon_sym_SLASH_EQ] = ACTIONS(1489), + [anon_sym_PERCENT_EQ] = ACTIONS(1489), + [anon_sym_CARET_EQ] = ACTIONS(1489), + [anon_sym_AMP_EQ] = ACTIONS(1489), + [anon_sym_PIPE_EQ] = ACTIONS(1489), + [anon_sym_LT_LT_EQ] = ACTIONS(1489), + [anon_sym_GT_GT_EQ] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1489), + [anon_sym__] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_COLON_COLON] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1491), + [anon_sym_gen] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1491), + [anon_sym_ref] = ACTIONS(1491), + [sym_mutable_specifier] = ACTIONS(1491), + [sym_integer_literal] = ACTIONS(1489), + [aux_sym_string_literal_token1] = ACTIONS(1489), + [sym_char_literal] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1491), + [anon_sym_false] = ACTIONS(1491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1491), + [sym_super] = ACTIONS(1491), + [sym_crate] = ACTIONS(1491), + [sym_metavariable] = ACTIONS(1489), + [sym__raw_string_literal_start] = ACTIONS(1489), + [sym_float_literal] = ACTIONS(1489), }, [STATE(488)] = { + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3183), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2874), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_QMARK] = ACTIONS(1499), - [anon_sym_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_AMP_AMP] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_CARET_EQ] = ACTIONS(1499), - [anon_sym_AMP_EQ] = ACTIONS(1499), - [anon_sym_PIPE_EQ] = ACTIONS(1499), - [anon_sym_LT_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_GT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym__] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1499), - [anon_sym_POUND] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_gen] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_ref] = ACTIONS(1501), - [sym_mutable_specifier] = ACTIONS(1501), - [sym_integer_literal] = ACTIONS(1499), - [aux_sym_string_literal_token1] = ACTIONS(1499), - [sym_char_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1501), - [anon_sym_false] = ACTIONS(1501), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym__raw_string_literal_start] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_u8] = ACTIONS(1475), - [anon_sym_i8] = ACTIONS(1475), - [anon_sym_u16] = ACTIONS(1475), - [anon_sym_i16] = ACTIONS(1475), - [anon_sym_u32] = ACTIONS(1475), - [anon_sym_i32] = ACTIONS(1475), - [anon_sym_u64] = ACTIONS(1475), - [anon_sym_i64] = ACTIONS(1475), - [anon_sym_u128] = ACTIONS(1475), - [anon_sym_i128] = ACTIONS(1475), - [anon_sym_isize] = ACTIONS(1475), - [anon_sym_usize] = ACTIONS(1475), - [anon_sym_f32] = ACTIONS(1475), - [anon_sym_f64] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_str] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_PIPE_PIPE] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_PLUS_EQ] = ACTIONS(1473), - [anon_sym_DASH_EQ] = ACTIONS(1473), - [anon_sym_STAR_EQ] = ACTIONS(1473), - [anon_sym_SLASH_EQ] = ACTIONS(1473), - [anon_sym_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_CARET_EQ] = ACTIONS(1473), - [anon_sym_AMP_EQ] = ACTIONS(1473), - [anon_sym_PIPE_EQ] = ACTIONS(1473), - [anon_sym_LT_LT_EQ] = ACTIONS(1473), - [anon_sym_GT_GT_EQ] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_EQ_EQ] = ACTIONS(1473), - [anon_sym_BANG_EQ] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT_EQ] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1473), - [anon_sym__] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1473), - [anon_sym_as] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_gen] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_ref] = ACTIONS(1475), - [sym_mutable_specifier] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1473), - [aux_sym_string_literal_token1] = ACTIONS(1473), - [sym_char_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_crate] = ACTIONS(1475), - [sym_metavariable] = ACTIONS(1473), - [sym__raw_string_literal_start] = ACTIONS(1473), - [sym_float_literal] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(1541), + [anon_sym_u8] = ACTIONS(1543), + [anon_sym_i8] = ACTIONS(1543), + [anon_sym_u16] = ACTIONS(1543), + [anon_sym_i16] = ACTIONS(1543), + [anon_sym_u32] = ACTIONS(1543), + [anon_sym_i32] = ACTIONS(1543), + [anon_sym_u64] = ACTIONS(1543), + [anon_sym_i64] = ACTIONS(1543), + [anon_sym_u128] = ACTIONS(1543), + [anon_sym_i128] = ACTIONS(1543), + [anon_sym_isize] = ACTIONS(1543), + [anon_sym_usize] = ACTIONS(1543), + [anon_sym_f32] = ACTIONS(1543), + [anon_sym_f64] = ACTIONS(1543), + [anon_sym_bool] = ACTIONS(1543), + [anon_sym_str] = ACTIONS(1543), + [anon_sym_char] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_AMP_AMP] = ACTIONS(1541), + [anon_sym_PIPE_PIPE] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_CARET_EQ] = ACTIONS(1541), + [anon_sym_AMP_EQ] = ACTIONS(1541), + [anon_sym_PIPE_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_GT_EQ] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_EQ_EQ] = ACTIONS(1541), + [anon_sym_BANG_EQ] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym__] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1541), + [anon_sym_COMMA] = ACTIONS(1541), + [anon_sym_COLON_COLON] = ACTIONS(1541), + [anon_sym_POUND] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1543), + [anon_sym_default] = ACTIONS(1543), + [anon_sym_gen] = ACTIONS(1543), + [anon_sym_union] = ACTIONS(1543), + [anon_sym_ref] = ACTIONS(1543), + [sym_mutable_specifier] = ACTIONS(1543), + [sym_integer_literal] = ACTIONS(1541), + [aux_sym_string_literal_token1] = ACTIONS(1541), + [sym_char_literal] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1543), + [sym_super] = ACTIONS(1543), + [sym_crate] = ACTIONS(1543), + [sym_metavariable] = ACTIONS(1541), + [sym__raw_string_literal_start] = ACTIONS(1541), + [sym_float_literal] = ACTIONS(1541), }, [STATE(490)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_arm] = STATE(1421), + [sym_match_pattern] = STATE(3727), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1457), - [anon_sym_u8] = ACTIONS(1459), - [anon_sym_i8] = ACTIONS(1459), - [anon_sym_u16] = ACTIONS(1459), - [anon_sym_i16] = ACTIONS(1459), - [anon_sym_u32] = ACTIONS(1459), - [anon_sym_i32] = ACTIONS(1459), - [anon_sym_u64] = ACTIONS(1459), - [anon_sym_i64] = ACTIONS(1459), - [anon_sym_u128] = ACTIONS(1459), - [anon_sym_i128] = ACTIONS(1459), - [anon_sym_isize] = ACTIONS(1459), - [anon_sym_usize] = ACTIONS(1459), - [anon_sym_f32] = ACTIONS(1459), - [anon_sym_f64] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_str] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym__] = ACTIONS(1459), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_COLON_COLON] = ACTIONS(1457), - [anon_sym_POUND] = ACTIONS(1457), - [anon_sym_as] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_gen] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1459), - [sym_mutable_specifier] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1457), - [aux_sym_string_literal_token1] = ACTIONS(1457), - [sym_char_literal] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_crate] = ACTIONS(1459), - [sym_metavariable] = ACTIONS(1457), - [sym__raw_string_literal_start] = ACTIONS(1457), - [sym_float_literal] = ACTIONS(1457), + [aux_sym_match_block_repeat1] = STATE(490), + [aux_sym_match_arm_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_u8] = ACTIONS(1758), + [anon_sym_i8] = ACTIONS(1758), + [anon_sym_u16] = ACTIONS(1758), + [anon_sym_i16] = ACTIONS(1758), + [anon_sym_u32] = ACTIONS(1758), + [anon_sym_i32] = ACTIONS(1758), + [anon_sym_u64] = ACTIONS(1758), + [anon_sym_i64] = ACTIONS(1758), + [anon_sym_u128] = ACTIONS(1758), + [anon_sym_i128] = ACTIONS(1758), + [anon_sym_isize] = ACTIONS(1758), + [anon_sym_usize] = ACTIONS(1758), + [anon_sym_f32] = ACTIONS(1758), + [anon_sym_f64] = ACTIONS(1758), + [anon_sym_bool] = ACTIONS(1758), + [anon_sym_str] = ACTIONS(1758), + [anon_sym_char] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym__] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_gen] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_ref] = ACTIONS(1794), + [sym_mutable_specifier] = ACTIONS(1797), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1803), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1809), + [sym_super] = ACTIONS(1809), + [sym_crate] = ACTIONS(1809), + [sym_metavariable] = ACTIONS(1812), + [sym__raw_string_literal_start] = ACTIONS(1815), + [sym_float_literal] = ACTIONS(1800), }, [STATE(491)] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1541), - [anon_sym_PERCENT] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [anon_sym_PLUS_EQ] = ACTIONS(1539), - [anon_sym_DASH_EQ] = ACTIONS(1539), - [anon_sym_STAR_EQ] = ACTIONS(1539), - [anon_sym_SLASH_EQ] = ACTIONS(1539), - [anon_sym_PERCENT_EQ] = ACTIONS(1539), - [anon_sym_CARET_EQ] = ACTIONS(1539), - [anon_sym_AMP_EQ] = ACTIONS(1539), - [anon_sym_PIPE_EQ] = ACTIONS(1539), - [anon_sym_LT_LT_EQ] = ACTIONS(1539), - [anon_sym_GT_GT_EQ] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym__] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1539), - [anon_sym_POUND] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_gen] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_ref] = ACTIONS(1541), - [sym_mutable_specifier] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [aux_sym_string_literal_token1] = ACTIONS(1539), - [sym_char_literal] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym__raw_string_literal_start] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym__] = ACTIONS(1818), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_gen] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_ref] = ACTIONS(1818), + [sym_mutable_specifier] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1820), + [sym__raw_string_literal_start] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), }, [STATE(492)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3136), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2844), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_u8] = ACTIONS(1471), + [anon_sym_i8] = ACTIONS(1471), + [anon_sym_u16] = ACTIONS(1471), + [anon_sym_i16] = ACTIONS(1471), + [anon_sym_u32] = ACTIONS(1471), + [anon_sym_i32] = ACTIONS(1471), + [anon_sym_u64] = ACTIONS(1471), + [anon_sym_i64] = ACTIONS(1471), + [anon_sym_u128] = ACTIONS(1471), + [anon_sym_i128] = ACTIONS(1471), + [anon_sym_isize] = ACTIONS(1471), + [anon_sym_usize] = ACTIONS(1471), + [anon_sym_f32] = ACTIONS(1471), + [anon_sym_f64] = ACTIONS(1471), + [anon_sym_bool] = ACTIONS(1471), + [anon_sym_str] = ACTIONS(1471), + [anon_sym_char] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_PLUS_EQ] = ACTIONS(1469), + [anon_sym_DASH_EQ] = ACTIONS(1469), + [anon_sym_STAR_EQ] = ACTIONS(1469), + [anon_sym_SLASH_EQ] = ACTIONS(1469), + [anon_sym_PERCENT_EQ] = ACTIONS(1469), + [anon_sym_CARET_EQ] = ACTIONS(1469), + [anon_sym_AMP_EQ] = ACTIONS(1469), + [anon_sym_PIPE_EQ] = ACTIONS(1469), + [anon_sym_LT_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_GT_EQ] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym__] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_COLON_COLON] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1469), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_gen] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_ref] = ACTIONS(1471), + [sym_mutable_specifier] = ACTIONS(1471), + [sym_integer_literal] = ACTIONS(1469), + [aux_sym_string_literal_token1] = ACTIONS(1469), + [sym_char_literal] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_crate] = ACTIONS(1471), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1469), + [sym_float_literal] = ACTIONS(1469), }, [STATE(493)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3020), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(2624), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_QMARK] = ACTIONS(1485), + [anon_sym_u8] = ACTIONS(1487), + [anon_sym_i8] = ACTIONS(1487), + [anon_sym_u16] = ACTIONS(1487), + [anon_sym_i16] = ACTIONS(1487), + [anon_sym_u32] = ACTIONS(1487), + [anon_sym_i32] = ACTIONS(1487), + [anon_sym_u64] = ACTIONS(1487), + [anon_sym_i64] = ACTIONS(1487), + [anon_sym_u128] = ACTIONS(1487), + [anon_sym_i128] = ACTIONS(1487), + [anon_sym_isize] = ACTIONS(1487), + [anon_sym_usize] = ACTIONS(1487), + [anon_sym_f32] = ACTIONS(1487), + [anon_sym_f64] = ACTIONS(1487), + [anon_sym_bool] = ACTIONS(1487), + [anon_sym_str] = ACTIONS(1487), + [anon_sym_char] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1487), + [anon_sym_PERCENT] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1485), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1485), + [anon_sym_DASH_EQ] = ACTIONS(1485), + [anon_sym_STAR_EQ] = ACTIONS(1485), + [anon_sym_SLASH_EQ] = ACTIONS(1485), + [anon_sym_PERCENT_EQ] = ACTIONS(1485), + [anon_sym_CARET_EQ] = ACTIONS(1485), + [anon_sym_AMP_EQ] = ACTIONS(1485), + [anon_sym_PIPE_EQ] = ACTIONS(1485), + [anon_sym_LT_LT_EQ] = ACTIONS(1485), + [anon_sym_GT_GT_EQ] = ACTIONS(1485), + [anon_sym_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1485), + [anon_sym_BANG_EQ] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1485), + [anon_sym__] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1485), + [anon_sym_POUND] = ACTIONS(1485), + [anon_sym_as] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [anon_sym_default] = ACTIONS(1487), + [anon_sym_gen] = ACTIONS(1487), + [anon_sym_union] = ACTIONS(1487), + [anon_sym_ref] = ACTIONS(1487), + [sym_mutable_specifier] = ACTIONS(1487), + [sym_integer_literal] = ACTIONS(1485), + [aux_sym_string_literal_token1] = ACTIONS(1485), + [sym_char_literal] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1487), + [sym_super] = ACTIONS(1487), + [sym_crate] = ACTIONS(1487), + [sym_metavariable] = ACTIONS(1485), + [sym__raw_string_literal_start] = ACTIONS(1485), + [sym_float_literal] = ACTIONS(1485), }, [STATE(494)] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_gen] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym__raw_string_literal_start] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1513), + [anon_sym_u8] = ACTIONS(1515), + [anon_sym_i8] = ACTIONS(1515), + [anon_sym_u16] = ACTIONS(1515), + [anon_sym_i16] = ACTIONS(1515), + [anon_sym_u32] = ACTIONS(1515), + [anon_sym_i32] = ACTIONS(1515), + [anon_sym_u64] = ACTIONS(1515), + [anon_sym_i64] = ACTIONS(1515), + [anon_sym_u128] = ACTIONS(1515), + [anon_sym_i128] = ACTIONS(1515), + [anon_sym_isize] = ACTIONS(1515), + [anon_sym_usize] = ACTIONS(1515), + [anon_sym_f32] = ACTIONS(1515), + [anon_sym_f64] = ACTIONS(1515), + [anon_sym_bool] = ACTIONS(1515), + [anon_sym_str] = ACTIONS(1515), + [anon_sym_char] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PERCENT_EQ] = ACTIONS(1513), + [anon_sym_CARET_EQ] = ACTIONS(1513), + [anon_sym_AMP_EQ] = ACTIONS(1513), + [anon_sym_PIPE_EQ] = ACTIONS(1513), + [anon_sym_LT_LT_EQ] = ACTIONS(1513), + [anon_sym_GT_GT_EQ] = ACTIONS(1513), + [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ] = ACTIONS(1513), + [anon_sym_BANG_EQ] = ACTIONS(1513), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(1513), + [anon_sym__] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1513), + [anon_sym_COMMA] = ACTIONS(1513), + [anon_sym_COLON_COLON] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1515), + [anon_sym_gen] = ACTIONS(1515), + [anon_sym_union] = ACTIONS(1515), + [anon_sym_ref] = ACTIONS(1515), + [sym_mutable_specifier] = ACTIONS(1515), + [sym_integer_literal] = ACTIONS(1513), + [aux_sym_string_literal_token1] = ACTIONS(1513), + [sym_char_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1515), + [anon_sym_false] = ACTIONS(1515), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1515), + [sym_super] = ACTIONS(1515), + [sym_crate] = ACTIONS(1515), + [sym_metavariable] = ACTIONS(1513), + [sym__raw_string_literal_start] = ACTIONS(1513), + [sym_float_literal] = ACTIONS(1513), }, [STATE(495)] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_gen] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym__raw_string_literal_start] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_u8] = ACTIONS(1507), + [anon_sym_i8] = ACTIONS(1507), + [anon_sym_u16] = ACTIONS(1507), + [anon_sym_i16] = ACTIONS(1507), + [anon_sym_u32] = ACTIONS(1507), + [anon_sym_i32] = ACTIONS(1507), + [anon_sym_u64] = ACTIONS(1507), + [anon_sym_i64] = ACTIONS(1507), + [anon_sym_u128] = ACTIONS(1507), + [anon_sym_i128] = ACTIONS(1507), + [anon_sym_isize] = ACTIONS(1507), + [anon_sym_usize] = ACTIONS(1507), + [anon_sym_f32] = ACTIONS(1507), + [anon_sym_f64] = ACTIONS(1507), + [anon_sym_bool] = ACTIONS(1507), + [anon_sym_str] = ACTIONS(1507), + [anon_sym_char] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1507), + [anon_sym_GT_GT] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PERCENT_EQ] = ACTIONS(1505), + [anon_sym_CARET_EQ] = ACTIONS(1505), + [anon_sym_AMP_EQ] = ACTIONS(1505), + [anon_sym_PIPE_EQ] = ACTIONS(1505), + [anon_sym_LT_LT_EQ] = ACTIONS(1505), + [anon_sym_GT_GT_EQ] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1505), + [anon_sym__] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1505), + [anon_sym_COLON_COLON] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [anon_sym_default] = ACTIONS(1507), + [anon_sym_gen] = ACTIONS(1507), + [anon_sym_union] = ACTIONS(1507), + [anon_sym_ref] = ACTIONS(1507), + [sym_mutable_specifier] = ACTIONS(1507), + [sym_integer_literal] = ACTIONS(1505), + [aux_sym_string_literal_token1] = ACTIONS(1505), + [sym_char_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1507), + [sym_super] = ACTIONS(1507), + [sym_crate] = ACTIONS(1507), + [sym_metavariable] = ACTIONS(1505), + [sym__raw_string_literal_start] = ACTIONS(1505), + [sym_float_literal] = ACTIONS(1505), }, [STATE(496)] = { + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3097), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_gen] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym__raw_string_literal_start] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(497)] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), [anon_sym_AMP] = ACTIONS(1826), [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1481), [anon_sym_LT] = ACTIONS(1826), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym__] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1481), [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_gen] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_gen] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_ref] = ACTIONS(1826), + [sym_mutable_specifier] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1828), + [sym__raw_string_literal_start] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), }, [STATE(498)] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_gen] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym__raw_string_literal_start] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_QMARK] = ACTIONS(1533), + [anon_sym_u8] = ACTIONS(1535), + [anon_sym_i8] = ACTIONS(1535), + [anon_sym_u16] = ACTIONS(1535), + [anon_sym_i16] = ACTIONS(1535), + [anon_sym_u32] = ACTIONS(1535), + [anon_sym_i32] = ACTIONS(1535), + [anon_sym_u64] = ACTIONS(1535), + [anon_sym_i64] = ACTIONS(1535), + [anon_sym_u128] = ACTIONS(1535), + [anon_sym_i128] = ACTIONS(1535), + [anon_sym_isize] = ACTIONS(1535), + [anon_sym_usize] = ACTIONS(1535), + [anon_sym_f32] = ACTIONS(1535), + [anon_sym_f64] = ACTIONS(1535), + [anon_sym_bool] = ACTIONS(1535), + [anon_sym_str] = ACTIONS(1535), + [anon_sym_char] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_SLASH] = ACTIONS(1535), + [anon_sym_PERCENT] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1535), + [anon_sym_GT_GT] = ACTIONS(1535), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PERCENT_EQ] = ACTIONS(1533), + [anon_sym_CARET_EQ] = ACTIONS(1533), + [anon_sym_AMP_EQ] = ACTIONS(1533), + [anon_sym_PIPE_EQ] = ACTIONS(1533), + [anon_sym_LT_LT_EQ] = ACTIONS(1533), + [anon_sym_GT_GT_EQ] = ACTIONS(1533), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1533), + [anon_sym_BANG_EQ] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_GT_EQ] = ACTIONS(1533), + [anon_sym_LT_EQ] = ACTIONS(1533), + [anon_sym__] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1533), + [anon_sym_COMMA] = ACTIONS(1533), + [anon_sym_COLON_COLON] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(1533), + [anon_sym_as] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_default] = ACTIONS(1535), + [anon_sym_gen] = ACTIONS(1535), + [anon_sym_union] = ACTIONS(1535), + [anon_sym_ref] = ACTIONS(1535), + [sym_mutable_specifier] = ACTIONS(1535), + [sym_integer_literal] = ACTIONS(1533), + [aux_sym_string_literal_token1] = ACTIONS(1533), + [sym_char_literal] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1535), + [anon_sym_false] = ACTIONS(1535), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1535), + [sym_super] = ACTIONS(1535), + [sym_crate] = ACTIONS(1535), + [sym_metavariable] = ACTIONS(1533), + [sym__raw_string_literal_start] = ACTIONS(1533), + [sym_float_literal] = ACTIONS(1533), }, [STATE(499)] = { + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3287), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2955), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_gen] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym__raw_string_literal_start] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(500)] = { + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3287), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2955), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(501)] = { + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3287), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2955), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(502)] = { + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3287), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2955), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(503)] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(1838), [sym_identifier] = ACTIONS(1840), [anon_sym_SEMI] = ACTIONS(1838), @@ -71966,9 +72461,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1838), [sym_float_literal] = ACTIONS(1838), }, - [STATE(501)] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), + [STATE(504)] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1842), [sym_identifier] = ACTIONS(1844), [anon_sym_SEMI] = ACTIONS(1842), @@ -72047,9 +72542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1842), [sym_float_literal] = ACTIONS(1842), }, - [STATE(502)] = { - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), + [STATE(505)] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), [ts_builtin_sym_end] = ACTIONS(1846), [sym_identifier] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1846), @@ -72128,9 +72623,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1846), [sym_float_literal] = ACTIONS(1846), }, - [STATE(503)] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), + [STATE(506)] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), [ts_builtin_sym_end] = ACTIONS(1850), [sym_identifier] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1850), @@ -72209,9 +72704,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1850), [sym_float_literal] = ACTIONS(1850), }, - [STATE(504)] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), + [STATE(507)] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1854), [sym_identifier] = ACTIONS(1856), [anon_sym_SEMI] = ACTIONS(1854), @@ -72290,9 +72785,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1854), [sym_float_literal] = ACTIONS(1854), }, - [STATE(505)] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), + [STATE(508)] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(1858), [sym_identifier] = ACTIONS(1860), [anon_sym_SEMI] = ACTIONS(1858), @@ -72371,9 +72866,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1858), [sym_float_literal] = ACTIONS(1858), }, - [STATE(506)] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), + [STATE(509)] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), [ts_builtin_sym_end] = ACTIONS(1862), [sym_identifier] = ACTIONS(1864), [anon_sym_SEMI] = ACTIONS(1862), @@ -72452,9 +72947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1862), [sym_float_literal] = ACTIONS(1862), }, - [STATE(507)] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), + [STATE(510)] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), [ts_builtin_sym_end] = ACTIONS(1866), [sym_identifier] = ACTIONS(1868), [anon_sym_SEMI] = ACTIONS(1866), @@ -72533,9 +73028,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1866), [sym_float_literal] = ACTIONS(1866), }, - [STATE(508)] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), + [STATE(511)] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), [ts_builtin_sym_end] = ACTIONS(1870), [sym_identifier] = ACTIONS(1872), [anon_sym_SEMI] = ACTIONS(1870), @@ -72614,9 +73109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1870), [sym_float_literal] = ACTIONS(1870), }, - [STATE(509)] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), + [STATE(512)] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), [ts_builtin_sym_end] = ACTIONS(1874), [sym_identifier] = ACTIONS(1876), [anon_sym_SEMI] = ACTIONS(1874), @@ -72695,9 +73190,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1874), [sym_float_literal] = ACTIONS(1874), }, - [STATE(510)] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), + [STATE(513)] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), @@ -72776,9 +73271,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1878), [sym_float_literal] = ACTIONS(1878), }, - [STATE(511)] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), + [STATE(514)] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(1882), [sym_identifier] = ACTIONS(1884), [anon_sym_SEMI] = ACTIONS(1882), @@ -72857,9 +73352,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1882), [sym_float_literal] = ACTIONS(1882), }, - [STATE(512)] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), + [STATE(515)] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), [ts_builtin_sym_end] = ACTIONS(1886), [sym_identifier] = ACTIONS(1888), [anon_sym_SEMI] = ACTIONS(1886), @@ -72938,9 +73433,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1886), [sym_float_literal] = ACTIONS(1886), }, - [STATE(513)] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), + [STATE(516)] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), [ts_builtin_sym_end] = ACTIONS(1890), [sym_identifier] = ACTIONS(1892), [anon_sym_SEMI] = ACTIONS(1890), @@ -73019,9 +73514,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1890), [sym_float_literal] = ACTIONS(1890), }, - [STATE(514)] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), + [STATE(517)] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), [ts_builtin_sym_end] = ACTIONS(1894), [sym_identifier] = ACTIONS(1896), [anon_sym_SEMI] = ACTIONS(1894), @@ -73100,9 +73595,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1894), [sym_float_literal] = ACTIONS(1894), }, - [STATE(515)] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), + [STATE(518)] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1898), [sym_identifier] = ACTIONS(1900), [anon_sym_SEMI] = ACTIONS(1898), @@ -73181,9 +73676,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1898), [sym_float_literal] = ACTIONS(1898), }, - [STATE(516)] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), + [STATE(519)] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(1902), [sym_identifier] = ACTIONS(1904), [anon_sym_SEMI] = ACTIONS(1902), @@ -73262,9 +73757,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1902), [sym_float_literal] = ACTIONS(1902), }, - [STATE(517)] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), + [STATE(520)] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(1906), [sym_identifier] = ACTIONS(1908), [anon_sym_SEMI] = ACTIONS(1906), @@ -73343,9 +73838,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1906), [sym_float_literal] = ACTIONS(1906), }, - [STATE(518)] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), + [STATE(521)] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1910), [sym_identifier] = ACTIONS(1912), [anon_sym_SEMI] = ACTIONS(1910), @@ -73424,9 +73919,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1910), [sym_float_literal] = ACTIONS(1910), }, - [STATE(519)] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), + [STATE(522)] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), [ts_builtin_sym_end] = ACTIONS(1914), [sym_identifier] = ACTIONS(1916), [anon_sym_SEMI] = ACTIONS(1914), @@ -73505,9 +74000,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1914), [sym_float_literal] = ACTIONS(1914), }, - [STATE(520)] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [STATE(523)] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1918), [sym_identifier] = ACTIONS(1920), [anon_sym_SEMI] = ACTIONS(1918), @@ -73586,9 +74081,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1918), [sym_float_literal] = ACTIONS(1918), }, - [STATE(521)] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [STATE(524)] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1922), [sym_identifier] = ACTIONS(1924), [anon_sym_SEMI] = ACTIONS(1922), @@ -73667,9 +74162,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1922), [sym_float_literal] = ACTIONS(1922), }, - [STATE(522)] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), + [STATE(525)] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), [ts_builtin_sym_end] = ACTIONS(1926), [sym_identifier] = ACTIONS(1928), [anon_sym_SEMI] = ACTIONS(1926), @@ -73748,9 +74243,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1926), [sym_float_literal] = ACTIONS(1926), }, - [STATE(523)] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), + [STATE(526)] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(1930), [sym_identifier] = ACTIONS(1932), [anon_sym_SEMI] = ACTIONS(1930), @@ -73829,9 +74324,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1930), [sym_float_literal] = ACTIONS(1930), }, - [STATE(524)] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [STATE(527)] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), [ts_builtin_sym_end] = ACTIONS(1934), [sym_identifier] = ACTIONS(1936), [anon_sym_SEMI] = ACTIONS(1934), @@ -73910,9 +74405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1934), [sym_float_literal] = ACTIONS(1934), }, - [STATE(525)] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [STATE(528)] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(1938), [sym_identifier] = ACTIONS(1940), [anon_sym_SEMI] = ACTIONS(1938), @@ -73991,9 +74486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1938), [sym_float_literal] = ACTIONS(1938), }, - [STATE(526)] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [STATE(529)] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1942), [sym_identifier] = ACTIONS(1944), [anon_sym_SEMI] = ACTIONS(1942), @@ -74072,9 +74567,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1942), [sym_float_literal] = ACTIONS(1942), }, - [STATE(527)] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [STATE(530)] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1946), [sym_identifier] = ACTIONS(1948), [anon_sym_SEMI] = ACTIONS(1946), @@ -74153,9 +74648,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1946), [sym_float_literal] = ACTIONS(1946), }, - [STATE(528)] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [STATE(531)] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1950), [sym_identifier] = ACTIONS(1952), [anon_sym_SEMI] = ACTIONS(1950), @@ -74234,9 +74729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1950), [sym_float_literal] = ACTIONS(1950), }, - [STATE(529)] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [STATE(532)] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1954), [sym_identifier] = ACTIONS(1956), [anon_sym_SEMI] = ACTIONS(1954), @@ -74315,9 +74810,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1954), [sym_float_literal] = ACTIONS(1954), }, - [STATE(530)] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [STATE(533)] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1958), [sym_identifier] = ACTIONS(1960), [anon_sym_SEMI] = ACTIONS(1958), @@ -74396,9 +74891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1958), [sym_float_literal] = ACTIONS(1958), }, - [STATE(531)] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [STATE(534)] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1962), [sym_identifier] = ACTIONS(1964), [anon_sym_SEMI] = ACTIONS(1962), @@ -74477,9 +74972,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1962), [sym_float_literal] = ACTIONS(1962), }, - [STATE(532)] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [STATE(535)] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1966), [sym_identifier] = ACTIONS(1968), [anon_sym_SEMI] = ACTIONS(1966), @@ -74558,9 +75053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1966), [sym_float_literal] = ACTIONS(1966), }, - [STATE(533)] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1970), [sym_identifier] = ACTIONS(1972), [anon_sym_SEMI] = ACTIONS(1970), @@ -74639,9 +75134,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1970), [sym_float_literal] = ACTIONS(1970), }, - [STATE(534)] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1974), [sym_identifier] = ACTIONS(1976), [anon_sym_SEMI] = ACTIONS(1974), @@ -74720,9 +75215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1974), [sym_float_literal] = ACTIONS(1974), }, - [STATE(535)] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(1978), [sym_identifier] = ACTIONS(1980), [anon_sym_SEMI] = ACTIONS(1978), @@ -74801,9 +75296,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1978), [sym_float_literal] = ACTIONS(1978), }, - [STATE(536)] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(1982), [sym_identifier] = ACTIONS(1984), [anon_sym_SEMI] = ACTIONS(1982), @@ -74882,9 +75377,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1982), [sym_float_literal] = ACTIONS(1982), }, - [STATE(537)] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(1986), [sym_identifier] = ACTIONS(1988), [anon_sym_SEMI] = ACTIONS(1986), @@ -74963,9 +75458,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1986), [sym_float_literal] = ACTIONS(1986), }, - [STATE(538)] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(1990), [sym_identifier] = ACTIONS(1992), [anon_sym_SEMI] = ACTIONS(1990), @@ -75044,9 +75539,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1990), [sym_float_literal] = ACTIONS(1990), }, - [STATE(539)] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(1994), [sym_identifier] = ACTIONS(1996), [anon_sym_SEMI] = ACTIONS(1994), @@ -75125,9 +75620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1994), [sym_float_literal] = ACTIONS(1994), }, - [STATE(540)] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [STATE(543)] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_SEMI] = ACTIONS(1998), @@ -75206,9 +75701,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1998), [sym_float_literal] = ACTIONS(1998), }, - [STATE(541)] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [STATE(544)] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(2002), [sym_identifier] = ACTIONS(2004), [anon_sym_SEMI] = ACTIONS(2002), @@ -75287,9 +75782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2002), [sym_float_literal] = ACTIONS(2002), }, - [STATE(542)] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [STATE(545)] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), [anon_sym_SEMI] = ACTIONS(2006), @@ -75368,9 +75863,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2006), [sym_float_literal] = ACTIONS(2006), }, - [STATE(543)] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [STATE(546)] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(2010), [sym_identifier] = ACTIONS(2012), [anon_sym_SEMI] = ACTIONS(2010), @@ -75449,9 +75944,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2010), [sym_float_literal] = ACTIONS(2010), }, - [STATE(544)] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [STATE(547)] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(2014), [sym_identifier] = ACTIONS(2016), [anon_sym_SEMI] = ACTIONS(2014), @@ -75530,9 +76025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), }, - [STATE(545)] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [STATE(548)] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(2018), [sym_identifier] = ACTIONS(2020), [anon_sym_SEMI] = ACTIONS(2018), @@ -75611,9 +76106,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2018), [sym_float_literal] = ACTIONS(2018), }, - [STATE(546)] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [STATE(549)] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(2022), [sym_identifier] = ACTIONS(2024), [anon_sym_SEMI] = ACTIONS(2022), @@ -75692,9 +76187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2022), [sym_float_literal] = ACTIONS(2022), }, - [STATE(547)] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [STATE(550)] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), [ts_builtin_sym_end] = ACTIONS(2026), [sym_identifier] = ACTIONS(2028), [anon_sym_SEMI] = ACTIONS(2026), @@ -75773,9 +76268,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2026), [sym_float_literal] = ACTIONS(2026), }, - [STATE(548)] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [STATE(551)] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), [ts_builtin_sym_end] = ACTIONS(2030), [sym_identifier] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2030), @@ -75854,9 +76349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2030), [sym_float_literal] = ACTIONS(2030), }, - [STATE(549)] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [STATE(552)] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), [ts_builtin_sym_end] = ACTIONS(2034), [sym_identifier] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2034), @@ -75935,9 +76430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2034), [sym_float_literal] = ACTIONS(2034), }, - [STATE(550)] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [STATE(553)] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), [ts_builtin_sym_end] = ACTIONS(2038), [sym_identifier] = ACTIONS(2040), [anon_sym_SEMI] = ACTIONS(2038), @@ -76016,9 +76511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2038), [sym_float_literal] = ACTIONS(2038), }, - [STATE(551)] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [STATE(554)] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), [ts_builtin_sym_end] = ACTIONS(2042), [sym_identifier] = ACTIONS(2044), [anon_sym_SEMI] = ACTIONS(2042), @@ -76097,9 +76592,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2042), [sym_float_literal] = ACTIONS(2042), }, - [STATE(552)] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), + [STATE(555)] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), [ts_builtin_sym_end] = ACTIONS(2046), [sym_identifier] = ACTIONS(2048), [anon_sym_SEMI] = ACTIONS(2046), @@ -76178,9 +76673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2046), [sym_float_literal] = ACTIONS(2046), }, - [STATE(553)] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), + [STATE(556)] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), [ts_builtin_sym_end] = ACTIONS(2050), [sym_identifier] = ACTIONS(2052), [anon_sym_SEMI] = ACTIONS(2050), @@ -76259,9 +76754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2050), [sym_float_literal] = ACTIONS(2050), }, - [STATE(554)] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [STATE(557)] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), [ts_builtin_sym_end] = ACTIONS(2054), [sym_identifier] = ACTIONS(2056), [anon_sym_SEMI] = ACTIONS(2054), @@ -76340,9 +76835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2054), [sym_float_literal] = ACTIONS(2054), }, - [STATE(555)] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [STATE(558)] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), [ts_builtin_sym_end] = ACTIONS(2058), [sym_identifier] = ACTIONS(2060), [anon_sym_SEMI] = ACTIONS(2058), @@ -76421,9 +76916,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2058), [sym_float_literal] = ACTIONS(2058), }, - [STATE(556)] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [STATE(559)] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), [ts_builtin_sym_end] = ACTIONS(2062), [sym_identifier] = ACTIONS(2064), [anon_sym_SEMI] = ACTIONS(2062), @@ -76502,9 +76997,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2062), [sym_float_literal] = ACTIONS(2062), }, - [STATE(557)] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [STATE(560)] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), [ts_builtin_sym_end] = ACTIONS(2066), [sym_identifier] = ACTIONS(2068), [anon_sym_SEMI] = ACTIONS(2066), @@ -76583,9 +77078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2066), [sym_float_literal] = ACTIONS(2066), }, - [STATE(558)] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [STATE(561)] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), [ts_builtin_sym_end] = ACTIONS(2070), [sym_identifier] = ACTIONS(2072), [anon_sym_SEMI] = ACTIONS(2070), @@ -76664,9 +77159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2070), [sym_float_literal] = ACTIONS(2070), }, - [STATE(559)] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [STATE(562)] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), [ts_builtin_sym_end] = ACTIONS(2074), [sym_identifier] = ACTIONS(2076), [anon_sym_SEMI] = ACTIONS(2074), @@ -76745,9 +77240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2074), [sym_float_literal] = ACTIONS(2074), }, - [STATE(560)] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [STATE(563)] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_SEMI] = ACTIONS(2078), @@ -76826,9 +77321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2078), [sym_float_literal] = ACTIONS(2078), }, - [STATE(561)] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [STATE(564)] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), [ts_builtin_sym_end] = ACTIONS(2082), [sym_identifier] = ACTIONS(2084), [anon_sym_SEMI] = ACTIONS(2082), @@ -76907,9 +77402,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2082), [sym_float_literal] = ACTIONS(2082), }, - [STATE(562)] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [STATE(565)] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), [ts_builtin_sym_end] = ACTIONS(2086), [sym_identifier] = ACTIONS(2088), [anon_sym_SEMI] = ACTIONS(2086), @@ -76988,9 +77483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2086), [sym_float_literal] = ACTIONS(2086), }, - [STATE(563)] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), + [STATE(566)] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), [ts_builtin_sym_end] = ACTIONS(2090), [sym_identifier] = ACTIONS(2092), [anon_sym_SEMI] = ACTIONS(2090), @@ -77069,9 +77564,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2090), [sym_float_literal] = ACTIONS(2090), }, - [STATE(564)] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [STATE(567)] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), [ts_builtin_sym_end] = ACTIONS(2094), [sym_identifier] = ACTIONS(2096), [anon_sym_SEMI] = ACTIONS(2094), @@ -77150,9 +77645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2094), [sym_float_literal] = ACTIONS(2094), }, - [STATE(565)] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), + [STATE(568)] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), [ts_builtin_sym_end] = ACTIONS(2098), [sym_identifier] = ACTIONS(2100), [anon_sym_SEMI] = ACTIONS(2098), @@ -77231,9 +77726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2098), [sym_float_literal] = ACTIONS(2098), }, - [STATE(566)] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), + [STATE(569)] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), [ts_builtin_sym_end] = ACTIONS(2102), [sym_identifier] = ACTIONS(2104), [anon_sym_SEMI] = ACTIONS(2102), @@ -77312,9 +77807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2102), [sym_float_literal] = ACTIONS(2102), }, - [STATE(567)] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), + [STATE(570)] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), [ts_builtin_sym_end] = ACTIONS(2106), [sym_identifier] = ACTIONS(2108), [anon_sym_SEMI] = ACTIONS(2106), @@ -77393,9 +77888,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2106), [sym_float_literal] = ACTIONS(2106), }, - [STATE(568)] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), + [STATE(571)] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), [ts_builtin_sym_end] = ACTIONS(2110), [sym_identifier] = ACTIONS(2112), [anon_sym_SEMI] = ACTIONS(2110), @@ -77474,9 +77969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2110), [sym_float_literal] = ACTIONS(2110), }, - [STATE(569)] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), + [STATE(572)] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), [ts_builtin_sym_end] = ACTIONS(2114), [sym_identifier] = ACTIONS(2116), [anon_sym_SEMI] = ACTIONS(2114), @@ -77555,9 +78050,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2114), [sym_float_literal] = ACTIONS(2114), }, - [STATE(570)] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), + [STATE(573)] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), [ts_builtin_sym_end] = ACTIONS(2118), [sym_identifier] = ACTIONS(2120), [anon_sym_SEMI] = ACTIONS(2118), @@ -77636,9 +78131,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2118), [sym_float_literal] = ACTIONS(2118), }, - [STATE(571)] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [STATE(574)] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), [ts_builtin_sym_end] = ACTIONS(2122), [sym_identifier] = ACTIONS(2124), [anon_sym_SEMI] = ACTIONS(2122), @@ -77717,9 +78212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2122), [sym_float_literal] = ACTIONS(2122), }, - [STATE(572)] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [STATE(575)] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), [ts_builtin_sym_end] = ACTIONS(2126), [sym_identifier] = ACTIONS(2128), [anon_sym_SEMI] = ACTIONS(2126), @@ -77798,9 +78293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2126), [sym_float_literal] = ACTIONS(2126), }, - [STATE(573)] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [STATE(576)] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), [ts_builtin_sym_end] = ACTIONS(2130), [sym_identifier] = ACTIONS(2132), [anon_sym_SEMI] = ACTIONS(2130), @@ -77879,9 +78374,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2130), [sym_float_literal] = ACTIONS(2130), }, - [STATE(574)] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [STATE(577)] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(2134), [sym_identifier] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2134), @@ -77960,9 +78455,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2134), [sym_float_literal] = ACTIONS(2134), }, - [STATE(575)] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [STATE(578)] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), [ts_builtin_sym_end] = ACTIONS(2138), [sym_identifier] = ACTIONS(2140), [anon_sym_SEMI] = ACTIONS(2138), @@ -78041,9 +78536,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2138), [sym_float_literal] = ACTIONS(2138), }, - [STATE(576)] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [STATE(579)] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), [anon_sym_SEMI] = ACTIONS(2142), @@ -78122,9 +78617,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2142), [sym_float_literal] = ACTIONS(2142), }, - [STATE(577)] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [STATE(580)] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2146), [sym_identifier] = ACTIONS(2148), [anon_sym_SEMI] = ACTIONS(2146), @@ -78203,9 +78698,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2146), [sym_float_literal] = ACTIONS(2146), }, - [STATE(578)] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [STATE(581)] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2150), [sym_identifier] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2150), @@ -78284,9 +78779,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2150), [sym_float_literal] = ACTIONS(2150), }, - [STATE(579)] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [STATE(582)] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2156), [anon_sym_SEMI] = ACTIONS(2154), @@ -78365,9 +78860,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2154), [sym_float_literal] = ACTIONS(2154), }, - [STATE(580)] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [STATE(583)] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_SEMI] = ACTIONS(2158), @@ -78446,9 +78941,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2158), [sym_float_literal] = ACTIONS(2158), }, - [STATE(581)] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [STATE(584)] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_SEMI] = ACTIONS(2162), @@ -78527,9 +79022,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2162), [sym_float_literal] = ACTIONS(2162), }, - [STATE(582)] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_SEMI] = ACTIONS(2166), @@ -78608,9 +79103,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2166), [sym_float_literal] = ACTIONS(2166), }, - [STATE(583)] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2170), [sym_identifier] = ACTIONS(2172), [anon_sym_SEMI] = ACTIONS(2170), @@ -78689,90 +79184,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2170), [sym_float_literal] = ACTIONS(2170), }, - [STATE(584)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), - [aux_sym_declaration_list_repeat1] = STATE(664), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), + [STATE(587)] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_macro_rules_BANG] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_u8] = ACTIONS(2176), + [anon_sym_i8] = ACTIONS(2176), + [anon_sym_u16] = ACTIONS(2176), + [anon_sym_i16] = ACTIONS(2176), + [anon_sym_u32] = ACTIONS(2176), + [anon_sym_i32] = ACTIONS(2176), + [anon_sym_u64] = ACTIONS(2176), + [anon_sym_i64] = ACTIONS(2176), + [anon_sym_u128] = ACTIONS(2176), + [anon_sym_i128] = ACTIONS(2176), + [anon_sym_isize] = ACTIONS(2176), + [anon_sym_usize] = ACTIONS(2176), + [anon_sym_f32] = ACTIONS(2176), + [anon_sym_f64] = ACTIONS(2176), + [anon_sym_bool] = ACTIONS(2176), + [anon_sym_str] = ACTIONS(2176), + [anon_sym_char] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_DOT_DOT] = ACTIONS(2174), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [anon_sym_fn] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_gen] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_impl] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_loop] = ACTIONS(2176), + [anon_sym_match] = ACTIONS(2176), + [anon_sym_mod] = ACTIONS(2176), + [anon_sym_pub] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_static] = ACTIONS(2176), + [anon_sym_struct] = ACTIONS(2176), + [anon_sym_trait] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_union] = ACTIONS(2176), + [anon_sym_unsafe] = ACTIONS(2176), + [anon_sym_use] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_extern] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_move] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [sym_integer_literal] = ACTIONS(2174), + [aux_sym_string_literal_token1] = ACTIONS(2174), + [sym_char_literal] = ACTIONS(2174), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_crate] = ACTIONS(2176), + [sym_metavariable] = ACTIONS(2174), + [sym__raw_string_literal_start] = ACTIONS(2174), + [sym_float_literal] = ACTIONS(2174), + }, + [STATE(588)] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), + [ts_builtin_sym_end] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2178), [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_u8] = ACTIONS(2180), + [anon_sym_i8] = ACTIONS(2180), + [anon_sym_u16] = ACTIONS(2180), + [anon_sym_i16] = ACTIONS(2180), + [anon_sym_u32] = ACTIONS(2180), + [anon_sym_i32] = ACTIONS(2180), + [anon_sym_u64] = ACTIONS(2180), + [anon_sym_i64] = ACTIONS(2180), + [anon_sym_u128] = ACTIONS(2180), + [anon_sym_i128] = ACTIONS(2180), + [anon_sym_isize] = ACTIONS(2180), + [anon_sym_usize] = ACTIONS(2180), + [anon_sym_f32] = ACTIONS(2180), + [anon_sym_f64] = ACTIONS(2180), + [anon_sym_bool] = ACTIONS(2180), + [anon_sym_str] = ACTIONS(2180), + [anon_sym_char] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [anon_sym_COLON_COLON] = ACTIONS(2178), + [anon_sym_POUND] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2180), + [anon_sym_async] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_const] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_default] = ACTIONS(2180), + [anon_sym_enum] = ACTIONS(2180), + [anon_sym_fn] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_gen] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_impl] = ACTIONS(2180), + [anon_sym_let] = ACTIONS(2180), + [anon_sym_loop] = ACTIONS(2180), + [anon_sym_match] = ACTIONS(2180), + [anon_sym_mod] = ACTIONS(2180), + [anon_sym_pub] = ACTIONS(2180), + [anon_sym_return] = ACTIONS(2180), + [anon_sym_static] = ACTIONS(2180), + [anon_sym_struct] = ACTIONS(2180), + [anon_sym_trait] = ACTIONS(2180), + [anon_sym_type] = ACTIONS(2180), + [anon_sym_union] = ACTIONS(2180), + [anon_sym_unsafe] = ACTIONS(2180), + [anon_sym_use] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_extern] = ACTIONS(2180), + [anon_sym_yield] = ACTIONS(2180), + [anon_sym_move] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2180), + [sym_integer_literal] = ACTIONS(2178), + [aux_sym_string_literal_token1] = ACTIONS(2178), + [sym_char_literal] = ACTIONS(2178), + [anon_sym_true] = ACTIONS(2180), + [anon_sym_false] = ACTIONS(2180), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2180), + [sym_super] = ACTIONS(2180), + [sym_crate] = ACTIONS(2180), + [sym_metavariable] = ACTIONS(2178), + [sym__raw_string_literal_start] = ACTIONS(2178), + [sym_float_literal] = ACTIONS(2178), + }, + [STATE(589)] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [ts_builtin_sym_end] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2184), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_macro_rules_BANG] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2182), + [anon_sym_u8] = ACTIONS(2184), + [anon_sym_i8] = ACTIONS(2184), + [anon_sym_u16] = ACTIONS(2184), + [anon_sym_i16] = ACTIONS(2184), + [anon_sym_u32] = ACTIONS(2184), + [anon_sym_i32] = ACTIONS(2184), + [anon_sym_u64] = ACTIONS(2184), + [anon_sym_i64] = ACTIONS(2184), + [anon_sym_u128] = ACTIONS(2184), + [anon_sym_i128] = ACTIONS(2184), + [anon_sym_isize] = ACTIONS(2184), + [anon_sym_usize] = ACTIONS(2184), + [anon_sym_f32] = ACTIONS(2184), + [anon_sym_f64] = ACTIONS(2184), + [anon_sym_bool] = ACTIONS(2184), + [anon_sym_str] = ACTIONS(2184), + [anon_sym_char] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_AMP] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_DOT_DOT] = ACTIONS(2182), + [anon_sym_COLON_COLON] = ACTIONS(2182), + [anon_sym_POUND] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2184), + [anon_sym_async] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_default] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [anon_sym_fn] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_gen] = ACTIONS(2184), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_impl] = ACTIONS(2184), + [anon_sym_let] = ACTIONS(2184), + [anon_sym_loop] = ACTIONS(2184), + [anon_sym_match] = ACTIONS(2184), + [anon_sym_mod] = ACTIONS(2184), + [anon_sym_pub] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_static] = ACTIONS(2184), + [anon_sym_struct] = ACTIONS(2184), + [anon_sym_trait] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_union] = ACTIONS(2184), + [anon_sym_unsafe] = ACTIONS(2184), + [anon_sym_use] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2184), + [anon_sym_move] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2184), + [sym_integer_literal] = ACTIONS(2182), + [aux_sym_string_literal_token1] = ACTIONS(2182), + [sym_char_literal] = ACTIONS(2182), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2184), + [sym_super] = ACTIONS(2184), + [sym_crate] = ACTIONS(2184), + [sym_metavariable] = ACTIONS(2182), + [sym__raw_string_literal_start] = ACTIONS(2182), + [sym_float_literal] = ACTIONS(2182), + }, + [STATE(590)] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [ts_builtin_sym_end] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_macro_rules_BANG] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_STAR] = ACTIONS(2186), + [anon_sym_u8] = ACTIONS(2188), + [anon_sym_i8] = ACTIONS(2188), + [anon_sym_u16] = ACTIONS(2188), + [anon_sym_i16] = ACTIONS(2188), + [anon_sym_u32] = ACTIONS(2188), + [anon_sym_i32] = ACTIONS(2188), + [anon_sym_u64] = ACTIONS(2188), + [anon_sym_i64] = ACTIONS(2188), + [anon_sym_u128] = ACTIONS(2188), + [anon_sym_i128] = ACTIONS(2188), + [anon_sym_isize] = ACTIONS(2188), + [anon_sym_usize] = ACTIONS(2188), + [anon_sym_f32] = ACTIONS(2188), + [anon_sym_f64] = ACTIONS(2188), + [anon_sym_bool] = ACTIONS(2188), + [anon_sym_str] = ACTIONS(2188), + [anon_sym_char] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2186), + [anon_sym_BANG] = ACTIONS(2186), + [anon_sym_AMP] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_LT] = ACTIONS(2186), + [anon_sym_DOT_DOT] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2186), [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [anon_sym_fn] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_gen] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_impl] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_loop] = ACTIONS(2188), + [anon_sym_match] = ACTIONS(2188), + [anon_sym_mod] = ACTIONS(2188), + [anon_sym_pub] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_struct] = ACTIONS(2188), + [anon_sym_trait] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_union] = ACTIONS(2188), + [anon_sym_unsafe] = ACTIONS(2188), + [anon_sym_use] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_extern] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_move] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [sym_integer_literal] = ACTIONS(2186), + [aux_sym_string_literal_token1] = ACTIONS(2186), + [sym_char_literal] = ACTIONS(2186), + [anon_sym_true] = ACTIONS(2188), + [anon_sym_false] = ACTIONS(2188), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_crate] = ACTIONS(2188), + [sym_metavariable] = ACTIONS(2186), + [sym__raw_string_literal_start] = ACTIONS(2186), + [sym_float_literal] = ACTIONS(2186), + }, + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_macro_rules_BANG] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_u8] = ACTIONS(2192), + [anon_sym_i8] = ACTIONS(2192), + [anon_sym_u16] = ACTIONS(2192), + [anon_sym_i16] = ACTIONS(2192), + [anon_sym_u32] = ACTIONS(2192), + [anon_sym_i32] = ACTIONS(2192), + [anon_sym_u64] = ACTIONS(2192), + [anon_sym_i64] = ACTIONS(2192), + [anon_sym_u128] = ACTIONS(2192), + [anon_sym_i128] = ACTIONS(2192), + [anon_sym_isize] = ACTIONS(2192), + [anon_sym_usize] = ACTIONS(2192), + [anon_sym_f32] = ACTIONS(2192), + [anon_sym_f64] = ACTIONS(2192), + [anon_sym_bool] = ACTIONS(2192), + [anon_sym_str] = ACTIONS(2192), + [anon_sym_char] = ACTIONS(2192), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_BANG] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2190), + [anon_sym_DOT_DOT] = ACTIONS(2190), + [anon_sym_COLON_COLON] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(2190), + [anon_sym_SQUOTE] = ACTIONS(2192), + [anon_sym_async] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_default] = ACTIONS(2192), [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), + [anon_sym_fn] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_gen] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_impl] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_loop] = ACTIONS(2192), + [anon_sym_match] = ACTIONS(2192), + [anon_sym_mod] = ACTIONS(2192), + [anon_sym_pub] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_static] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(2192), + [anon_sym_trait] = ACTIONS(2192), + [anon_sym_type] = ACTIONS(2192), + [anon_sym_union] = ACTIONS(2192), + [anon_sym_unsafe] = ACTIONS(2192), + [anon_sym_use] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_extern] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2192), + [anon_sym_move] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [sym_integer_literal] = ACTIONS(2190), + [aux_sym_string_literal_token1] = ACTIONS(2190), + [sym_char_literal] = ACTIONS(2190), + [anon_sym_true] = ACTIONS(2192), + [anon_sym_false] = ACTIONS(2192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2192), + [sym_super] = ACTIONS(2192), + [sym_crate] = ACTIONS(2192), + [sym_metavariable] = ACTIONS(2190), + [sym__raw_string_literal_start] = ACTIONS(2190), + [sym_float_literal] = ACTIONS(2190), + }, + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [ts_builtin_sym_end] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_macro_rules_BANG] = ACTIONS(2194), + [anon_sym_LPAREN] = ACTIONS(2194), + [anon_sym_LBRACK] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(2194), + [anon_sym_u8] = ACTIONS(2196), + [anon_sym_i8] = ACTIONS(2196), + [anon_sym_u16] = ACTIONS(2196), + [anon_sym_i16] = ACTIONS(2196), + [anon_sym_u32] = ACTIONS(2196), + [anon_sym_i32] = ACTIONS(2196), + [anon_sym_u64] = ACTIONS(2196), + [anon_sym_i64] = ACTIONS(2196), + [anon_sym_u128] = ACTIONS(2196), + [anon_sym_i128] = ACTIONS(2196), + [anon_sym_isize] = ACTIONS(2196), + [anon_sym_usize] = ACTIONS(2196), + [anon_sym_f32] = ACTIONS(2196), + [anon_sym_f64] = ACTIONS(2196), + [anon_sym_bool] = ACTIONS(2196), + [anon_sym_str] = ACTIONS(2196), + [anon_sym_char] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_AMP] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2194), + [anon_sym_DOT_DOT] = ACTIONS(2194), + [anon_sym_COLON_COLON] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(2194), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [anon_sym_fn] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_impl] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_mod] = ACTIONS(2196), + [anon_sym_pub] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_struct] = ACTIONS(2196), + [anon_sym_trait] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_union] = ACTIONS(2196), + [anon_sym_unsafe] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_move] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [sym_integer_literal] = ACTIONS(2194), + [aux_sym_string_literal_token1] = ACTIONS(2194), + [sym_char_literal] = ACTIONS(2194), + [anon_sym_true] = ACTIONS(2196), + [anon_sym_false] = ACTIONS(2196), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_crate] = ACTIONS(2196), + [sym_metavariable] = ACTIONS(2194), + [sym__raw_string_literal_start] = ACTIONS(2194), + [sym_float_literal] = ACTIONS(2194), + }, + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_macro_rules_BANG] = ACTIONS(2198), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_LBRACK] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_STAR] = ACTIONS(2198), + [anon_sym_u8] = ACTIONS(2200), + [anon_sym_i8] = ACTIONS(2200), + [anon_sym_u16] = ACTIONS(2200), + [anon_sym_i16] = ACTIONS(2200), + [anon_sym_u32] = ACTIONS(2200), + [anon_sym_i32] = ACTIONS(2200), + [anon_sym_u64] = ACTIONS(2200), + [anon_sym_i64] = ACTIONS(2200), + [anon_sym_u128] = ACTIONS(2200), + [anon_sym_i128] = ACTIONS(2200), + [anon_sym_isize] = ACTIONS(2200), + [anon_sym_usize] = ACTIONS(2200), + [anon_sym_f32] = ACTIONS(2200), + [anon_sym_f64] = ACTIONS(2200), + [anon_sym_bool] = ACTIONS(2200), + [anon_sym_str] = ACTIONS(2200), + [anon_sym_char] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2198), + [anon_sym_BANG] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_DOT_DOT] = ACTIONS(2198), + [anon_sym_COLON_COLON] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(2198), + [anon_sym_SQUOTE] = ACTIONS(2200), + [anon_sym_async] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_default] = ACTIONS(2200), + [anon_sym_enum] = ACTIONS(2200), + [anon_sym_fn] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_gen] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_impl] = ACTIONS(2200), [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_mod] = ACTIONS(2200), + [anon_sym_pub] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_static] = ACTIONS(2200), + [anon_sym_struct] = ACTIONS(2200), + [anon_sym_trait] = ACTIONS(2200), + [anon_sym_type] = ACTIONS(2200), + [anon_sym_union] = ACTIONS(2200), + [anon_sym_unsafe] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2200), + [anon_sym_move] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [sym_integer_literal] = ACTIONS(2198), + [aux_sym_string_literal_token1] = ACTIONS(2198), + [sym_char_literal] = ACTIONS(2198), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2200), + [sym_super] = ACTIONS(2200), + [sym_crate] = ACTIONS(2200), + [sym_metavariable] = ACTIONS(2198), + [sym__raw_string_literal_start] = ACTIONS(2198), + [sym_float_literal] = ACTIONS(2198), + }, + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2202), + [anon_sym_macro_rules_BANG] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2202), + [anon_sym_u8] = ACTIONS(2204), + [anon_sym_i8] = ACTIONS(2204), + [anon_sym_u16] = ACTIONS(2204), + [anon_sym_i16] = ACTIONS(2204), + [anon_sym_u32] = ACTIONS(2204), + [anon_sym_i32] = ACTIONS(2204), + [anon_sym_u64] = ACTIONS(2204), + [anon_sym_i64] = ACTIONS(2204), + [anon_sym_u128] = ACTIONS(2204), + [anon_sym_i128] = ACTIONS(2204), + [anon_sym_isize] = ACTIONS(2204), + [anon_sym_usize] = ACTIONS(2204), + [anon_sym_f32] = ACTIONS(2204), + [anon_sym_f64] = ACTIONS(2204), + [anon_sym_bool] = ACTIONS(2204), + [anon_sym_str] = ACTIONS(2204), + [anon_sym_char] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_PIPE] = ACTIONS(2202), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_DOT_DOT] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2202), + [anon_sym_POUND] = ACTIONS(2202), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [anon_sym_fn] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_gen] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_impl] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_loop] = ACTIONS(2204), + [anon_sym_match] = ACTIONS(2204), + [anon_sym_mod] = ACTIONS(2204), + [anon_sym_pub] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2204), + [anon_sym_trait] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_union] = ACTIONS(2204), + [anon_sym_unsafe] = ACTIONS(2204), + [anon_sym_use] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_extern] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_move] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [sym_integer_literal] = ACTIONS(2202), + [aux_sym_string_literal_token1] = ACTIONS(2202), + [sym_char_literal] = ACTIONS(2202), + [anon_sym_true] = ACTIONS(2204), + [anon_sym_false] = ACTIONS(2204), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_crate] = ACTIONS(2204), + [sym_metavariable] = ACTIONS(2202), + [sym__raw_string_literal_start] = ACTIONS(2202), + [sym_float_literal] = ACTIONS(2202), + }, + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2208), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_macro_rules_BANG] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_u8] = ACTIONS(2208), + [anon_sym_i8] = ACTIONS(2208), + [anon_sym_u16] = ACTIONS(2208), + [anon_sym_i16] = ACTIONS(2208), + [anon_sym_u32] = ACTIONS(2208), + [anon_sym_i32] = ACTIONS(2208), + [anon_sym_u64] = ACTIONS(2208), + [anon_sym_i64] = ACTIONS(2208), + [anon_sym_u128] = ACTIONS(2208), + [anon_sym_i128] = ACTIONS(2208), + [anon_sym_isize] = ACTIONS(2208), + [anon_sym_usize] = ACTIONS(2208), + [anon_sym_f32] = ACTIONS(2208), + [anon_sym_f64] = ACTIONS(2208), + [anon_sym_bool] = ACTIONS(2208), + [anon_sym_str] = ACTIONS(2208), + [anon_sym_char] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2206), + [anon_sym_DOT_DOT] = ACTIONS(2206), + [anon_sym_COLON_COLON] = ACTIONS(2206), + [anon_sym_POUND] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(2208), + [anon_sym_async] = ACTIONS(2208), + [anon_sym_break] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_continue] = ACTIONS(2208), + [anon_sym_default] = ACTIONS(2208), + [anon_sym_enum] = ACTIONS(2208), + [anon_sym_fn] = ACTIONS(2208), + [anon_sym_for] = ACTIONS(2208), + [anon_sym_gen] = ACTIONS(2208), + [anon_sym_if] = ACTIONS(2208), + [anon_sym_impl] = ACTIONS(2208), + [anon_sym_let] = ACTIONS(2208), + [anon_sym_loop] = ACTIONS(2208), + [anon_sym_match] = ACTIONS(2208), + [anon_sym_mod] = ACTIONS(2208), + [anon_sym_pub] = ACTIONS(2208), + [anon_sym_return] = ACTIONS(2208), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_struct] = ACTIONS(2208), [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), + [anon_sym_type] = ACTIONS(2208), + [anon_sym_union] = ACTIONS(2208), + [anon_sym_unsafe] = ACTIONS(2208), + [anon_sym_use] = ACTIONS(2208), + [anon_sym_while] = ACTIONS(2208), + [anon_sym_extern] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2208), + [anon_sym_move] = ACTIONS(2208), + [anon_sym_try] = ACTIONS(2208), + [sym_integer_literal] = ACTIONS(2206), + [aux_sym_string_literal_token1] = ACTIONS(2206), + [sym_char_literal] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2208), + [anon_sym_false] = ACTIONS(2208), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2208), + [sym_super] = ACTIONS(2208), + [sym_crate] = ACTIONS(2208), + [sym_metavariable] = ACTIONS(2206), + [sym__raw_string_literal_start] = ACTIONS(2206), + [sym_float_literal] = ACTIONS(2206), + }, + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_macro_rules_BANG] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2210), + [anon_sym_LBRACK] = ACTIONS(2210), + [anon_sym_LBRACE] = ACTIONS(2210), + [anon_sym_RBRACE] = ACTIONS(2210), + [anon_sym_STAR] = ACTIONS(2210), + [anon_sym_u8] = ACTIONS(2212), + [anon_sym_i8] = ACTIONS(2212), + [anon_sym_u16] = ACTIONS(2212), + [anon_sym_i16] = ACTIONS(2212), + [anon_sym_u32] = ACTIONS(2212), + [anon_sym_i32] = ACTIONS(2212), + [anon_sym_u64] = ACTIONS(2212), + [anon_sym_i64] = ACTIONS(2212), + [anon_sym_u128] = ACTIONS(2212), + [anon_sym_i128] = ACTIONS(2212), + [anon_sym_isize] = ACTIONS(2212), + [anon_sym_usize] = ACTIONS(2212), + [anon_sym_f32] = ACTIONS(2212), + [anon_sym_f64] = ACTIONS(2212), + [anon_sym_bool] = ACTIONS(2212), + [anon_sym_str] = ACTIONS(2212), + [anon_sym_char] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2210), + [anon_sym_BANG] = ACTIONS(2210), + [anon_sym_AMP] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_DOT_DOT] = ACTIONS(2210), + [anon_sym_COLON_COLON] = ACTIONS(2210), + [anon_sym_POUND] = ACTIONS(2210), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [anon_sym_fn] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_gen] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_impl] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_loop] = ACTIONS(2212), + [anon_sym_match] = ACTIONS(2212), + [anon_sym_mod] = ACTIONS(2212), + [anon_sym_pub] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_struct] = ACTIONS(2212), + [anon_sym_trait] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_unsafe] = ACTIONS(2212), + [anon_sym_use] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_extern] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_move] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [sym_integer_literal] = ACTIONS(2210), + [aux_sym_string_literal_token1] = ACTIONS(2210), + [sym_char_literal] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(2212), + [anon_sym_false] = ACTIONS(2212), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_crate] = ACTIONS(2212), + [sym_metavariable] = ACTIONS(2210), + [sym__raw_string_literal_start] = ACTIONS(2210), + [sym_float_literal] = ACTIONS(2210), + }, + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_macro_rules_BANG] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_LBRACK] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_u8] = ACTIONS(2216), + [anon_sym_i8] = ACTIONS(2216), + [anon_sym_u16] = ACTIONS(2216), + [anon_sym_i16] = ACTIONS(2216), + [anon_sym_u32] = ACTIONS(2216), + [anon_sym_i32] = ACTIONS(2216), + [anon_sym_u64] = ACTIONS(2216), + [anon_sym_i64] = ACTIONS(2216), + [anon_sym_u128] = ACTIONS(2216), + [anon_sym_i128] = ACTIONS(2216), + [anon_sym_isize] = ACTIONS(2216), + [anon_sym_usize] = ACTIONS(2216), + [anon_sym_f32] = ACTIONS(2216), + [anon_sym_f64] = ACTIONS(2216), + [anon_sym_bool] = ACTIONS(2216), + [anon_sym_str] = ACTIONS(2216), + [anon_sym_char] = ACTIONS(2216), + [anon_sym_DASH] = ACTIONS(2214), + [anon_sym_BANG] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_COLON_COLON] = ACTIONS(2214), + [anon_sym_POUND] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2216), + [anon_sym_async] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2216), + [anon_sym_const] = ACTIONS(2216), + [anon_sym_continue] = ACTIONS(2216), + [anon_sym_default] = ACTIONS(2216), + [anon_sym_enum] = ACTIONS(2216), + [anon_sym_fn] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_gen] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2216), + [anon_sym_impl] = ACTIONS(2216), + [anon_sym_let] = ACTIONS(2216), + [anon_sym_loop] = ACTIONS(2216), + [anon_sym_match] = ACTIONS(2216), + [anon_sym_mod] = ACTIONS(2216), + [anon_sym_pub] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_static] = ACTIONS(2216), + [anon_sym_struct] = ACTIONS(2216), + [anon_sym_trait] = ACTIONS(2216), + [anon_sym_type] = ACTIONS(2216), + [anon_sym_union] = ACTIONS(2216), + [anon_sym_unsafe] = ACTIONS(2216), [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(2216), + [anon_sym_yield] = ACTIONS(2216), + [anon_sym_move] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2216), + [sym_integer_literal] = ACTIONS(2214), + [aux_sym_string_literal_token1] = ACTIONS(2214), + [sym_char_literal] = ACTIONS(2214), + [anon_sym_true] = ACTIONS(2216), + [anon_sym_false] = ACTIONS(2216), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2216), + [sym_super] = ACTIONS(2216), + [sym_crate] = ACTIONS(2216), + [sym_metavariable] = ACTIONS(2214), + [sym__raw_string_literal_start] = ACTIONS(2214), + [sym_float_literal] = ACTIONS(2214), + }, + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_macro_rules_BANG] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_STAR] = ACTIONS(2218), + [anon_sym_u8] = ACTIONS(2220), + [anon_sym_i8] = ACTIONS(2220), + [anon_sym_u16] = ACTIONS(2220), + [anon_sym_i16] = ACTIONS(2220), + [anon_sym_u32] = ACTIONS(2220), + [anon_sym_i32] = ACTIONS(2220), + [anon_sym_u64] = ACTIONS(2220), + [anon_sym_i64] = ACTIONS(2220), + [anon_sym_u128] = ACTIONS(2220), + [anon_sym_i128] = ACTIONS(2220), + [anon_sym_isize] = ACTIONS(2220), + [anon_sym_usize] = ACTIONS(2220), + [anon_sym_f32] = ACTIONS(2220), + [anon_sym_f64] = ACTIONS(2220), + [anon_sym_bool] = ACTIONS(2220), + [anon_sym_str] = ACTIONS(2220), + [anon_sym_char] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(2218), + [anon_sym_AMP] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_LT] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2218), + [anon_sym_COLON_COLON] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(2218), + [anon_sym_SQUOTE] = ACTIONS(2220), + [anon_sym_async] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_default] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_gen] = ACTIONS(2220), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_impl] = ACTIONS(2220), + [anon_sym_let] = ACTIONS(2220), + [anon_sym_loop] = ACTIONS(2220), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_mod] = ACTIONS(2220), + [anon_sym_pub] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_static] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_trait] = ACTIONS(2220), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_use] = ACTIONS(2220), + [anon_sym_while] = ACTIONS(2220), + [anon_sym_extern] = ACTIONS(2220), + [anon_sym_yield] = ACTIONS(2220), + [anon_sym_move] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2220), + [sym_integer_literal] = ACTIONS(2218), + [aux_sym_string_literal_token1] = ACTIONS(2218), + [sym_char_literal] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2220), [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), + [sym_crate] = ACTIONS(2220), + [sym_metavariable] = ACTIONS(2218), + [sym__raw_string_literal_start] = ACTIONS(2218), + [sym_float_literal] = ACTIONS(2218), }, - [STATE(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2224), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_macro_rules_BANG] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_u8] = ACTIONS(2224), + [anon_sym_i8] = ACTIONS(2224), + [anon_sym_u16] = ACTIONS(2224), + [anon_sym_i16] = ACTIONS(2224), + [anon_sym_u32] = ACTIONS(2224), + [anon_sym_i32] = ACTIONS(2224), + [anon_sym_u64] = ACTIONS(2224), + [anon_sym_i64] = ACTIONS(2224), + [anon_sym_u128] = ACTIONS(2224), + [anon_sym_i128] = ACTIONS(2224), + [anon_sym_isize] = ACTIONS(2224), + [anon_sym_usize] = ACTIONS(2224), + [anon_sym_f32] = ACTIONS(2224), + [anon_sym_f64] = ACTIONS(2224), + [anon_sym_bool] = ACTIONS(2224), + [anon_sym_str] = ACTIONS(2224), + [anon_sym_char] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_BANG] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2222), + [anon_sym_DOT_DOT] = ACTIONS(2222), + [anon_sym_COLON_COLON] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_async] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_default] = ACTIONS(2224), + [anon_sym_enum] = ACTIONS(2224), + [anon_sym_fn] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_gen] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_impl] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_loop] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_mod] = ACTIONS(2224), + [anon_sym_pub] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_static] = ACTIONS(2224), + [anon_sym_struct] = ACTIONS(2224), + [anon_sym_trait] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_union] = ACTIONS(2224), + [anon_sym_unsafe] = ACTIONS(2224), + [anon_sym_use] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_extern] = ACTIONS(2224), + [anon_sym_yield] = ACTIONS(2224), + [anon_sym_move] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2224), + [sym_integer_literal] = ACTIONS(2222), + [aux_sym_string_literal_token1] = ACTIONS(2222), + [sym_char_literal] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2224), + [anon_sym_false] = ACTIONS(2224), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2224), + [sym_super] = ACTIONS(2224), + [sym_crate] = ACTIONS(2224), + [sym_metavariable] = ACTIONS(2222), + [sym__raw_string_literal_start] = ACTIONS(2222), + [sym_float_literal] = ACTIONS(2222), + }, + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2226), [sym_identifier] = ACTIONS(2228), [anon_sym_SEMI] = ACTIONS(2226), @@ -78851,9 +80318,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2226), [sym_float_literal] = ACTIONS(2226), }, - [STATE(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), [anon_sym_SEMI] = ACTIONS(2230), @@ -78932,9 +80399,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2230), [sym_float_literal] = ACTIONS(2230), }, - [STATE(587)] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_SEMI] = ACTIONS(2234), @@ -79013,9 +80480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2234), [sym_float_literal] = ACTIONS(2234), }, - [STATE(588)] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_SEMI] = ACTIONS(2238), @@ -79094,4626 +80561,2763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2238), [sym_float_literal] = ACTIONS(2238), }, - [STATE(589)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), - }, - [STATE(590)] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2244), - [sym_identifier] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_macro_rules_BANG] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_u8] = ACTIONS(2246), - [anon_sym_i8] = ACTIONS(2246), - [anon_sym_u16] = ACTIONS(2246), - [anon_sym_i16] = ACTIONS(2246), - [anon_sym_u32] = ACTIONS(2246), - [anon_sym_i32] = ACTIONS(2246), - [anon_sym_u64] = ACTIONS(2246), - [anon_sym_i64] = ACTIONS(2246), - [anon_sym_u128] = ACTIONS(2246), - [anon_sym_i128] = ACTIONS(2246), - [anon_sym_isize] = ACTIONS(2246), - [anon_sym_usize] = ACTIONS(2246), - [anon_sym_f32] = ACTIONS(2246), - [anon_sym_f64] = ACTIONS(2246), - [anon_sym_bool] = ACTIONS(2246), - [anon_sym_str] = ACTIONS(2246), - [anon_sym_char] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_BANG] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [anon_sym_COLON_COLON] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(2244), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_gen] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_impl] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_loop] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_mod] = ACTIONS(2246), - [anon_sym_pub] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_struct] = ACTIONS(2246), - [anon_sym_trait] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_union] = ACTIONS(2246), - [anon_sym_unsafe] = ACTIONS(2246), - [anon_sym_use] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_extern] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_move] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [sym_integer_literal] = ACTIONS(2244), - [aux_sym_string_literal_token1] = ACTIONS(2244), - [sym_char_literal] = ACTIONS(2244), - [anon_sym_true] = ACTIONS(2246), - [anon_sym_false] = ACTIONS(2246), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_crate] = ACTIONS(2246), - [sym_metavariable] = ACTIONS(2244), - [sym__raw_string_literal_start] = ACTIONS(2244), - [sym_float_literal] = ACTIONS(2244), - }, - [STATE(591)] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2248), - [anon_sym_macro_rules_BANG] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_u8] = ACTIONS(2250), - [anon_sym_i8] = ACTIONS(2250), - [anon_sym_u16] = ACTIONS(2250), - [anon_sym_i16] = ACTIONS(2250), - [anon_sym_u32] = ACTIONS(2250), - [anon_sym_i32] = ACTIONS(2250), - [anon_sym_u64] = ACTIONS(2250), - [anon_sym_i64] = ACTIONS(2250), - [anon_sym_u128] = ACTIONS(2250), - [anon_sym_i128] = ACTIONS(2250), - [anon_sym_isize] = ACTIONS(2250), - [anon_sym_usize] = ACTIONS(2250), - [anon_sym_f32] = ACTIONS(2250), - [anon_sym_f64] = ACTIONS(2250), - [anon_sym_bool] = ACTIONS(2250), - [anon_sym_str] = ACTIONS(2250), - [anon_sym_char] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_BANG] = ACTIONS(2248), - [anon_sym_AMP] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(2248), - [anon_sym_DOT_DOT] = ACTIONS(2248), - [anon_sym_COLON_COLON] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2248), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [anon_sym_fn] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_gen] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_impl] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_loop] = ACTIONS(2250), - [anon_sym_match] = ACTIONS(2250), - [anon_sym_mod] = ACTIONS(2250), - [anon_sym_pub] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2250), - [anon_sym_trait] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_union] = ACTIONS(2250), - [anon_sym_unsafe] = ACTIONS(2250), - [anon_sym_use] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_extern] = ACTIONS(2250), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_move] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [sym_integer_literal] = ACTIONS(2248), - [aux_sym_string_literal_token1] = ACTIONS(2248), - [sym_char_literal] = ACTIONS(2248), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_crate] = ACTIONS(2250), - [sym_metavariable] = ACTIONS(2248), - [sym__raw_string_literal_start] = ACTIONS(2248), - [sym_float_literal] = ACTIONS(2248), - }, - [STATE(592)] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_macro_rules_BANG] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_DOT_DOT] = ACTIONS(2252), - [anon_sym_COLON_COLON] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), - [anon_sym_fn] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_gen] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_impl] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_loop] = ACTIONS(2254), - [anon_sym_match] = ACTIONS(2254), - [anon_sym_mod] = ACTIONS(2254), - [anon_sym_pub] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_struct] = ACTIONS(2254), - [anon_sym_trait] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_unsafe] = ACTIONS(2254), - [anon_sym_use] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_extern] = ACTIONS(2254), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_move] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [sym_integer_literal] = ACTIONS(2252), - [aux_sym_string_literal_token1] = ACTIONS(2252), - [sym_char_literal] = ACTIONS(2252), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_crate] = ACTIONS(2254), - [sym_metavariable] = ACTIONS(2252), - [sym__raw_string_literal_start] = ACTIONS(2252), - [sym_float_literal] = ACTIONS(2252), - }, - [STATE(593)] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2256), - [sym_identifier] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_macro_rules_BANG] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_u8] = ACTIONS(2258), - [anon_sym_i8] = ACTIONS(2258), - [anon_sym_u16] = ACTIONS(2258), - [anon_sym_i16] = ACTIONS(2258), - [anon_sym_u32] = ACTIONS(2258), - [anon_sym_i32] = ACTIONS(2258), - [anon_sym_u64] = ACTIONS(2258), - [anon_sym_i64] = ACTIONS(2258), - [anon_sym_u128] = ACTIONS(2258), - [anon_sym_i128] = ACTIONS(2258), - [anon_sym_isize] = ACTIONS(2258), - [anon_sym_usize] = ACTIONS(2258), - [anon_sym_f32] = ACTIONS(2258), - [anon_sym_f64] = ACTIONS(2258), - [anon_sym_bool] = ACTIONS(2258), - [anon_sym_str] = ACTIONS(2258), - [anon_sym_char] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_DOT_DOT] = ACTIONS(2256), - [anon_sym_COLON_COLON] = ACTIONS(2256), - [anon_sym_POUND] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_default] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), - [anon_sym_fn] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_gen] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_impl] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_loop] = ACTIONS(2258), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_mod] = ACTIONS(2258), - [anon_sym_pub] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_struct] = ACTIONS(2258), - [anon_sym_trait] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_union] = ACTIONS(2258), - [anon_sym_unsafe] = ACTIONS(2258), - [anon_sym_use] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_extern] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_move] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [sym_integer_literal] = ACTIONS(2256), - [aux_sym_string_literal_token1] = ACTIONS(2256), - [sym_char_literal] = ACTIONS(2256), - [anon_sym_true] = ACTIONS(2258), - [anon_sym_false] = ACTIONS(2258), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_crate] = ACTIONS(2258), - [sym_metavariable] = ACTIONS(2256), - [sym__raw_string_literal_start] = ACTIONS(2256), - [sym_float_literal] = ACTIONS(2256), - }, - [STATE(594)] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_macro_rules_BANG] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2260), - [anon_sym_u8] = ACTIONS(2262), - [anon_sym_i8] = ACTIONS(2262), - [anon_sym_u16] = ACTIONS(2262), - [anon_sym_i16] = ACTIONS(2262), - [anon_sym_u32] = ACTIONS(2262), - [anon_sym_i32] = ACTIONS(2262), - [anon_sym_u64] = ACTIONS(2262), - [anon_sym_i64] = ACTIONS(2262), - [anon_sym_u128] = ACTIONS(2262), - [anon_sym_i128] = ACTIONS(2262), - [anon_sym_isize] = ACTIONS(2262), - [anon_sym_usize] = ACTIONS(2262), - [anon_sym_f32] = ACTIONS(2262), - [anon_sym_f64] = ACTIONS(2262), - [anon_sym_bool] = ACTIONS(2262), - [anon_sym_str] = ACTIONS(2262), - [anon_sym_char] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_DOT_DOT] = ACTIONS(2260), - [anon_sym_COLON_COLON] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [anon_sym_fn] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_gen] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_impl] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_loop] = ACTIONS(2262), - [anon_sym_match] = ACTIONS(2262), - [anon_sym_mod] = ACTIONS(2262), - [anon_sym_pub] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_struct] = ACTIONS(2262), - [anon_sym_trait] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_union] = ACTIONS(2262), - [anon_sym_unsafe] = ACTIONS(2262), - [anon_sym_use] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_extern] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_move] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [sym_integer_literal] = ACTIONS(2260), - [aux_sym_string_literal_token1] = ACTIONS(2260), - [sym_char_literal] = ACTIONS(2260), - [anon_sym_true] = ACTIONS(2262), - [anon_sym_false] = ACTIONS(2262), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_crate] = ACTIONS(2262), - [sym_metavariable] = ACTIONS(2260), - [sym__raw_string_literal_start] = ACTIONS(2260), - [sym_float_literal] = ACTIONS(2260), - }, - [STATE(595)] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_macro_rules_BANG] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_u8] = ACTIONS(2266), - [anon_sym_i8] = ACTIONS(2266), - [anon_sym_u16] = ACTIONS(2266), - [anon_sym_i16] = ACTIONS(2266), - [anon_sym_u32] = ACTIONS(2266), - [anon_sym_i32] = ACTIONS(2266), - [anon_sym_u64] = ACTIONS(2266), - [anon_sym_i64] = ACTIONS(2266), - [anon_sym_u128] = ACTIONS(2266), - [anon_sym_i128] = ACTIONS(2266), - [anon_sym_isize] = ACTIONS(2266), - [anon_sym_usize] = ACTIONS(2266), - [anon_sym_f32] = ACTIONS(2266), - [anon_sym_f64] = ACTIONS(2266), - [anon_sym_bool] = ACTIONS(2266), - [anon_sym_str] = ACTIONS(2266), - [anon_sym_char] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_DOT_DOT] = ACTIONS(2264), - [anon_sym_COLON_COLON] = ACTIONS(2264), - [anon_sym_POUND] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_default] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [anon_sym_fn] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_gen] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_impl] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_loop] = ACTIONS(2266), - [anon_sym_match] = ACTIONS(2266), - [anon_sym_mod] = ACTIONS(2266), - [anon_sym_pub] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_struct] = ACTIONS(2266), - [anon_sym_trait] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_union] = ACTIONS(2266), - [anon_sym_unsafe] = ACTIONS(2266), - [anon_sym_use] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_extern] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_move] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [sym_integer_literal] = ACTIONS(2264), - [aux_sym_string_literal_token1] = ACTIONS(2264), - [sym_char_literal] = ACTIONS(2264), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_crate] = ACTIONS(2266), - [sym_metavariable] = ACTIONS(2264), - [sym__raw_string_literal_start] = ACTIONS(2264), - [sym_float_literal] = ACTIONS(2264), - }, - [STATE(596)] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2268), - [sym_identifier] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_macro_rules_BANG] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2268), - [anon_sym_u8] = ACTIONS(2270), - [anon_sym_i8] = ACTIONS(2270), - [anon_sym_u16] = ACTIONS(2270), - [anon_sym_i16] = ACTIONS(2270), - [anon_sym_u32] = ACTIONS(2270), - [anon_sym_i32] = ACTIONS(2270), - [anon_sym_u64] = ACTIONS(2270), - [anon_sym_i64] = ACTIONS(2270), - [anon_sym_u128] = ACTIONS(2270), - [anon_sym_i128] = ACTIONS(2270), - [anon_sym_isize] = ACTIONS(2270), - [anon_sym_usize] = ACTIONS(2270), - [anon_sym_f32] = ACTIONS(2270), - [anon_sym_f64] = ACTIONS(2270), - [anon_sym_bool] = ACTIONS(2270), - [anon_sym_str] = ACTIONS(2270), - [anon_sym_char] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_DOT_DOT] = ACTIONS(2268), - [anon_sym_COLON_COLON] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2270), - [anon_sym_async] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2270), - [anon_sym_const] = ACTIONS(2270), - [anon_sym_continue] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2270), - [anon_sym_enum] = ACTIONS(2270), - [anon_sym_fn] = ACTIONS(2270), - [anon_sym_for] = ACTIONS(2270), - [anon_sym_gen] = ACTIONS(2270), - [anon_sym_if] = ACTIONS(2270), - [anon_sym_impl] = ACTIONS(2270), - [anon_sym_let] = ACTIONS(2270), - [anon_sym_loop] = ACTIONS(2270), - [anon_sym_match] = ACTIONS(2270), - [anon_sym_mod] = ACTIONS(2270), - [anon_sym_pub] = ACTIONS(2270), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_static] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(2270), - [anon_sym_trait] = ACTIONS(2270), - [anon_sym_type] = ACTIONS(2270), - [anon_sym_union] = ACTIONS(2270), - [anon_sym_unsafe] = ACTIONS(2270), - [anon_sym_use] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2270), - [anon_sym_extern] = ACTIONS(2270), - [anon_sym_yield] = ACTIONS(2270), - [anon_sym_move] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2270), - [sym_integer_literal] = ACTIONS(2268), - [aux_sym_string_literal_token1] = ACTIONS(2268), - [sym_char_literal] = ACTIONS(2268), - [anon_sym_true] = ACTIONS(2270), - [anon_sym_false] = ACTIONS(2270), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2270), - [sym_super] = ACTIONS(2270), - [sym_crate] = ACTIONS(2270), - [sym_metavariable] = ACTIONS(2268), - [sym__raw_string_literal_start] = ACTIONS(2268), - [sym_float_literal] = ACTIONS(2268), - }, - [STATE(597)] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2272), - [sym_identifier] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_macro_rules_BANG] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2272), - [anon_sym_u8] = ACTIONS(2274), - [anon_sym_i8] = ACTIONS(2274), - [anon_sym_u16] = ACTIONS(2274), - [anon_sym_i16] = ACTIONS(2274), - [anon_sym_u32] = ACTIONS(2274), - [anon_sym_i32] = ACTIONS(2274), - [anon_sym_u64] = ACTIONS(2274), - [anon_sym_i64] = ACTIONS(2274), - [anon_sym_u128] = ACTIONS(2274), - [anon_sym_i128] = ACTIONS(2274), - [anon_sym_isize] = ACTIONS(2274), - [anon_sym_usize] = ACTIONS(2274), - [anon_sym_f32] = ACTIONS(2274), - [anon_sym_f64] = ACTIONS(2274), - [anon_sym_bool] = ACTIONS(2274), - [anon_sym_str] = ACTIONS(2274), - [anon_sym_char] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [anon_sym_fn] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_gen] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_impl] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_loop] = ACTIONS(2274), - [anon_sym_match] = ACTIONS(2274), - [anon_sym_mod] = ACTIONS(2274), - [anon_sym_pub] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_struct] = ACTIONS(2274), - [anon_sym_trait] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_union] = ACTIONS(2274), - [anon_sym_unsafe] = ACTIONS(2274), - [anon_sym_use] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_move] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [sym_integer_literal] = ACTIONS(2272), - [aux_sym_string_literal_token1] = ACTIONS(2272), - [sym_char_literal] = ACTIONS(2272), - [anon_sym_true] = ACTIONS(2274), - [anon_sym_false] = ACTIONS(2274), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_crate] = ACTIONS(2274), - [sym_metavariable] = ACTIONS(2272), - [sym__raw_string_literal_start] = ACTIONS(2272), - [sym_float_literal] = ACTIONS(2272), - }, - [STATE(598)] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_macro_rules_BANG] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_u8] = ACTIONS(2278), - [anon_sym_i8] = ACTIONS(2278), - [anon_sym_u16] = ACTIONS(2278), - [anon_sym_i16] = ACTIONS(2278), - [anon_sym_u32] = ACTIONS(2278), - [anon_sym_i32] = ACTIONS(2278), - [anon_sym_u64] = ACTIONS(2278), - [anon_sym_i64] = ACTIONS(2278), - [anon_sym_u128] = ACTIONS(2278), - [anon_sym_i128] = ACTIONS(2278), - [anon_sym_isize] = ACTIONS(2278), - [anon_sym_usize] = ACTIONS(2278), - [anon_sym_f32] = ACTIONS(2278), - [anon_sym_f64] = ACTIONS(2278), - [anon_sym_bool] = ACTIONS(2278), - [anon_sym_str] = ACTIONS(2278), - [anon_sym_char] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_DOT_DOT] = ACTIONS(2276), - [anon_sym_COLON_COLON] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2278), - [anon_sym_async] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_fn] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_gen] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_impl] = ACTIONS(2278), - [anon_sym_let] = ACTIONS(2278), - [anon_sym_loop] = ACTIONS(2278), - [anon_sym_match] = ACTIONS(2278), - [anon_sym_mod] = ACTIONS(2278), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_trait] = ACTIONS(2278), - [anon_sym_type] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(2278), - [anon_sym_use] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym_yield] = ACTIONS(2278), - [anon_sym_move] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [sym_integer_literal] = ACTIONS(2276), - [aux_sym_string_literal_token1] = ACTIONS(2276), - [sym_char_literal] = ACTIONS(2276), - [anon_sym_true] = ACTIONS(2278), - [anon_sym_false] = ACTIONS(2278), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2278), - [sym_super] = ACTIONS(2278), - [sym_crate] = ACTIONS(2278), - [sym_metavariable] = ACTIONS(2276), - [sym__raw_string_literal_start] = ACTIONS(2276), - [sym_float_literal] = ACTIONS(2276), - }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2280), - [sym_identifier] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_macro_rules_BANG] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_u8] = ACTIONS(2282), - [anon_sym_i8] = ACTIONS(2282), - [anon_sym_u16] = ACTIONS(2282), - [anon_sym_i16] = ACTIONS(2282), - [anon_sym_u32] = ACTIONS(2282), - [anon_sym_i32] = ACTIONS(2282), - [anon_sym_u64] = ACTIONS(2282), - [anon_sym_i64] = ACTIONS(2282), - [anon_sym_u128] = ACTIONS(2282), - [anon_sym_i128] = ACTIONS(2282), - [anon_sym_isize] = ACTIONS(2282), - [anon_sym_usize] = ACTIONS(2282), - [anon_sym_f32] = ACTIONS(2282), - [anon_sym_f64] = ACTIONS(2282), - [anon_sym_bool] = ACTIONS(2282), - [anon_sym_str] = ACTIONS(2282), - [anon_sym_char] = ACTIONS(2282), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_DOT_DOT] = ACTIONS(2280), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2282), - [anon_sym_async] = ACTIONS(2282), - [anon_sym_break] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(2282), - [anon_sym_continue] = ACTIONS(2282), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_enum] = ACTIONS(2282), - [anon_sym_fn] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_gen] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_impl] = ACTIONS(2282), - [anon_sym_let] = ACTIONS(2282), - [anon_sym_loop] = ACTIONS(2282), - [anon_sym_match] = ACTIONS(2282), - [anon_sym_mod] = ACTIONS(2282), - [anon_sym_pub] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_static] = ACTIONS(2282), - [anon_sym_struct] = ACTIONS(2282), - [anon_sym_trait] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2282), - [anon_sym_union] = ACTIONS(2282), - [anon_sym_unsafe] = ACTIONS(2282), - [anon_sym_use] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(2282), - [anon_sym_yield] = ACTIONS(2282), - [anon_sym_move] = ACTIONS(2282), - [anon_sym_try] = ACTIONS(2282), - [sym_integer_literal] = ACTIONS(2280), - [aux_sym_string_literal_token1] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [anon_sym_true] = ACTIONS(2282), - [anon_sym_false] = ACTIONS(2282), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2282), - [sym_super] = ACTIONS(2282), - [sym_crate] = ACTIONS(2282), - [sym_metavariable] = ACTIONS(2280), - [sym__raw_string_literal_start] = ACTIONS(2280), - [sym_float_literal] = ACTIONS(2280), - }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2284), - [sym_identifier] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_macro_rules_BANG] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_u8] = ACTIONS(2286), - [anon_sym_i8] = ACTIONS(2286), - [anon_sym_u16] = ACTIONS(2286), - [anon_sym_i16] = ACTIONS(2286), - [anon_sym_u32] = ACTIONS(2286), - [anon_sym_i32] = ACTIONS(2286), - [anon_sym_u64] = ACTIONS(2286), - [anon_sym_i64] = ACTIONS(2286), - [anon_sym_u128] = ACTIONS(2286), - [anon_sym_i128] = ACTIONS(2286), - [anon_sym_isize] = ACTIONS(2286), - [anon_sym_usize] = ACTIONS(2286), - [anon_sym_f32] = ACTIONS(2286), - [anon_sym_f64] = ACTIONS(2286), - [anon_sym_bool] = ACTIONS(2286), - [anon_sym_str] = ACTIONS(2286), - [anon_sym_char] = ACTIONS(2286), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_DOT_DOT] = ACTIONS(2284), - [anon_sym_COLON_COLON] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2286), - [anon_sym_async] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_enum] = ACTIONS(2286), - [anon_sym_fn] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_gen] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_impl] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_mod] = ACTIONS(2286), - [anon_sym_pub] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_static] = ACTIONS(2286), - [anon_sym_struct] = ACTIONS(2286), - [anon_sym_trait] = ACTIONS(2286), - [anon_sym_type] = ACTIONS(2286), - [anon_sym_union] = ACTIONS(2286), - [anon_sym_unsafe] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2286), - [anon_sym_move] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2286), - [sym_integer_literal] = ACTIONS(2284), - [aux_sym_string_literal_token1] = ACTIONS(2284), - [sym_char_literal] = ACTIONS(2284), - [anon_sym_true] = ACTIONS(2286), - [anon_sym_false] = ACTIONS(2286), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2286), - [sym_super] = ACTIONS(2286), - [sym_crate] = ACTIONS(2286), - [sym_metavariable] = ACTIONS(2284), - [sym__raw_string_literal_start] = ACTIONS(2284), - [sym_float_literal] = ACTIONS(2284), - }, - [STATE(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2288), - [sym_identifier] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_macro_rules_BANG] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_u8] = ACTIONS(2290), - [anon_sym_i8] = ACTIONS(2290), - [anon_sym_u16] = ACTIONS(2290), - [anon_sym_i16] = ACTIONS(2290), - [anon_sym_u32] = ACTIONS(2290), - [anon_sym_i32] = ACTIONS(2290), - [anon_sym_u64] = ACTIONS(2290), - [anon_sym_i64] = ACTIONS(2290), - [anon_sym_u128] = ACTIONS(2290), - [anon_sym_i128] = ACTIONS(2290), - [anon_sym_isize] = ACTIONS(2290), - [anon_sym_usize] = ACTIONS(2290), - [anon_sym_f32] = ACTIONS(2290), - [anon_sym_f64] = ACTIONS(2290), - [anon_sym_bool] = ACTIONS(2290), - [anon_sym_str] = ACTIONS(2290), - [anon_sym_char] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_DOT_DOT] = ACTIONS(2288), - [anon_sym_COLON_COLON] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2290), - [anon_sym_async] = ACTIONS(2290), - [anon_sym_break] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_continue] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2290), - [anon_sym_enum] = ACTIONS(2290), - [anon_sym_fn] = ACTIONS(2290), - [anon_sym_for] = ACTIONS(2290), - [anon_sym_gen] = ACTIONS(2290), - [anon_sym_if] = ACTIONS(2290), - [anon_sym_impl] = ACTIONS(2290), - [anon_sym_let] = ACTIONS(2290), - [anon_sym_loop] = ACTIONS(2290), - [anon_sym_match] = ACTIONS(2290), - [anon_sym_mod] = ACTIONS(2290), - [anon_sym_pub] = ACTIONS(2290), - [anon_sym_return] = ACTIONS(2290), - [anon_sym_static] = ACTIONS(2290), - [anon_sym_struct] = ACTIONS(2290), - [anon_sym_trait] = ACTIONS(2290), - [anon_sym_type] = ACTIONS(2290), - [anon_sym_union] = ACTIONS(2290), - [anon_sym_unsafe] = ACTIONS(2290), - [anon_sym_use] = ACTIONS(2290), - [anon_sym_while] = ACTIONS(2290), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_yield] = ACTIONS(2290), - [anon_sym_move] = ACTIONS(2290), - [anon_sym_try] = ACTIONS(2290), - [sym_integer_literal] = ACTIONS(2288), - [aux_sym_string_literal_token1] = ACTIONS(2288), - [sym_char_literal] = ACTIONS(2288), - [anon_sym_true] = ACTIONS(2290), - [anon_sym_false] = ACTIONS(2290), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2290), - [sym_super] = ACTIONS(2290), - [sym_crate] = ACTIONS(2290), - [sym_metavariable] = ACTIONS(2288), - [sym__raw_string_literal_start] = ACTIONS(2288), - [sym_float_literal] = ACTIONS(2288), - }, - [STATE(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2292), - [sym_identifier] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_macro_rules_BANG] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(2292), - [anon_sym_u8] = ACTIONS(2294), - [anon_sym_i8] = ACTIONS(2294), - [anon_sym_u16] = ACTIONS(2294), - [anon_sym_i16] = ACTIONS(2294), - [anon_sym_u32] = ACTIONS(2294), - [anon_sym_i32] = ACTIONS(2294), - [anon_sym_u64] = ACTIONS(2294), - [anon_sym_i64] = ACTIONS(2294), - [anon_sym_u128] = ACTIONS(2294), - [anon_sym_i128] = ACTIONS(2294), - [anon_sym_isize] = ACTIONS(2294), - [anon_sym_usize] = ACTIONS(2294), - [anon_sym_f32] = ACTIONS(2294), - [anon_sym_f64] = ACTIONS(2294), - [anon_sym_bool] = ACTIONS(2294), - [anon_sym_str] = ACTIONS(2294), - [anon_sym_char] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_AMP] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_DOT_DOT] = ACTIONS(2292), - [anon_sym_COLON_COLON] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), - [anon_sym_fn] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_gen] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_impl] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_loop] = ACTIONS(2294), - [anon_sym_match] = ACTIONS(2294), - [anon_sym_mod] = ACTIONS(2294), - [anon_sym_pub] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_struct] = ACTIONS(2294), - [anon_sym_trait] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_union] = ACTIONS(2294), - [anon_sym_unsafe] = ACTIONS(2294), - [anon_sym_use] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_extern] = ACTIONS(2294), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_move] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [sym_integer_literal] = ACTIONS(2292), - [aux_sym_string_literal_token1] = ACTIONS(2292), - [sym_char_literal] = ACTIONS(2292), - [anon_sym_true] = ACTIONS(2294), - [anon_sym_false] = ACTIONS(2294), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_crate] = ACTIONS(2294), - [sym_metavariable] = ACTIONS(2292), - [sym__raw_string_literal_start] = ACTIONS(2292), - [sym_float_literal] = ACTIONS(2292), - }, - [STATE(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_macro_rules_BANG] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_u8] = ACTIONS(2298), - [anon_sym_i8] = ACTIONS(2298), - [anon_sym_u16] = ACTIONS(2298), - [anon_sym_i16] = ACTIONS(2298), - [anon_sym_u32] = ACTIONS(2298), - [anon_sym_i32] = ACTIONS(2298), - [anon_sym_u64] = ACTIONS(2298), - [anon_sym_i64] = ACTIONS(2298), - [anon_sym_u128] = ACTIONS(2298), - [anon_sym_i128] = ACTIONS(2298), - [anon_sym_isize] = ACTIONS(2298), - [anon_sym_usize] = ACTIONS(2298), - [anon_sym_f32] = ACTIONS(2298), - [anon_sym_f64] = ACTIONS(2298), - [anon_sym_bool] = ACTIONS(2298), - [anon_sym_str] = ACTIONS(2298), - [anon_sym_char] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_DOT_DOT] = ACTIONS(2296), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [anon_sym_fn] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_gen] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_impl] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_loop] = ACTIONS(2298), - [anon_sym_match] = ACTIONS(2298), - [anon_sym_mod] = ACTIONS(2298), - [anon_sym_pub] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_struct] = ACTIONS(2298), - [anon_sym_trait] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_union] = ACTIONS(2298), - [anon_sym_unsafe] = ACTIONS(2298), - [anon_sym_use] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_extern] = ACTIONS(2298), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_move] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [sym_integer_literal] = ACTIONS(2296), - [aux_sym_string_literal_token1] = ACTIONS(2296), - [sym_char_literal] = ACTIONS(2296), - [anon_sym_true] = ACTIONS(2298), - [anon_sym_false] = ACTIONS(2298), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_crate] = ACTIONS(2298), - [sym_metavariable] = ACTIONS(2296), - [sym__raw_string_literal_start] = ACTIONS(2296), - [sym_float_literal] = ACTIONS(2296), - }, [STATE(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_macro_rules_BANG] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_u8] = ACTIONS(2302), - [anon_sym_i8] = ACTIONS(2302), - [anon_sym_u16] = ACTIONS(2302), - [anon_sym_i16] = ACTIONS(2302), - [anon_sym_u32] = ACTIONS(2302), - [anon_sym_i32] = ACTIONS(2302), - [anon_sym_u64] = ACTIONS(2302), - [anon_sym_i64] = ACTIONS(2302), - [anon_sym_u128] = ACTIONS(2302), - [anon_sym_i128] = ACTIONS(2302), - [anon_sym_isize] = ACTIONS(2302), - [anon_sym_usize] = ACTIONS(2302), - [anon_sym_f32] = ACTIONS(2302), - [anon_sym_f64] = ACTIONS(2302), - [anon_sym_bool] = ACTIONS(2302), - [anon_sym_str] = ACTIONS(2302), - [anon_sym_char] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_DOT_DOT] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_fn] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_gen] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_impl] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_loop] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_mod] = ACTIONS(2302), - [anon_sym_pub] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_trait] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [anon_sym_unsafe] = ACTIONS(2302), - [anon_sym_use] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_move] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [sym_integer_literal] = ACTIONS(2300), - [aux_sym_string_literal_token1] = ACTIONS(2300), - [sym_char_literal] = ACTIONS(2300), - [anon_sym_true] = ACTIONS(2302), - [anon_sym_false] = ACTIONS(2302), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_crate] = ACTIONS(2302), - [sym_metavariable] = ACTIONS(2300), - [sym__raw_string_literal_start] = ACTIONS(2300), - [sym_float_literal] = ACTIONS(2300), + [ts_builtin_sym_end] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_macro_rules_BANG] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_u8] = ACTIONS(2244), + [anon_sym_i8] = ACTIONS(2244), + [anon_sym_u16] = ACTIONS(2244), + [anon_sym_i16] = ACTIONS(2244), + [anon_sym_u32] = ACTIONS(2244), + [anon_sym_i32] = ACTIONS(2244), + [anon_sym_u64] = ACTIONS(2244), + [anon_sym_i64] = ACTIONS(2244), + [anon_sym_u128] = ACTIONS(2244), + [anon_sym_i128] = ACTIONS(2244), + [anon_sym_isize] = ACTIONS(2244), + [anon_sym_usize] = ACTIONS(2244), + [anon_sym_f32] = ACTIONS(2244), + [anon_sym_f64] = ACTIONS(2244), + [anon_sym_bool] = ACTIONS(2244), + [anon_sym_str] = ACTIONS(2244), + [anon_sym_char] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2242), + [anon_sym_COLON_COLON] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_fn] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_gen] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_impl] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_loop] = ACTIONS(2244), + [anon_sym_match] = ACTIONS(2244), + [anon_sym_mod] = ACTIONS(2244), + [anon_sym_pub] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_trait] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_unsafe] = ACTIONS(2244), + [anon_sym_use] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_move] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [sym_integer_literal] = ACTIONS(2242), + [aux_sym_string_literal_token1] = ACTIONS(2242), + [sym_char_literal] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2244), + [anon_sym_false] = ACTIONS(2244), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_crate] = ACTIONS(2244), + [sym_metavariable] = ACTIONS(2242), + [sym__raw_string_literal_start] = ACTIONS(2242), + [sym_float_literal] = ACTIONS(2242), }, [STATE(605)] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2304), - [sym_identifier] = ACTIONS(2306), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_macro_rules_BANG] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_u8] = ACTIONS(2306), - [anon_sym_i8] = ACTIONS(2306), - [anon_sym_u16] = ACTIONS(2306), - [anon_sym_i16] = ACTIONS(2306), - [anon_sym_u32] = ACTIONS(2306), - [anon_sym_i32] = ACTIONS(2306), - [anon_sym_u64] = ACTIONS(2306), - [anon_sym_i64] = ACTIONS(2306), - [anon_sym_u128] = ACTIONS(2306), - [anon_sym_i128] = ACTIONS(2306), - [anon_sym_isize] = ACTIONS(2306), - [anon_sym_usize] = ACTIONS(2306), - [anon_sym_f32] = ACTIONS(2306), - [anon_sym_f64] = ACTIONS(2306), - [anon_sym_bool] = ACTIONS(2306), - [anon_sym_str] = ACTIONS(2306), - [anon_sym_char] = ACTIONS(2306), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_DOT_DOT] = ACTIONS(2304), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2306), - [anon_sym_async] = ACTIONS(2306), - [anon_sym_break] = ACTIONS(2306), - [anon_sym_const] = ACTIONS(2306), - [anon_sym_continue] = ACTIONS(2306), - [anon_sym_default] = ACTIONS(2306), - [anon_sym_enum] = ACTIONS(2306), - [anon_sym_fn] = ACTIONS(2306), - [anon_sym_for] = ACTIONS(2306), - [anon_sym_gen] = ACTIONS(2306), - [anon_sym_if] = ACTIONS(2306), - [anon_sym_impl] = ACTIONS(2306), - [anon_sym_let] = ACTIONS(2306), - [anon_sym_loop] = ACTIONS(2306), - [anon_sym_match] = ACTIONS(2306), - [anon_sym_mod] = ACTIONS(2306), - [anon_sym_pub] = ACTIONS(2306), - [anon_sym_return] = ACTIONS(2306), - [anon_sym_static] = ACTIONS(2306), - [anon_sym_struct] = ACTIONS(2306), - [anon_sym_trait] = ACTIONS(2306), - [anon_sym_type] = ACTIONS(2306), - [anon_sym_union] = ACTIONS(2306), - [anon_sym_unsafe] = ACTIONS(2306), - [anon_sym_use] = ACTIONS(2306), - [anon_sym_while] = ACTIONS(2306), - [anon_sym_extern] = ACTIONS(2306), - [anon_sym_yield] = ACTIONS(2306), - [anon_sym_move] = ACTIONS(2306), - [anon_sym_try] = ACTIONS(2306), - [sym_integer_literal] = ACTIONS(2304), - [aux_sym_string_literal_token1] = ACTIONS(2304), - [sym_char_literal] = ACTIONS(2304), - [anon_sym_true] = ACTIONS(2306), - [anon_sym_false] = ACTIONS(2306), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2306), - [sym_super] = ACTIONS(2306), - [sym_crate] = ACTIONS(2306), - [sym_metavariable] = ACTIONS(2304), - [sym__raw_string_literal_start] = ACTIONS(2304), - [sym_float_literal] = ACTIONS(2304), + [ts_builtin_sym_end] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_macro_rules_BANG] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_u8] = ACTIONS(2248), + [anon_sym_i8] = ACTIONS(2248), + [anon_sym_u16] = ACTIONS(2248), + [anon_sym_i16] = ACTIONS(2248), + [anon_sym_u32] = ACTIONS(2248), + [anon_sym_i32] = ACTIONS(2248), + [anon_sym_u64] = ACTIONS(2248), + [anon_sym_i64] = ACTIONS(2248), + [anon_sym_u128] = ACTIONS(2248), + [anon_sym_i128] = ACTIONS(2248), + [anon_sym_isize] = ACTIONS(2248), + [anon_sym_usize] = ACTIONS(2248), + [anon_sym_f32] = ACTIONS(2248), + [anon_sym_f64] = ACTIONS(2248), + [anon_sym_bool] = ACTIONS(2248), + [anon_sym_str] = ACTIONS(2248), + [anon_sym_char] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_DOT_DOT] = ACTIONS(2246), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2248), + [anon_sym_async] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_default] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_fn] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_gen] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_impl] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_loop] = ACTIONS(2248), + [anon_sym_match] = ACTIONS(2248), + [anon_sym_mod] = ACTIONS(2248), + [anon_sym_pub] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2248), + [anon_sym_trait] = ACTIONS(2248), + [anon_sym_type] = ACTIONS(2248), + [anon_sym_union] = ACTIONS(2248), + [anon_sym_unsafe] = ACTIONS(2248), + [anon_sym_use] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_yield] = ACTIONS(2248), + [anon_sym_move] = ACTIONS(2248), + [anon_sym_try] = ACTIONS(2248), + [sym_integer_literal] = ACTIONS(2246), + [aux_sym_string_literal_token1] = ACTIONS(2246), + [sym_char_literal] = ACTIONS(2246), + [anon_sym_true] = ACTIONS(2248), + [anon_sym_false] = ACTIONS(2248), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2248), + [sym_super] = ACTIONS(2248), + [sym_crate] = ACTIONS(2248), + [sym_metavariable] = ACTIONS(2246), + [sym__raw_string_literal_start] = ACTIONS(2246), + [sym_float_literal] = ACTIONS(2246), }, [STATE(606)] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2308), - [sym_identifier] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_macro_rules_BANG] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_u8] = ACTIONS(2310), - [anon_sym_i8] = ACTIONS(2310), - [anon_sym_u16] = ACTIONS(2310), - [anon_sym_i16] = ACTIONS(2310), - [anon_sym_u32] = ACTIONS(2310), - [anon_sym_i32] = ACTIONS(2310), - [anon_sym_u64] = ACTIONS(2310), - [anon_sym_i64] = ACTIONS(2310), - [anon_sym_u128] = ACTIONS(2310), - [anon_sym_i128] = ACTIONS(2310), - [anon_sym_isize] = ACTIONS(2310), - [anon_sym_usize] = ACTIONS(2310), - [anon_sym_f32] = ACTIONS(2310), - [anon_sym_f64] = ACTIONS(2310), - [anon_sym_bool] = ACTIONS(2310), - [anon_sym_str] = ACTIONS(2310), - [anon_sym_char] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_COLON_COLON] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [anon_sym_fn] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_gen] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_impl] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_loop] = ACTIONS(2310), - [anon_sym_match] = ACTIONS(2310), - [anon_sym_mod] = ACTIONS(2310), - [anon_sym_pub] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_struct] = ACTIONS(2310), - [anon_sym_trait] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_union] = ACTIONS(2310), - [anon_sym_unsafe] = ACTIONS(2310), - [anon_sym_use] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_extern] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_move] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [sym_integer_literal] = ACTIONS(2308), - [aux_sym_string_literal_token1] = ACTIONS(2308), - [sym_char_literal] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(2310), - [anon_sym_false] = ACTIONS(2310), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_crate] = ACTIONS(2310), - [sym_metavariable] = ACTIONS(2308), - [sym__raw_string_literal_start] = ACTIONS(2308), - [sym_float_literal] = ACTIONS(2308), + [ts_builtin_sym_end] = ACTIONS(2250), + [sym_identifier] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_macro_rules_BANG] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_u8] = ACTIONS(2252), + [anon_sym_i8] = ACTIONS(2252), + [anon_sym_u16] = ACTIONS(2252), + [anon_sym_i16] = ACTIONS(2252), + [anon_sym_u32] = ACTIONS(2252), + [anon_sym_i32] = ACTIONS(2252), + [anon_sym_u64] = ACTIONS(2252), + [anon_sym_i64] = ACTIONS(2252), + [anon_sym_u128] = ACTIONS(2252), + [anon_sym_i128] = ACTIONS(2252), + [anon_sym_isize] = ACTIONS(2252), + [anon_sym_usize] = ACTIONS(2252), + [anon_sym_f32] = ACTIONS(2252), + [anon_sym_f64] = ACTIONS(2252), + [anon_sym_bool] = ACTIONS(2252), + [anon_sym_str] = ACTIONS(2252), + [anon_sym_char] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(2250), + [anon_sym_POUND] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2252), + [anon_sym_async] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), + [anon_sym_fn] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_gen] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_impl] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_loop] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2252), + [anon_sym_mod] = ACTIONS(2252), + [anon_sym_pub] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_trait] = ACTIONS(2252), + [anon_sym_type] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_unsafe] = ACTIONS(2252), + [anon_sym_use] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_move] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [sym_integer_literal] = ACTIONS(2250), + [aux_sym_string_literal_token1] = ACTIONS(2250), + [sym_char_literal] = ACTIONS(2250), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2252), + [sym_super] = ACTIONS(2252), + [sym_crate] = ACTIONS(2252), + [sym_metavariable] = ACTIONS(2250), + [sym__raw_string_literal_start] = ACTIONS(2250), + [sym_float_literal] = ACTIONS(2250), }, [STATE(607)] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2312), - [anon_sym_macro_rules_BANG] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2312), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_u8] = ACTIONS(2314), - [anon_sym_i8] = ACTIONS(2314), - [anon_sym_u16] = ACTIONS(2314), - [anon_sym_i16] = ACTIONS(2314), - [anon_sym_u32] = ACTIONS(2314), - [anon_sym_i32] = ACTIONS(2314), - [anon_sym_u64] = ACTIONS(2314), - [anon_sym_i64] = ACTIONS(2314), - [anon_sym_u128] = ACTIONS(2314), - [anon_sym_i128] = ACTIONS(2314), - [anon_sym_isize] = ACTIONS(2314), - [anon_sym_usize] = ACTIONS(2314), - [anon_sym_f32] = ACTIONS(2314), - [anon_sym_f64] = ACTIONS(2314), - [anon_sym_bool] = ACTIONS(2314), - [anon_sym_str] = ACTIONS(2314), - [anon_sym_char] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_DOT_DOT] = ACTIONS(2312), - [anon_sym_COLON_COLON] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_default] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_fn] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_gen] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_impl] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_loop] = ACTIONS(2314), - [anon_sym_match] = ACTIONS(2314), - [anon_sym_mod] = ACTIONS(2314), - [anon_sym_pub] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_struct] = ACTIONS(2314), - [anon_sym_trait] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_union] = ACTIONS(2314), - [anon_sym_unsafe] = ACTIONS(2314), - [anon_sym_use] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_extern] = ACTIONS(2314), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_move] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [sym_integer_literal] = ACTIONS(2312), - [aux_sym_string_literal_token1] = ACTIONS(2312), - [sym_char_literal] = ACTIONS(2312), - [anon_sym_true] = ACTIONS(2314), - [anon_sym_false] = ACTIONS(2314), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_crate] = ACTIONS(2314), - [sym_metavariable] = ACTIONS(2312), - [sym__raw_string_literal_start] = ACTIONS(2312), - [sym_float_literal] = ACTIONS(2312), + [ts_builtin_sym_end] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_macro_rules_BANG] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_u8] = ACTIONS(2256), + [anon_sym_i8] = ACTIONS(2256), + [anon_sym_u16] = ACTIONS(2256), + [anon_sym_i16] = ACTIONS(2256), + [anon_sym_u32] = ACTIONS(2256), + [anon_sym_i32] = ACTIONS(2256), + [anon_sym_u64] = ACTIONS(2256), + [anon_sym_i64] = ACTIONS(2256), + [anon_sym_u128] = ACTIONS(2256), + [anon_sym_i128] = ACTIONS(2256), + [anon_sym_isize] = ACTIONS(2256), + [anon_sym_usize] = ACTIONS(2256), + [anon_sym_f32] = ACTIONS(2256), + [anon_sym_f64] = ACTIONS(2256), + [anon_sym_bool] = ACTIONS(2256), + [anon_sym_str] = ACTIONS(2256), + [anon_sym_char] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2256), + [anon_sym_async] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_fn] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_gen] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_impl] = ACTIONS(2256), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_loop] = ACTIONS(2256), + [anon_sym_match] = ACTIONS(2256), + [anon_sym_mod] = ACTIONS(2256), + [anon_sym_pub] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_trait] = ACTIONS(2256), + [anon_sym_type] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [anon_sym_unsafe] = ACTIONS(2256), + [anon_sym_use] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym_yield] = ACTIONS(2256), + [anon_sym_move] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [sym_integer_literal] = ACTIONS(2254), + [aux_sym_string_literal_token1] = ACTIONS(2254), + [sym_char_literal] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2256), + [sym_super] = ACTIONS(2256), + [sym_crate] = ACTIONS(2256), + [sym_metavariable] = ACTIONS(2254), + [sym__raw_string_literal_start] = ACTIONS(2254), + [sym_float_literal] = ACTIONS(2254), }, [STATE(608)] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2316), - [anon_sym_macro_rules_BANG] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2316), - [anon_sym_RBRACE] = ACTIONS(2316), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_u8] = ACTIONS(2318), - [anon_sym_i8] = ACTIONS(2318), - [anon_sym_u16] = ACTIONS(2318), - [anon_sym_i16] = ACTIONS(2318), - [anon_sym_u32] = ACTIONS(2318), - [anon_sym_i32] = ACTIONS(2318), - [anon_sym_u64] = ACTIONS(2318), - [anon_sym_i64] = ACTIONS(2318), - [anon_sym_u128] = ACTIONS(2318), - [anon_sym_i128] = ACTIONS(2318), - [anon_sym_isize] = ACTIONS(2318), - [anon_sym_usize] = ACTIONS(2318), - [anon_sym_f32] = ACTIONS(2318), - [anon_sym_f64] = ACTIONS(2318), - [anon_sym_bool] = ACTIONS(2318), - [anon_sym_str] = ACTIONS(2318), - [anon_sym_char] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_BANG] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_DOT_DOT] = ACTIONS(2316), - [anon_sym_COLON_COLON] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2316), - [anon_sym_SQUOTE] = ACTIONS(2318), - [anon_sym_async] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_default] = ACTIONS(2318), - [anon_sym_enum] = ACTIONS(2318), - [anon_sym_fn] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_gen] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_impl] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2318), - [anon_sym_loop] = ACTIONS(2318), - [anon_sym_match] = ACTIONS(2318), - [anon_sym_mod] = ACTIONS(2318), - [anon_sym_pub] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_static] = ACTIONS(2318), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_trait] = ACTIONS(2318), - [anon_sym_type] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2318), - [anon_sym_unsafe] = ACTIONS(2318), - [anon_sym_use] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_yield] = ACTIONS(2318), - [anon_sym_move] = ACTIONS(2318), - [anon_sym_try] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2316), - [aux_sym_string_literal_token1] = ACTIONS(2316), - [sym_char_literal] = ACTIONS(2316), - [anon_sym_true] = ACTIONS(2318), - [anon_sym_false] = ACTIONS(2318), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2318), - [sym_super] = ACTIONS(2318), - [sym_crate] = ACTIONS(2318), - [sym_metavariable] = ACTIONS(2316), - [sym__raw_string_literal_start] = ACTIONS(2316), - [sym_float_literal] = ACTIONS(2316), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_macro_rules_BANG] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_u8] = ACTIONS(2260), + [anon_sym_i8] = ACTIONS(2260), + [anon_sym_u16] = ACTIONS(2260), + [anon_sym_i16] = ACTIONS(2260), + [anon_sym_u32] = ACTIONS(2260), + [anon_sym_i32] = ACTIONS(2260), + [anon_sym_u64] = ACTIONS(2260), + [anon_sym_i64] = ACTIONS(2260), + [anon_sym_u128] = ACTIONS(2260), + [anon_sym_i128] = ACTIONS(2260), + [anon_sym_isize] = ACTIONS(2260), + [anon_sym_usize] = ACTIONS(2260), + [anon_sym_f32] = ACTIONS(2260), + [anon_sym_f64] = ACTIONS(2260), + [anon_sym_bool] = ACTIONS(2260), + [anon_sym_str] = ACTIONS(2260), + [anon_sym_char] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_LT] = ACTIONS(2258), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_POUND] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_fn] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_gen] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_impl] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_loop] = ACTIONS(2260), + [anon_sym_match] = ACTIONS(2260), + [anon_sym_mod] = ACTIONS(2260), + [anon_sym_pub] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_trait] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [anon_sym_unsafe] = ACTIONS(2260), + [anon_sym_use] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_move] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [sym_integer_literal] = ACTIONS(2258), + [aux_sym_string_literal_token1] = ACTIONS(2258), + [sym_char_literal] = ACTIONS(2258), + [anon_sym_true] = ACTIONS(2260), + [anon_sym_false] = ACTIONS(2260), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_crate] = ACTIONS(2260), + [sym_metavariable] = ACTIONS(2258), + [sym__raw_string_literal_start] = ACTIONS(2258), + [sym_float_literal] = ACTIONS(2258), }, [STATE(609)] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2320), - [sym_identifier] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2320), - [anon_sym_macro_rules_BANG] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_u8] = ACTIONS(2322), - [anon_sym_i8] = ACTIONS(2322), - [anon_sym_u16] = ACTIONS(2322), - [anon_sym_i16] = ACTIONS(2322), - [anon_sym_u32] = ACTIONS(2322), - [anon_sym_i32] = ACTIONS(2322), - [anon_sym_u64] = ACTIONS(2322), - [anon_sym_i64] = ACTIONS(2322), - [anon_sym_u128] = ACTIONS(2322), - [anon_sym_i128] = ACTIONS(2322), - [anon_sym_isize] = ACTIONS(2322), - [anon_sym_usize] = ACTIONS(2322), - [anon_sym_f32] = ACTIONS(2322), - [anon_sym_f64] = ACTIONS(2322), - [anon_sym_bool] = ACTIONS(2322), - [anon_sym_str] = ACTIONS(2322), - [anon_sym_char] = ACTIONS(2322), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_DOT_DOT] = ACTIONS(2320), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(2322), - [anon_sym_async] = ACTIONS(2322), - [anon_sym_break] = ACTIONS(2322), - [anon_sym_const] = ACTIONS(2322), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_default] = ACTIONS(2322), - [anon_sym_enum] = ACTIONS(2322), - [anon_sym_fn] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2322), - [anon_sym_gen] = ACTIONS(2322), - [anon_sym_if] = ACTIONS(2322), - [anon_sym_impl] = ACTIONS(2322), - [anon_sym_let] = ACTIONS(2322), - [anon_sym_loop] = ACTIONS(2322), - [anon_sym_match] = ACTIONS(2322), - [anon_sym_mod] = ACTIONS(2322), - [anon_sym_pub] = ACTIONS(2322), - [anon_sym_return] = ACTIONS(2322), - [anon_sym_static] = ACTIONS(2322), - [anon_sym_struct] = ACTIONS(2322), - [anon_sym_trait] = ACTIONS(2322), - [anon_sym_type] = ACTIONS(2322), - [anon_sym_union] = ACTIONS(2322), - [anon_sym_unsafe] = ACTIONS(2322), - [anon_sym_use] = ACTIONS(2322), - [anon_sym_while] = ACTIONS(2322), - [anon_sym_extern] = ACTIONS(2322), - [anon_sym_yield] = ACTIONS(2322), - [anon_sym_move] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2322), - [sym_integer_literal] = ACTIONS(2320), - [aux_sym_string_literal_token1] = ACTIONS(2320), - [sym_char_literal] = ACTIONS(2320), - [anon_sym_true] = ACTIONS(2322), - [anon_sym_false] = ACTIONS(2322), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2322), - [sym_super] = ACTIONS(2322), - [sym_crate] = ACTIONS(2322), - [sym_metavariable] = ACTIONS(2320), - [sym__raw_string_literal_start] = ACTIONS(2320), - [sym_float_literal] = ACTIONS(2320), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_macro_rules_BANG] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_u8] = ACTIONS(2264), + [anon_sym_i8] = ACTIONS(2264), + [anon_sym_u16] = ACTIONS(2264), + [anon_sym_i16] = ACTIONS(2264), + [anon_sym_u32] = ACTIONS(2264), + [anon_sym_i32] = ACTIONS(2264), + [anon_sym_u64] = ACTIONS(2264), + [anon_sym_i64] = ACTIONS(2264), + [anon_sym_u128] = ACTIONS(2264), + [anon_sym_i128] = ACTIONS(2264), + [anon_sym_isize] = ACTIONS(2264), + [anon_sym_usize] = ACTIONS(2264), + [anon_sym_f32] = ACTIONS(2264), + [anon_sym_f64] = ACTIONS(2264), + [anon_sym_bool] = ACTIONS(2264), + [anon_sym_str] = ACTIONS(2264), + [anon_sym_char] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2262), + [anon_sym_PIPE] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_DOT_DOT] = ACTIONS(2262), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_POUND] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_fn] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_gen] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_impl] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_loop] = ACTIONS(2264), + [anon_sym_match] = ACTIONS(2264), + [anon_sym_mod] = ACTIONS(2264), + [anon_sym_pub] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_trait] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(2264), + [anon_sym_use] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_move] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [sym_integer_literal] = ACTIONS(2262), + [aux_sym_string_literal_token1] = ACTIONS(2262), + [sym_char_literal] = ACTIONS(2262), + [anon_sym_true] = ACTIONS(2264), + [anon_sym_false] = ACTIONS(2264), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_crate] = ACTIONS(2264), + [sym_metavariable] = ACTIONS(2262), + [sym__raw_string_literal_start] = ACTIONS(2262), + [sym_float_literal] = ACTIONS(2262), }, [STATE(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2324), - [anon_sym_macro_rules_BANG] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_LBRACK] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2324), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_u8] = ACTIONS(2326), - [anon_sym_i8] = ACTIONS(2326), - [anon_sym_u16] = ACTIONS(2326), - [anon_sym_i16] = ACTIONS(2326), - [anon_sym_u32] = ACTIONS(2326), - [anon_sym_i32] = ACTIONS(2326), - [anon_sym_u64] = ACTIONS(2326), - [anon_sym_i64] = ACTIONS(2326), - [anon_sym_u128] = ACTIONS(2326), - [anon_sym_i128] = ACTIONS(2326), - [anon_sym_isize] = ACTIONS(2326), - [anon_sym_usize] = ACTIONS(2326), - [anon_sym_f32] = ACTIONS(2326), - [anon_sym_f64] = ACTIONS(2326), - [anon_sym_bool] = ACTIONS(2326), - [anon_sym_str] = ACTIONS(2326), - [anon_sym_char] = ACTIONS(2326), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_BANG] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_COLON_COLON] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(2324), - [anon_sym_SQUOTE] = ACTIONS(2326), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_break] = ACTIONS(2326), - [anon_sym_const] = ACTIONS(2326), - [anon_sym_continue] = ACTIONS(2326), - [anon_sym_default] = ACTIONS(2326), - [anon_sym_enum] = ACTIONS(2326), - [anon_sym_fn] = ACTIONS(2326), - [anon_sym_for] = ACTIONS(2326), - [anon_sym_gen] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2326), - [anon_sym_impl] = ACTIONS(2326), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_loop] = ACTIONS(2326), - [anon_sym_match] = ACTIONS(2326), - [anon_sym_mod] = ACTIONS(2326), - [anon_sym_pub] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2326), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_struct] = ACTIONS(2326), - [anon_sym_trait] = ACTIONS(2326), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_union] = ACTIONS(2326), - [anon_sym_unsafe] = ACTIONS(2326), - [anon_sym_use] = ACTIONS(2326), - [anon_sym_while] = ACTIONS(2326), - [anon_sym_extern] = ACTIONS(2326), - [anon_sym_yield] = ACTIONS(2326), - [anon_sym_move] = ACTIONS(2326), - [anon_sym_try] = ACTIONS(2326), - [sym_integer_literal] = ACTIONS(2324), - [aux_sym_string_literal_token1] = ACTIONS(2324), - [sym_char_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2326), - [anon_sym_false] = ACTIONS(2326), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2326), - [sym_super] = ACTIONS(2326), - [sym_crate] = ACTIONS(2326), - [sym_metavariable] = ACTIONS(2324), - [sym__raw_string_literal_start] = ACTIONS(2324), - [sym_float_literal] = ACTIONS(2324), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_macro_rules_BANG] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_u8] = ACTIONS(2268), + [anon_sym_i8] = ACTIONS(2268), + [anon_sym_u16] = ACTIONS(2268), + [anon_sym_i16] = ACTIONS(2268), + [anon_sym_u32] = ACTIONS(2268), + [anon_sym_i32] = ACTIONS(2268), + [anon_sym_u64] = ACTIONS(2268), + [anon_sym_i64] = ACTIONS(2268), + [anon_sym_u128] = ACTIONS(2268), + [anon_sym_i128] = ACTIONS(2268), + [anon_sym_isize] = ACTIONS(2268), + [anon_sym_usize] = ACTIONS(2268), + [anon_sym_f32] = ACTIONS(2268), + [anon_sym_f64] = ACTIONS(2268), + [anon_sym_bool] = ACTIONS(2268), + [anon_sym_str] = ACTIONS(2268), + [anon_sym_char] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2266), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_POUND] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [anon_sym_fn] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_gen] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_impl] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_loop] = ACTIONS(2268), + [anon_sym_match] = ACTIONS(2268), + [anon_sym_mod] = ACTIONS(2268), + [anon_sym_pub] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(2268), + [anon_sym_trait] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_union] = ACTIONS(2268), + [anon_sym_unsafe] = ACTIONS(2268), + [anon_sym_use] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_move] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [sym_integer_literal] = ACTIONS(2266), + [aux_sym_string_literal_token1] = ACTIONS(2266), + [sym_char_literal] = ACTIONS(2266), + [anon_sym_true] = ACTIONS(2268), + [anon_sym_false] = ACTIONS(2268), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_crate] = ACTIONS(2268), + [sym_metavariable] = ACTIONS(2266), + [sym__raw_string_literal_start] = ACTIONS(2266), + [sym_float_literal] = ACTIONS(2266), }, [STATE(611)] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_macro_rules_BANG] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_u8] = ACTIONS(2330), - [anon_sym_i8] = ACTIONS(2330), - [anon_sym_u16] = ACTIONS(2330), - [anon_sym_i16] = ACTIONS(2330), - [anon_sym_u32] = ACTIONS(2330), - [anon_sym_i32] = ACTIONS(2330), - [anon_sym_u64] = ACTIONS(2330), - [anon_sym_i64] = ACTIONS(2330), - [anon_sym_u128] = ACTIONS(2330), - [anon_sym_i128] = ACTIONS(2330), - [anon_sym_isize] = ACTIONS(2330), - [anon_sym_usize] = ACTIONS(2330), - [anon_sym_f32] = ACTIONS(2330), - [anon_sym_f64] = ACTIONS(2330), - [anon_sym_bool] = ACTIONS(2330), - [anon_sym_str] = ACTIONS(2330), - [anon_sym_char] = ACTIONS(2330), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_DOT_DOT] = ACTIONS(2328), - [anon_sym_COLON_COLON] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2330), - [anon_sym_break] = ACTIONS(2330), - [anon_sym_const] = ACTIONS(2330), - [anon_sym_continue] = ACTIONS(2330), - [anon_sym_default] = ACTIONS(2330), - [anon_sym_enum] = ACTIONS(2330), - [anon_sym_fn] = ACTIONS(2330), - [anon_sym_for] = ACTIONS(2330), - [anon_sym_gen] = ACTIONS(2330), - [anon_sym_if] = ACTIONS(2330), - [anon_sym_impl] = ACTIONS(2330), - [anon_sym_let] = ACTIONS(2330), - [anon_sym_loop] = ACTIONS(2330), - [anon_sym_match] = ACTIONS(2330), - [anon_sym_mod] = ACTIONS(2330), - [anon_sym_pub] = ACTIONS(2330), - [anon_sym_return] = ACTIONS(2330), - [anon_sym_static] = ACTIONS(2330), - [anon_sym_struct] = ACTIONS(2330), - [anon_sym_trait] = ACTIONS(2330), - [anon_sym_type] = ACTIONS(2330), - [anon_sym_union] = ACTIONS(2330), - [anon_sym_unsafe] = ACTIONS(2330), - [anon_sym_use] = ACTIONS(2330), - [anon_sym_while] = ACTIONS(2330), - [anon_sym_extern] = ACTIONS(2330), - [anon_sym_yield] = ACTIONS(2330), - [anon_sym_move] = ACTIONS(2330), - [anon_sym_try] = ACTIONS(2330), - [sym_integer_literal] = ACTIONS(2328), - [aux_sym_string_literal_token1] = ACTIONS(2328), - [sym_char_literal] = ACTIONS(2328), - [anon_sym_true] = ACTIONS(2330), - [anon_sym_false] = ACTIONS(2330), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2330), - [sym_super] = ACTIONS(2330), - [sym_crate] = ACTIONS(2330), - [sym_metavariable] = ACTIONS(2328), - [sym__raw_string_literal_start] = ACTIONS(2328), - [sym_float_literal] = ACTIONS(2328), + [ts_builtin_sym_end] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_macro_rules_BANG] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_u8] = ACTIONS(2272), + [anon_sym_i8] = ACTIONS(2272), + [anon_sym_u16] = ACTIONS(2272), + [anon_sym_i16] = ACTIONS(2272), + [anon_sym_u32] = ACTIONS(2272), + [anon_sym_i32] = ACTIONS(2272), + [anon_sym_u64] = ACTIONS(2272), + [anon_sym_i64] = ACTIONS(2272), + [anon_sym_u128] = ACTIONS(2272), + [anon_sym_i128] = ACTIONS(2272), + [anon_sym_isize] = ACTIONS(2272), + [anon_sym_usize] = ACTIONS(2272), + [anon_sym_f32] = ACTIONS(2272), + [anon_sym_f64] = ACTIONS(2272), + [anon_sym_bool] = ACTIONS(2272), + [anon_sym_str] = ACTIONS(2272), + [anon_sym_char] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_DOT_DOT] = ACTIONS(2270), + [anon_sym_COLON_COLON] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_fn] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_gen] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_impl] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_loop] = ACTIONS(2272), + [anon_sym_match] = ACTIONS(2272), + [anon_sym_mod] = ACTIONS(2272), + [anon_sym_pub] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_trait] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [anon_sym_unsafe] = ACTIONS(2272), + [anon_sym_use] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_move] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [sym_integer_literal] = ACTIONS(2270), + [aux_sym_string_literal_token1] = ACTIONS(2270), + [sym_char_literal] = ACTIONS(2270), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_crate] = ACTIONS(2272), + [sym_metavariable] = ACTIONS(2270), + [sym__raw_string_literal_start] = ACTIONS(2270), + [sym_float_literal] = ACTIONS(2270), }, [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2334), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_macro_rules_BANG] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_u8] = ACTIONS(2334), - [anon_sym_i8] = ACTIONS(2334), - [anon_sym_u16] = ACTIONS(2334), - [anon_sym_i16] = ACTIONS(2334), - [anon_sym_u32] = ACTIONS(2334), - [anon_sym_i32] = ACTIONS(2334), - [anon_sym_u64] = ACTIONS(2334), - [anon_sym_i64] = ACTIONS(2334), - [anon_sym_u128] = ACTIONS(2334), - [anon_sym_i128] = ACTIONS(2334), - [anon_sym_isize] = ACTIONS(2334), - [anon_sym_usize] = ACTIONS(2334), - [anon_sym_f32] = ACTIONS(2334), - [anon_sym_f64] = ACTIONS(2334), - [anon_sym_bool] = ACTIONS(2334), - [anon_sym_str] = ACTIONS(2334), - [anon_sym_char] = ACTIONS(2334), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_DOT_DOT] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2334), - [anon_sym_async] = ACTIONS(2334), - [anon_sym_break] = ACTIONS(2334), - [anon_sym_const] = ACTIONS(2334), - [anon_sym_continue] = ACTIONS(2334), - [anon_sym_default] = ACTIONS(2334), - [anon_sym_enum] = ACTIONS(2334), - [anon_sym_fn] = ACTIONS(2334), - [anon_sym_for] = ACTIONS(2334), - [anon_sym_gen] = ACTIONS(2334), - [anon_sym_if] = ACTIONS(2334), - [anon_sym_impl] = ACTIONS(2334), - [anon_sym_let] = ACTIONS(2334), - [anon_sym_loop] = ACTIONS(2334), - [anon_sym_match] = ACTIONS(2334), - [anon_sym_mod] = ACTIONS(2334), - [anon_sym_pub] = ACTIONS(2334), - [anon_sym_return] = ACTIONS(2334), - [anon_sym_static] = ACTIONS(2334), - [anon_sym_struct] = ACTIONS(2334), - [anon_sym_trait] = ACTIONS(2334), - [anon_sym_type] = ACTIONS(2334), - [anon_sym_union] = ACTIONS(2334), - [anon_sym_unsafe] = ACTIONS(2334), - [anon_sym_use] = ACTIONS(2334), - [anon_sym_while] = ACTIONS(2334), - [anon_sym_extern] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2334), - [anon_sym_move] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2334), - [sym_integer_literal] = ACTIONS(2332), - [aux_sym_string_literal_token1] = ACTIONS(2332), - [sym_char_literal] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2334), - [anon_sym_false] = ACTIONS(2334), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2334), - [sym_super] = ACTIONS(2334), - [sym_crate] = ACTIONS(2334), - [sym_metavariable] = ACTIONS(2332), - [sym__raw_string_literal_start] = ACTIONS(2332), - [sym_float_literal] = ACTIONS(2332), + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_macro_rules_BANG] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_u8] = ACTIONS(2276), + [anon_sym_i8] = ACTIONS(2276), + [anon_sym_u16] = ACTIONS(2276), + [anon_sym_i16] = ACTIONS(2276), + [anon_sym_u32] = ACTIONS(2276), + [anon_sym_i32] = ACTIONS(2276), + [anon_sym_u64] = ACTIONS(2276), + [anon_sym_i64] = ACTIONS(2276), + [anon_sym_u128] = ACTIONS(2276), + [anon_sym_i128] = ACTIONS(2276), + [anon_sym_isize] = ACTIONS(2276), + [anon_sym_usize] = ACTIONS(2276), + [anon_sym_f32] = ACTIONS(2276), + [anon_sym_f64] = ACTIONS(2276), + [anon_sym_bool] = ACTIONS(2276), + [anon_sym_str] = ACTIONS(2276), + [anon_sym_char] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_DOT_DOT] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [anon_sym_fn] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_gen] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_impl] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_loop] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2276), + [anon_sym_mod] = ACTIONS(2276), + [anon_sym_pub] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_struct] = ACTIONS(2276), + [anon_sym_trait] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_union] = ACTIONS(2276), + [anon_sym_unsafe] = ACTIONS(2276), + [anon_sym_use] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_move] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [sym_integer_literal] = ACTIONS(2274), + [aux_sym_string_literal_token1] = ACTIONS(2274), + [sym_char_literal] = ACTIONS(2274), + [anon_sym_true] = ACTIONS(2276), + [anon_sym_false] = ACTIONS(2276), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_crate] = ACTIONS(2276), + [sym_metavariable] = ACTIONS(2274), + [sym__raw_string_literal_start] = ACTIONS(2274), + [sym_float_literal] = ACTIONS(2274), }, [STATE(613)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_pattern] = STATE(3576), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2336), - [sym_identifier] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2336), - [anon_sym_macro_rules_BANG] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_u8] = ACTIONS(2338), - [anon_sym_i8] = ACTIONS(2338), - [anon_sym_u16] = ACTIONS(2338), - [anon_sym_i16] = ACTIONS(2338), - [anon_sym_u32] = ACTIONS(2338), - [anon_sym_i32] = ACTIONS(2338), - [anon_sym_u64] = ACTIONS(2338), - [anon_sym_i64] = ACTIONS(2338), - [anon_sym_u128] = ACTIONS(2338), - [anon_sym_i128] = ACTIONS(2338), - [anon_sym_isize] = ACTIONS(2338), - [anon_sym_usize] = ACTIONS(2338), - [anon_sym_f32] = ACTIONS(2338), - [anon_sym_f64] = ACTIONS(2338), - [anon_sym_bool] = ACTIONS(2338), - [anon_sym_str] = ACTIONS(2338), - [anon_sym_char] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_DOT_DOT] = ACTIONS(2336), - [anon_sym_COLON_COLON] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2336), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_default] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [anon_sym_fn] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_gen] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_impl] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_mod] = ACTIONS(2338), - [anon_sym_pub] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_struct] = ACTIONS(2338), - [anon_sym_trait] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_union] = ACTIONS(2338), - [anon_sym_unsafe] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_move] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [sym_integer_literal] = ACTIONS(2336), - [aux_sym_string_literal_token1] = ACTIONS(2336), - [sym_char_literal] = ACTIONS(2336), - [anon_sym_true] = ACTIONS(2338), - [anon_sym_false] = ACTIONS(2338), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_crate] = ACTIONS(2338), - [sym_metavariable] = ACTIONS(2336), - [sym__raw_string_literal_start] = ACTIONS(2336), - [sym_float_literal] = ACTIONS(2336), + [aux_sym_match_arm_repeat1] = STATE(1072), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2340), - [sym_identifier] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2340), - [anon_sym_macro_rules_BANG] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2340), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(2340), - [anon_sym_u8] = ACTIONS(2342), - [anon_sym_i8] = ACTIONS(2342), - [anon_sym_u16] = ACTIONS(2342), - [anon_sym_i16] = ACTIONS(2342), - [anon_sym_u32] = ACTIONS(2342), - [anon_sym_i32] = ACTIONS(2342), - [anon_sym_u64] = ACTIONS(2342), - [anon_sym_i64] = ACTIONS(2342), - [anon_sym_u128] = ACTIONS(2342), - [anon_sym_i128] = ACTIONS(2342), - [anon_sym_isize] = ACTIONS(2342), - [anon_sym_usize] = ACTIONS(2342), - [anon_sym_f32] = ACTIONS(2342), - [anon_sym_f64] = ACTIONS(2342), - [anon_sym_bool] = ACTIONS(2342), - [anon_sym_str] = ACTIONS(2342), - [anon_sym_char] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_BANG] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_DOT_DOT] = ACTIONS(2340), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2340), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_default] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [anon_sym_fn] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_gen] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_impl] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_loop] = ACTIONS(2342), - [anon_sym_match] = ACTIONS(2342), - [anon_sym_mod] = ACTIONS(2342), - [anon_sym_pub] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_struct] = ACTIONS(2342), - [anon_sym_trait] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_union] = ACTIONS(2342), - [anon_sym_unsafe] = ACTIONS(2342), - [anon_sym_use] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_extern] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_move] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [sym_integer_literal] = ACTIONS(2340), - [aux_sym_string_literal_token1] = ACTIONS(2340), - [sym_char_literal] = ACTIONS(2340), - [anon_sym_true] = ACTIONS(2342), - [anon_sym_false] = ACTIONS(2342), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_crate] = ACTIONS(2342), - [sym_metavariable] = ACTIONS(2340), - [sym__raw_string_literal_start] = ACTIONS(2340), - [sym_float_literal] = ACTIONS(2340), + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_macro_rules_BANG] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_u8] = ACTIONS(2280), + [anon_sym_i8] = ACTIONS(2280), + [anon_sym_u16] = ACTIONS(2280), + [anon_sym_i16] = ACTIONS(2280), + [anon_sym_u32] = ACTIONS(2280), + [anon_sym_i32] = ACTIONS(2280), + [anon_sym_u64] = ACTIONS(2280), + [anon_sym_i64] = ACTIONS(2280), + [anon_sym_u128] = ACTIONS(2280), + [anon_sym_i128] = ACTIONS(2280), + [anon_sym_isize] = ACTIONS(2280), + [anon_sym_usize] = ACTIONS(2280), + [anon_sym_f32] = ACTIONS(2280), + [anon_sym_f64] = ACTIONS(2280), + [anon_sym_bool] = ACTIONS(2280), + [anon_sym_str] = ACTIONS(2280), + [anon_sym_char] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2278), + [anon_sym_DOT_DOT] = ACTIONS(2278), + [anon_sym_COLON_COLON] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_default] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_gen] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_impl] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_loop] = ACTIONS(2280), + [anon_sym_match] = ACTIONS(2280), + [anon_sym_mod] = ACTIONS(2280), + [anon_sym_pub] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_struct] = ACTIONS(2280), + [anon_sym_trait] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_union] = ACTIONS(2280), + [anon_sym_unsafe] = ACTIONS(2280), + [anon_sym_use] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_extern] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_move] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [sym_integer_literal] = ACTIONS(2278), + [aux_sym_string_literal_token1] = ACTIONS(2278), + [sym_char_literal] = ACTIONS(2278), + [anon_sym_true] = ACTIONS(2280), + [anon_sym_false] = ACTIONS(2280), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_crate] = ACTIONS(2280), + [sym_metavariable] = ACTIONS(2278), + [sym__raw_string_literal_start] = ACTIONS(2278), + [sym_float_literal] = ACTIONS(2278), }, [STATE(615)] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_identifier] = ACTIONS(2346), - [anon_sym_SEMI] = ACTIONS(2344), - [anon_sym_macro_rules_BANG] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2344), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_u8] = ACTIONS(2346), - [anon_sym_i8] = ACTIONS(2346), - [anon_sym_u16] = ACTIONS(2346), - [anon_sym_i16] = ACTIONS(2346), - [anon_sym_u32] = ACTIONS(2346), - [anon_sym_i32] = ACTIONS(2346), - [anon_sym_u64] = ACTIONS(2346), - [anon_sym_i64] = ACTIONS(2346), - [anon_sym_u128] = ACTIONS(2346), - [anon_sym_i128] = ACTIONS(2346), - [anon_sym_isize] = ACTIONS(2346), - [anon_sym_usize] = ACTIONS(2346), - [anon_sym_f32] = ACTIONS(2346), - [anon_sym_f64] = ACTIONS(2346), - [anon_sym_bool] = ACTIONS(2346), - [anon_sym_str] = ACTIONS(2346), - [anon_sym_char] = ACTIONS(2346), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_DOT_DOT] = ACTIONS(2344), - [anon_sym_COLON_COLON] = ACTIONS(2344), - [anon_sym_POUND] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [anon_sym_async] = ACTIONS(2346), - [anon_sym_break] = ACTIONS(2346), - [anon_sym_const] = ACTIONS(2346), - [anon_sym_continue] = ACTIONS(2346), - [anon_sym_default] = ACTIONS(2346), - [anon_sym_enum] = ACTIONS(2346), - [anon_sym_fn] = ACTIONS(2346), - [anon_sym_for] = ACTIONS(2346), - [anon_sym_gen] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2346), - [anon_sym_impl] = ACTIONS(2346), - [anon_sym_let] = ACTIONS(2346), - [anon_sym_loop] = ACTIONS(2346), - [anon_sym_match] = ACTIONS(2346), - [anon_sym_mod] = ACTIONS(2346), - [anon_sym_pub] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2346), - [anon_sym_static] = ACTIONS(2346), - [anon_sym_struct] = ACTIONS(2346), - [anon_sym_trait] = ACTIONS(2346), - [anon_sym_type] = ACTIONS(2346), - [anon_sym_union] = ACTIONS(2346), - [anon_sym_unsafe] = ACTIONS(2346), - [anon_sym_use] = ACTIONS(2346), - [anon_sym_while] = ACTIONS(2346), - [anon_sym_extern] = ACTIONS(2346), - [anon_sym_yield] = ACTIONS(2346), - [anon_sym_move] = ACTIONS(2346), - [anon_sym_try] = ACTIONS(2346), - [sym_integer_literal] = ACTIONS(2344), - [aux_sym_string_literal_token1] = ACTIONS(2344), - [sym_char_literal] = ACTIONS(2344), - [anon_sym_true] = ACTIONS(2346), - [anon_sym_false] = ACTIONS(2346), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2346), - [sym_super] = ACTIONS(2346), - [sym_crate] = ACTIONS(2346), - [sym_metavariable] = ACTIONS(2344), - [sym__raw_string_literal_start] = ACTIONS(2344), - [sym_float_literal] = ACTIONS(2344), + [ts_builtin_sym_end] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_macro_rules_BANG] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_u8] = ACTIONS(2284), + [anon_sym_i8] = ACTIONS(2284), + [anon_sym_u16] = ACTIONS(2284), + [anon_sym_i16] = ACTIONS(2284), + [anon_sym_u32] = ACTIONS(2284), + [anon_sym_i32] = ACTIONS(2284), + [anon_sym_u64] = ACTIONS(2284), + [anon_sym_i64] = ACTIONS(2284), + [anon_sym_u128] = ACTIONS(2284), + [anon_sym_i128] = ACTIONS(2284), + [anon_sym_isize] = ACTIONS(2284), + [anon_sym_usize] = ACTIONS(2284), + [anon_sym_f32] = ACTIONS(2284), + [anon_sym_f64] = ACTIONS(2284), + [anon_sym_bool] = ACTIONS(2284), + [anon_sym_str] = ACTIONS(2284), + [anon_sym_char] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_DOT_DOT] = ACTIONS(2282), + [anon_sym_COLON_COLON] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(2282), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [anon_sym_fn] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_gen] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_impl] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_loop] = ACTIONS(2284), + [anon_sym_match] = ACTIONS(2284), + [anon_sym_mod] = ACTIONS(2284), + [anon_sym_pub] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(2284), + [anon_sym_trait] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_union] = ACTIONS(2284), + [anon_sym_unsafe] = ACTIONS(2284), + [anon_sym_use] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_extern] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_move] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [sym_integer_literal] = ACTIONS(2282), + [aux_sym_string_literal_token1] = ACTIONS(2282), + [sym_char_literal] = ACTIONS(2282), + [anon_sym_true] = ACTIONS(2284), + [anon_sym_false] = ACTIONS(2284), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_crate] = ACTIONS(2284), + [sym_metavariable] = ACTIONS(2282), + [sym__raw_string_literal_start] = ACTIONS(2282), + [sym_float_literal] = ACTIONS(2282), }, [STATE(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2348), - [anon_sym_macro_rules_BANG] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_LBRACK] = ACTIONS(2348), - [anon_sym_LBRACE] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_STAR] = ACTIONS(2348), - [anon_sym_u8] = ACTIONS(2350), - [anon_sym_i8] = ACTIONS(2350), - [anon_sym_u16] = ACTIONS(2350), - [anon_sym_i16] = ACTIONS(2350), - [anon_sym_u32] = ACTIONS(2350), - [anon_sym_i32] = ACTIONS(2350), - [anon_sym_u64] = ACTIONS(2350), - [anon_sym_i64] = ACTIONS(2350), - [anon_sym_u128] = ACTIONS(2350), - [anon_sym_i128] = ACTIONS(2350), - [anon_sym_isize] = ACTIONS(2350), - [anon_sym_usize] = ACTIONS(2350), - [anon_sym_f32] = ACTIONS(2350), - [anon_sym_f64] = ACTIONS(2350), - [anon_sym_bool] = ACTIONS(2350), - [anon_sym_str] = ACTIONS(2350), - [anon_sym_char] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_BANG] = ACTIONS(2348), - [anon_sym_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2348), - [anon_sym_LT] = ACTIONS(2348), - [anon_sym_DOT_DOT] = ACTIONS(2348), - [anon_sym_COLON_COLON] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(2348), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [anon_sym_fn] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_gen] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_impl] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_loop] = ACTIONS(2350), - [anon_sym_match] = ACTIONS(2350), - [anon_sym_mod] = ACTIONS(2350), - [anon_sym_pub] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_struct] = ACTIONS(2350), - [anon_sym_trait] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_union] = ACTIONS(2350), - [anon_sym_unsafe] = ACTIONS(2350), - [anon_sym_use] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_extern] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_move] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [sym_integer_literal] = ACTIONS(2348), - [aux_sym_string_literal_token1] = ACTIONS(2348), - [sym_char_literal] = ACTIONS(2348), - [anon_sym_true] = ACTIONS(2350), - [anon_sym_false] = ACTIONS(2350), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_crate] = ACTIONS(2350), - [sym_metavariable] = ACTIONS(2348), - [sym__raw_string_literal_start] = ACTIONS(2348), - [sym_float_literal] = ACTIONS(2348), + [ts_builtin_sym_end] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_macro_rules_BANG] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_u8] = ACTIONS(2288), + [anon_sym_i8] = ACTIONS(2288), + [anon_sym_u16] = ACTIONS(2288), + [anon_sym_i16] = ACTIONS(2288), + [anon_sym_u32] = ACTIONS(2288), + [anon_sym_i32] = ACTIONS(2288), + [anon_sym_u64] = ACTIONS(2288), + [anon_sym_i64] = ACTIONS(2288), + [anon_sym_u128] = ACTIONS(2288), + [anon_sym_i128] = ACTIONS(2288), + [anon_sym_isize] = ACTIONS(2288), + [anon_sym_usize] = ACTIONS(2288), + [anon_sym_f32] = ACTIONS(2288), + [anon_sym_f64] = ACTIONS(2288), + [anon_sym_bool] = ACTIONS(2288), + [anon_sym_str] = ACTIONS(2288), + [anon_sym_char] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_DOT_DOT] = ACTIONS(2286), + [anon_sym_COLON_COLON] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [anon_sym_fn] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_gen] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_impl] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_loop] = ACTIONS(2288), + [anon_sym_match] = ACTIONS(2288), + [anon_sym_mod] = ACTIONS(2288), + [anon_sym_pub] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_struct] = ACTIONS(2288), + [anon_sym_trait] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_union] = ACTIONS(2288), + [anon_sym_unsafe] = ACTIONS(2288), + [anon_sym_use] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_extern] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_move] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [sym_integer_literal] = ACTIONS(2286), + [aux_sym_string_literal_token1] = ACTIONS(2286), + [sym_char_literal] = ACTIONS(2286), + [anon_sym_true] = ACTIONS(2288), + [anon_sym_false] = ACTIONS(2288), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_crate] = ACTIONS(2288), + [sym_metavariable] = ACTIONS(2286), + [sym__raw_string_literal_start] = ACTIONS(2286), + [sym_float_literal] = ACTIONS(2286), }, [STATE(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2352), - [sym_identifier] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_macro_rules_BANG] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_LBRACK] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_STAR] = ACTIONS(2352), - [anon_sym_u8] = ACTIONS(2354), - [anon_sym_i8] = ACTIONS(2354), - [anon_sym_u16] = ACTIONS(2354), - [anon_sym_i16] = ACTIONS(2354), - [anon_sym_u32] = ACTIONS(2354), - [anon_sym_i32] = ACTIONS(2354), - [anon_sym_u64] = ACTIONS(2354), - [anon_sym_i64] = ACTIONS(2354), - [anon_sym_u128] = ACTIONS(2354), - [anon_sym_i128] = ACTIONS(2354), - [anon_sym_isize] = ACTIONS(2354), - [anon_sym_usize] = ACTIONS(2354), - [anon_sym_f32] = ACTIONS(2354), - [anon_sym_f64] = ACTIONS(2354), - [anon_sym_bool] = ACTIONS(2354), - [anon_sym_str] = ACTIONS(2354), - [anon_sym_char] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_AMP] = ACTIONS(2352), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_DOT_DOT] = ACTIONS(2352), - [anon_sym_COLON_COLON] = ACTIONS(2352), - [anon_sym_POUND] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [anon_sym_fn] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_gen] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_impl] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_loop] = ACTIONS(2354), - [anon_sym_match] = ACTIONS(2354), - [anon_sym_mod] = ACTIONS(2354), - [anon_sym_pub] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_struct] = ACTIONS(2354), - [anon_sym_trait] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_union] = ACTIONS(2354), - [anon_sym_unsafe] = ACTIONS(2354), - [anon_sym_use] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_extern] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_move] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [sym_integer_literal] = ACTIONS(2352), - [aux_sym_string_literal_token1] = ACTIONS(2352), - [sym_char_literal] = ACTIONS(2352), - [anon_sym_true] = ACTIONS(2354), - [anon_sym_false] = ACTIONS(2354), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_crate] = ACTIONS(2354), - [sym_metavariable] = ACTIONS(2352), - [sym__raw_string_literal_start] = ACTIONS(2352), - [sym_float_literal] = ACTIONS(2352), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_macro_rules_BANG] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_u8] = ACTIONS(2292), + [anon_sym_i8] = ACTIONS(2292), + [anon_sym_u16] = ACTIONS(2292), + [anon_sym_i16] = ACTIONS(2292), + [anon_sym_u32] = ACTIONS(2292), + [anon_sym_i32] = ACTIONS(2292), + [anon_sym_u64] = ACTIONS(2292), + [anon_sym_i64] = ACTIONS(2292), + [anon_sym_u128] = ACTIONS(2292), + [anon_sym_i128] = ACTIONS(2292), + [anon_sym_isize] = ACTIONS(2292), + [anon_sym_usize] = ACTIONS(2292), + [anon_sym_f32] = ACTIONS(2292), + [anon_sym_f64] = ACTIONS(2292), + [anon_sym_bool] = ACTIONS(2292), + [anon_sym_str] = ACTIONS(2292), + [anon_sym_char] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2290), + [anon_sym_DOT_DOT] = ACTIONS(2290), + [anon_sym_COLON_COLON] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(2290), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [anon_sym_fn] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_gen] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_impl] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_loop] = ACTIONS(2292), + [anon_sym_match] = ACTIONS(2292), + [anon_sym_mod] = ACTIONS(2292), + [anon_sym_pub] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_struct] = ACTIONS(2292), + [anon_sym_trait] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_union] = ACTIONS(2292), + [anon_sym_unsafe] = ACTIONS(2292), + [anon_sym_use] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_move] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [sym_integer_literal] = ACTIONS(2290), + [aux_sym_string_literal_token1] = ACTIONS(2290), + [sym_char_literal] = ACTIONS(2290), + [anon_sym_true] = ACTIONS(2292), + [anon_sym_false] = ACTIONS(2292), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(2290), + [sym__raw_string_literal_start] = ACTIONS(2290), + [sym_float_literal] = ACTIONS(2290), }, [STATE(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2356), - [sym_identifier] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2356), - [anon_sym_macro_rules_BANG] = ACTIONS(2356), - [anon_sym_LPAREN] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2356), - [anon_sym_RBRACE] = ACTIONS(2356), - [anon_sym_STAR] = ACTIONS(2356), - [anon_sym_u8] = ACTIONS(2358), - [anon_sym_i8] = ACTIONS(2358), - [anon_sym_u16] = ACTIONS(2358), - [anon_sym_i16] = ACTIONS(2358), - [anon_sym_u32] = ACTIONS(2358), - [anon_sym_i32] = ACTIONS(2358), - [anon_sym_u64] = ACTIONS(2358), - [anon_sym_i64] = ACTIONS(2358), - [anon_sym_u128] = ACTIONS(2358), - [anon_sym_i128] = ACTIONS(2358), - [anon_sym_isize] = ACTIONS(2358), - [anon_sym_usize] = ACTIONS(2358), - [anon_sym_f32] = ACTIONS(2358), - [anon_sym_f64] = ACTIONS(2358), - [anon_sym_bool] = ACTIONS(2358), - [anon_sym_str] = ACTIONS(2358), - [anon_sym_char] = ACTIONS(2358), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_BANG] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2356), - [anon_sym_DOT_DOT] = ACTIONS(2356), - [anon_sym_COLON_COLON] = ACTIONS(2356), - [anon_sym_POUND] = ACTIONS(2356), - [anon_sym_SQUOTE] = ACTIONS(2358), - [anon_sym_async] = ACTIONS(2358), - [anon_sym_break] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2358), - [anon_sym_continue] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2358), - [anon_sym_enum] = ACTIONS(2358), - [anon_sym_fn] = ACTIONS(2358), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_gen] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2358), - [anon_sym_impl] = ACTIONS(2358), - [anon_sym_let] = ACTIONS(2358), - [anon_sym_loop] = ACTIONS(2358), - [anon_sym_match] = ACTIONS(2358), - [anon_sym_mod] = ACTIONS(2358), - [anon_sym_pub] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_struct] = ACTIONS(2358), - [anon_sym_trait] = ACTIONS(2358), - [anon_sym_type] = ACTIONS(2358), - [anon_sym_union] = ACTIONS(2358), - [anon_sym_unsafe] = ACTIONS(2358), - [anon_sym_use] = ACTIONS(2358), - [anon_sym_while] = ACTIONS(2358), - [anon_sym_extern] = ACTIONS(2358), - [anon_sym_yield] = ACTIONS(2358), - [anon_sym_move] = ACTIONS(2358), - [anon_sym_try] = ACTIONS(2358), - [sym_integer_literal] = ACTIONS(2356), - [aux_sym_string_literal_token1] = ACTIONS(2356), - [sym_char_literal] = ACTIONS(2356), - [anon_sym_true] = ACTIONS(2358), - [anon_sym_false] = ACTIONS(2358), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2358), - [sym_super] = ACTIONS(2358), - [sym_crate] = ACTIONS(2358), - [sym_metavariable] = ACTIONS(2356), - [sym__raw_string_literal_start] = ACTIONS(2356), - [sym_float_literal] = ACTIONS(2356), + [ts_builtin_sym_end] = ACTIONS(2294), + [sym_identifier] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_macro_rules_BANG] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_u8] = ACTIONS(2296), + [anon_sym_i8] = ACTIONS(2296), + [anon_sym_u16] = ACTIONS(2296), + [anon_sym_i16] = ACTIONS(2296), + [anon_sym_u32] = ACTIONS(2296), + [anon_sym_i32] = ACTIONS(2296), + [anon_sym_u64] = ACTIONS(2296), + [anon_sym_i64] = ACTIONS(2296), + [anon_sym_u128] = ACTIONS(2296), + [anon_sym_i128] = ACTIONS(2296), + [anon_sym_isize] = ACTIONS(2296), + [anon_sym_usize] = ACTIONS(2296), + [anon_sym_f32] = ACTIONS(2296), + [anon_sym_f64] = ACTIONS(2296), + [anon_sym_bool] = ACTIONS(2296), + [anon_sym_str] = ACTIONS(2296), + [anon_sym_char] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_DOT_DOT] = ACTIONS(2294), + [anon_sym_COLON_COLON] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [anon_sym_fn] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_gen] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_impl] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_loop] = ACTIONS(2296), + [anon_sym_match] = ACTIONS(2296), + [anon_sym_mod] = ACTIONS(2296), + [anon_sym_pub] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_struct] = ACTIONS(2296), + [anon_sym_trait] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_union] = ACTIONS(2296), + [anon_sym_unsafe] = ACTIONS(2296), + [anon_sym_use] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_extern] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_move] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [sym_integer_literal] = ACTIONS(2294), + [aux_sym_string_literal_token1] = ACTIONS(2294), + [sym_char_literal] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2296), + [anon_sym_false] = ACTIONS(2296), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_crate] = ACTIONS(2296), + [sym_metavariable] = ACTIONS(2294), + [sym__raw_string_literal_start] = ACTIONS(2294), + [sym_float_literal] = ACTIONS(2294), }, [STATE(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2360), - [sym_identifier] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_macro_rules_BANG] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_LBRACK] = ACTIONS(2360), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2360), - [anon_sym_u8] = ACTIONS(2362), - [anon_sym_i8] = ACTIONS(2362), - [anon_sym_u16] = ACTIONS(2362), - [anon_sym_i16] = ACTIONS(2362), - [anon_sym_u32] = ACTIONS(2362), - [anon_sym_i32] = ACTIONS(2362), - [anon_sym_u64] = ACTIONS(2362), - [anon_sym_i64] = ACTIONS(2362), - [anon_sym_u128] = ACTIONS(2362), - [anon_sym_i128] = ACTIONS(2362), - [anon_sym_isize] = ACTIONS(2362), - [anon_sym_usize] = ACTIONS(2362), - [anon_sym_f32] = ACTIONS(2362), - [anon_sym_f64] = ACTIONS(2362), - [anon_sym_bool] = ACTIONS(2362), - [anon_sym_str] = ACTIONS(2362), - [anon_sym_char] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2360), - [anon_sym_BANG] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_LT] = ACTIONS(2360), - [anon_sym_DOT_DOT] = ACTIONS(2360), - [anon_sym_COLON_COLON] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [anon_sym_fn] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_gen] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_impl] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_mod] = ACTIONS(2362), - [anon_sym_pub] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_struct] = ACTIONS(2362), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_union] = ACTIONS(2362), - [anon_sym_unsafe] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_move] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [sym_integer_literal] = ACTIONS(2360), - [aux_sym_string_literal_token1] = ACTIONS(2360), - [sym_char_literal] = ACTIONS(2360), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_crate] = ACTIONS(2362), - [sym_metavariable] = ACTIONS(2360), - [sym__raw_string_literal_start] = ACTIONS(2360), - [sym_float_literal] = ACTIONS(2360), + [ts_builtin_sym_end] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_macro_rules_BANG] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_u8] = ACTIONS(2300), + [anon_sym_i8] = ACTIONS(2300), + [anon_sym_u16] = ACTIONS(2300), + [anon_sym_i16] = ACTIONS(2300), + [anon_sym_u32] = ACTIONS(2300), + [anon_sym_i32] = ACTIONS(2300), + [anon_sym_u64] = ACTIONS(2300), + [anon_sym_i64] = ACTIONS(2300), + [anon_sym_u128] = ACTIONS(2300), + [anon_sym_i128] = ACTIONS(2300), + [anon_sym_isize] = ACTIONS(2300), + [anon_sym_usize] = ACTIONS(2300), + [anon_sym_f32] = ACTIONS(2300), + [anon_sym_f64] = ACTIONS(2300), + [anon_sym_bool] = ACTIONS(2300), + [anon_sym_str] = ACTIONS(2300), + [anon_sym_char] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_DOT_DOT] = ACTIONS(2298), + [anon_sym_COLON_COLON] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [anon_sym_fn] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_gen] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_impl] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_mod] = ACTIONS(2300), + [anon_sym_pub] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_struct] = ACTIONS(2300), + [anon_sym_trait] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_union] = ACTIONS(2300), + [anon_sym_unsafe] = ACTIONS(2300), + [anon_sym_use] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_extern] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_move] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [sym_integer_literal] = ACTIONS(2298), + [aux_sym_string_literal_token1] = ACTIONS(2298), + [sym_char_literal] = ACTIONS(2298), + [anon_sym_true] = ACTIONS(2300), + [anon_sym_false] = ACTIONS(2300), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_crate] = ACTIONS(2300), + [sym_metavariable] = ACTIONS(2298), + [sym__raw_string_literal_start] = ACTIONS(2298), + [sym_float_literal] = ACTIONS(2298), }, [STATE(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2366), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_macro_rules_BANG] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_LBRACK] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_u8] = ACTIONS(2366), - [anon_sym_i8] = ACTIONS(2366), - [anon_sym_u16] = ACTIONS(2366), - [anon_sym_i16] = ACTIONS(2366), - [anon_sym_u32] = ACTIONS(2366), - [anon_sym_i32] = ACTIONS(2366), - [anon_sym_u64] = ACTIONS(2366), - [anon_sym_i64] = ACTIONS(2366), - [anon_sym_u128] = ACTIONS(2366), - [anon_sym_i128] = ACTIONS(2366), - [anon_sym_isize] = ACTIONS(2366), - [anon_sym_usize] = ACTIONS(2366), - [anon_sym_f32] = ACTIONS(2366), - [anon_sym_f64] = ACTIONS(2366), - [anon_sym_bool] = ACTIONS(2366), - [anon_sym_str] = ACTIONS(2366), - [anon_sym_char] = ACTIONS(2366), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_BANG] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_DOT_DOT] = ACTIONS(2364), - [anon_sym_COLON_COLON] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(2364), - [anon_sym_SQUOTE] = ACTIONS(2366), - [anon_sym_async] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_default] = ACTIONS(2366), - [anon_sym_enum] = ACTIONS(2366), - [anon_sym_fn] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_gen] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_impl] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_mod] = ACTIONS(2366), - [anon_sym_pub] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_static] = ACTIONS(2366), - [anon_sym_struct] = ACTIONS(2366), - [anon_sym_trait] = ACTIONS(2366), - [anon_sym_type] = ACTIONS(2366), - [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_yield] = ACTIONS(2366), - [anon_sym_move] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2366), - [sym_integer_literal] = ACTIONS(2364), - [aux_sym_string_literal_token1] = ACTIONS(2364), - [sym_char_literal] = ACTIONS(2364), - [anon_sym_true] = ACTIONS(2366), - [anon_sym_false] = ACTIONS(2366), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2366), - [sym_super] = ACTIONS(2366), - [sym_crate] = ACTIONS(2366), - [sym_metavariable] = ACTIONS(2364), - [sym__raw_string_literal_start] = ACTIONS(2364), - [sym_float_literal] = ACTIONS(2364), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_macro_rules_BANG] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2302), + [anon_sym_u8] = ACTIONS(2304), + [anon_sym_i8] = ACTIONS(2304), + [anon_sym_u16] = ACTIONS(2304), + [anon_sym_i16] = ACTIONS(2304), + [anon_sym_u32] = ACTIONS(2304), + [anon_sym_i32] = ACTIONS(2304), + [anon_sym_u64] = ACTIONS(2304), + [anon_sym_i64] = ACTIONS(2304), + [anon_sym_u128] = ACTIONS(2304), + [anon_sym_i128] = ACTIONS(2304), + [anon_sym_isize] = ACTIONS(2304), + [anon_sym_usize] = ACTIONS(2304), + [anon_sym_f32] = ACTIONS(2304), + [anon_sym_f64] = ACTIONS(2304), + [anon_sym_bool] = ACTIONS(2304), + [anon_sym_str] = ACTIONS(2304), + [anon_sym_char] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_AMP] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_DOT_DOT] = ACTIONS(2302), + [anon_sym_COLON_COLON] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [anon_sym_fn] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_gen] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_impl] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_mod] = ACTIONS(2304), + [anon_sym_pub] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_struct] = ACTIONS(2304), + [anon_sym_trait] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_union] = ACTIONS(2304), + [anon_sym_unsafe] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_move] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [sym_integer_literal] = ACTIONS(2302), + [aux_sym_string_literal_token1] = ACTIONS(2302), + [sym_char_literal] = ACTIONS(2302), + [anon_sym_true] = ACTIONS(2304), + [anon_sym_false] = ACTIONS(2304), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_crate] = ACTIONS(2304), + [sym_metavariable] = ACTIONS(2302), + [sym__raw_string_literal_start] = ACTIONS(2302), + [sym_float_literal] = ACTIONS(2302), }, [STATE(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2368), - [sym_identifier] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2368), - [anon_sym_macro_rules_BANG] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2368), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2368), - [anon_sym_u8] = ACTIONS(2370), - [anon_sym_i8] = ACTIONS(2370), - [anon_sym_u16] = ACTIONS(2370), - [anon_sym_i16] = ACTIONS(2370), - [anon_sym_u32] = ACTIONS(2370), - [anon_sym_i32] = ACTIONS(2370), - [anon_sym_u64] = ACTIONS(2370), - [anon_sym_i64] = ACTIONS(2370), - [anon_sym_u128] = ACTIONS(2370), - [anon_sym_i128] = ACTIONS(2370), - [anon_sym_isize] = ACTIONS(2370), - [anon_sym_usize] = ACTIONS(2370), - [anon_sym_f32] = ACTIONS(2370), - [anon_sym_f64] = ACTIONS(2370), - [anon_sym_bool] = ACTIONS(2370), - [anon_sym_str] = ACTIONS(2370), - [anon_sym_char] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_LT] = ACTIONS(2368), - [anon_sym_DOT_DOT] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(2368), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_default] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - [anon_sym_fn] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_gen] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_impl] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_loop] = ACTIONS(2370), - [anon_sym_match] = ACTIONS(2370), - [anon_sym_mod] = ACTIONS(2370), - [anon_sym_pub] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_struct] = ACTIONS(2370), - [anon_sym_trait] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_union] = ACTIONS(2370), - [anon_sym_unsafe] = ACTIONS(2370), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2370), - [anon_sym_yield] = ACTIONS(2370), - [anon_sym_move] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [sym_integer_literal] = ACTIONS(2368), - [aux_sym_string_literal_token1] = ACTIONS(2368), - [sym_char_literal] = ACTIONS(2368), - [anon_sym_true] = ACTIONS(2370), - [anon_sym_false] = ACTIONS(2370), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2370), - [sym_super] = ACTIONS(2370), - [sym_crate] = ACTIONS(2370), - [sym_metavariable] = ACTIONS(2368), - [sym__raw_string_literal_start] = ACTIONS(2368), - [sym_float_literal] = ACTIONS(2368), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_macro_rules_BANG] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_u8] = ACTIONS(2308), + [anon_sym_i8] = ACTIONS(2308), + [anon_sym_u16] = ACTIONS(2308), + [anon_sym_i16] = ACTIONS(2308), + [anon_sym_u32] = ACTIONS(2308), + [anon_sym_i32] = ACTIONS(2308), + [anon_sym_u64] = ACTIONS(2308), + [anon_sym_i64] = ACTIONS(2308), + [anon_sym_u128] = ACTIONS(2308), + [anon_sym_i128] = ACTIONS(2308), + [anon_sym_isize] = ACTIONS(2308), + [anon_sym_usize] = ACTIONS(2308), + [anon_sym_f32] = ACTIONS(2308), + [anon_sym_f64] = ACTIONS(2308), + [anon_sym_bool] = ACTIONS(2308), + [anon_sym_str] = ACTIONS(2308), + [anon_sym_char] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_BANG] = ACTIONS(2306), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [anon_sym_fn] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_gen] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_impl] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_mod] = ACTIONS(2308), + [anon_sym_pub] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_struct] = ACTIONS(2308), + [anon_sym_trait] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_union] = ACTIONS(2308), + [anon_sym_unsafe] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_move] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [sym_integer_literal] = ACTIONS(2306), + [aux_sym_string_literal_token1] = ACTIONS(2306), + [sym_char_literal] = ACTIONS(2306), + [anon_sym_true] = ACTIONS(2308), + [anon_sym_false] = ACTIONS(2308), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_crate] = ACTIONS(2308), + [sym_metavariable] = ACTIONS(2306), + [sym__raw_string_literal_start] = ACTIONS(2306), + [sym_float_literal] = ACTIONS(2306), }, [STATE(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2372), - [anon_sym_macro_rules_BANG] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_u8] = ACTIONS(2374), - [anon_sym_i8] = ACTIONS(2374), - [anon_sym_u16] = ACTIONS(2374), - [anon_sym_i16] = ACTIONS(2374), - [anon_sym_u32] = ACTIONS(2374), - [anon_sym_i32] = ACTIONS(2374), - [anon_sym_u64] = ACTIONS(2374), - [anon_sym_i64] = ACTIONS(2374), - [anon_sym_u128] = ACTIONS(2374), - [anon_sym_i128] = ACTIONS(2374), - [anon_sym_isize] = ACTIONS(2374), - [anon_sym_usize] = ACTIONS(2374), - [anon_sym_f32] = ACTIONS(2374), - [anon_sym_f64] = ACTIONS(2374), - [anon_sym_bool] = ACTIONS(2374), - [anon_sym_str] = ACTIONS(2374), - [anon_sym_char] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_DOT_DOT] = ACTIONS(2372), - [anon_sym_COLON_COLON] = ACTIONS(2372), - [anon_sym_POUND] = ACTIONS(2372), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [anon_sym_fn] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_gen] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_impl] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_loop] = ACTIONS(2374), - [anon_sym_match] = ACTIONS(2374), - [anon_sym_mod] = ACTIONS(2374), - [anon_sym_pub] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_struct] = ACTIONS(2374), - [anon_sym_trait] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_union] = ACTIONS(2374), - [anon_sym_unsafe] = ACTIONS(2374), - [anon_sym_use] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_move] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [sym_integer_literal] = ACTIONS(2372), - [aux_sym_string_literal_token1] = ACTIONS(2372), - [sym_char_literal] = ACTIONS(2372), - [anon_sym_true] = ACTIONS(2374), - [anon_sym_false] = ACTIONS(2374), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2374), - [sym_metavariable] = ACTIONS(2372), - [sym__raw_string_literal_start] = ACTIONS(2372), - [sym_float_literal] = ACTIONS(2372), + [ts_builtin_sym_end] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2312), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_macro_rules_BANG] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_u8] = ACTIONS(2312), + [anon_sym_i8] = ACTIONS(2312), + [anon_sym_u16] = ACTIONS(2312), + [anon_sym_i16] = ACTIONS(2312), + [anon_sym_u32] = ACTIONS(2312), + [anon_sym_i32] = ACTIONS(2312), + [anon_sym_u64] = ACTIONS(2312), + [anon_sym_i64] = ACTIONS(2312), + [anon_sym_u128] = ACTIONS(2312), + [anon_sym_i128] = ACTIONS(2312), + [anon_sym_isize] = ACTIONS(2312), + [anon_sym_usize] = ACTIONS(2312), + [anon_sym_f32] = ACTIONS(2312), + [anon_sym_f64] = ACTIONS(2312), + [anon_sym_bool] = ACTIONS(2312), + [anon_sym_str] = ACTIONS(2312), + [anon_sym_char] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_DOT_DOT] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2312), + [anon_sym_async] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_default] = ACTIONS(2312), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_fn] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_gen] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_impl] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_loop] = ACTIONS(2312), + [anon_sym_match] = ACTIONS(2312), + [anon_sym_mod] = ACTIONS(2312), + [anon_sym_pub] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_static] = ACTIONS(2312), + [anon_sym_struct] = ACTIONS(2312), + [anon_sym_trait] = ACTIONS(2312), + [anon_sym_type] = ACTIONS(2312), + [anon_sym_union] = ACTIONS(2312), + [anon_sym_unsafe] = ACTIONS(2312), + [anon_sym_use] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_extern] = ACTIONS(2312), + [anon_sym_yield] = ACTIONS(2312), + [anon_sym_move] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2312), + [sym_integer_literal] = ACTIONS(2310), + [aux_sym_string_literal_token1] = ACTIONS(2310), + [sym_char_literal] = ACTIONS(2310), + [anon_sym_true] = ACTIONS(2312), + [anon_sym_false] = ACTIONS(2312), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2312), + [sym_super] = ACTIONS(2312), + [sym_crate] = ACTIONS(2312), + [sym_metavariable] = ACTIONS(2310), + [sym__raw_string_literal_start] = ACTIONS(2310), + [sym_float_literal] = ACTIONS(2310), }, [STATE(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2378), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_macro_rules_BANG] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2376), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_u8] = ACTIONS(2378), - [anon_sym_i8] = ACTIONS(2378), - [anon_sym_u16] = ACTIONS(2378), - [anon_sym_i16] = ACTIONS(2378), - [anon_sym_u32] = ACTIONS(2378), - [anon_sym_i32] = ACTIONS(2378), - [anon_sym_u64] = ACTIONS(2378), - [anon_sym_i64] = ACTIONS(2378), - [anon_sym_u128] = ACTIONS(2378), - [anon_sym_i128] = ACTIONS(2378), - [anon_sym_isize] = ACTIONS(2378), - [anon_sym_usize] = ACTIONS(2378), - [anon_sym_f32] = ACTIONS(2378), - [anon_sym_f64] = ACTIONS(2378), - [anon_sym_bool] = ACTIONS(2378), - [anon_sym_str] = ACTIONS(2378), - [anon_sym_char] = ACTIONS(2378), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_DOT_DOT] = ACTIONS(2376), - [anon_sym_COLON_COLON] = ACTIONS(2376), - [anon_sym_POUND] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2378), - [anon_sym_async] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_default] = ACTIONS(2378), - [anon_sym_enum] = ACTIONS(2378), - [anon_sym_fn] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_gen] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_impl] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_loop] = ACTIONS(2378), - [anon_sym_match] = ACTIONS(2378), - [anon_sym_mod] = ACTIONS(2378), - [anon_sym_pub] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_struct] = ACTIONS(2378), - [anon_sym_trait] = ACTIONS(2378), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_union] = ACTIONS(2378), - [anon_sym_unsafe] = ACTIONS(2378), - [anon_sym_use] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_extern] = ACTIONS(2378), - [anon_sym_yield] = ACTIONS(2378), - [anon_sym_move] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2378), - [sym_integer_literal] = ACTIONS(2376), - [aux_sym_string_literal_token1] = ACTIONS(2376), - [sym_char_literal] = ACTIONS(2376), - [anon_sym_true] = ACTIONS(2378), - [anon_sym_false] = ACTIONS(2378), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2378), - [sym_super] = ACTIONS(2378), - [sym_crate] = ACTIONS(2378), - [sym_metavariable] = ACTIONS(2376), - [sym__raw_string_literal_start] = ACTIONS(2376), - [sym_float_literal] = ACTIONS(2376), + [ts_builtin_sym_end] = ACTIONS(2314), + [sym_identifier] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_macro_rules_BANG] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_u8] = ACTIONS(2316), + [anon_sym_i8] = ACTIONS(2316), + [anon_sym_u16] = ACTIONS(2316), + [anon_sym_i16] = ACTIONS(2316), + [anon_sym_u32] = ACTIONS(2316), + [anon_sym_i32] = ACTIONS(2316), + [anon_sym_u64] = ACTIONS(2316), + [anon_sym_i64] = ACTIONS(2316), + [anon_sym_u128] = ACTIONS(2316), + [anon_sym_i128] = ACTIONS(2316), + [anon_sym_isize] = ACTIONS(2316), + [anon_sym_usize] = ACTIONS(2316), + [anon_sym_f32] = ACTIONS(2316), + [anon_sym_f64] = ACTIONS(2316), + [anon_sym_bool] = ACTIONS(2316), + [anon_sym_str] = ACTIONS(2316), + [anon_sym_char] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_DOT_DOT] = ACTIONS(2314), + [anon_sym_COLON_COLON] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_default] = ACTIONS(2316), + [anon_sym_enum] = ACTIONS(2316), + [anon_sym_fn] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_gen] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_impl] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_loop] = ACTIONS(2316), + [anon_sym_match] = ACTIONS(2316), + [anon_sym_mod] = ACTIONS(2316), + [anon_sym_pub] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_static] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_trait] = ACTIONS(2316), + [anon_sym_type] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2316), + [anon_sym_unsafe] = ACTIONS(2316), + [anon_sym_use] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_yield] = ACTIONS(2316), + [anon_sym_move] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2316), + [sym_integer_literal] = ACTIONS(2314), + [aux_sym_string_literal_token1] = ACTIONS(2314), + [sym_char_literal] = ACTIONS(2314), + [anon_sym_true] = ACTIONS(2316), + [anon_sym_false] = ACTIONS(2316), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2316), + [sym_super] = ACTIONS(2316), + [sym_crate] = ACTIONS(2316), + [sym_metavariable] = ACTIONS(2314), + [sym__raw_string_literal_start] = ACTIONS(2314), + [sym_float_literal] = ACTIONS(2314), }, [STATE(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_macro_rules_BANG] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_LBRACE] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2380), - [anon_sym_u8] = ACTIONS(2382), - [anon_sym_i8] = ACTIONS(2382), - [anon_sym_u16] = ACTIONS(2382), - [anon_sym_i16] = ACTIONS(2382), - [anon_sym_u32] = ACTIONS(2382), - [anon_sym_i32] = ACTIONS(2382), - [anon_sym_u64] = ACTIONS(2382), - [anon_sym_i64] = ACTIONS(2382), - [anon_sym_u128] = ACTIONS(2382), - [anon_sym_i128] = ACTIONS(2382), - [anon_sym_isize] = ACTIONS(2382), - [anon_sym_usize] = ACTIONS(2382), - [anon_sym_f32] = ACTIONS(2382), - [anon_sym_f64] = ACTIONS(2382), - [anon_sym_bool] = ACTIONS(2382), - [anon_sym_str] = ACTIONS(2382), - [anon_sym_char] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(2380), - [anon_sym_DOT_DOT] = ACTIONS(2380), - [anon_sym_COLON_COLON] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [anon_sym_fn] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_gen] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_impl] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_loop] = ACTIONS(2382), - [anon_sym_match] = ACTIONS(2382), - [anon_sym_mod] = ACTIONS(2382), - [anon_sym_pub] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(2382), - [anon_sym_trait] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_union] = ACTIONS(2382), - [anon_sym_unsafe] = ACTIONS(2382), - [anon_sym_use] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_move] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [sym_integer_literal] = ACTIONS(2380), - [aux_sym_string_literal_token1] = ACTIONS(2380), - [sym_char_literal] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2382), - [anon_sym_false] = ACTIONS(2382), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_crate] = ACTIONS(2382), - [sym_metavariable] = ACTIONS(2380), - [sym__raw_string_literal_start] = ACTIONS(2380), - [sym_float_literal] = ACTIONS(2380), + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_macro_rules_BANG] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_u8] = ACTIONS(2320), + [anon_sym_i8] = ACTIONS(2320), + [anon_sym_u16] = ACTIONS(2320), + [anon_sym_i16] = ACTIONS(2320), + [anon_sym_u32] = ACTIONS(2320), + [anon_sym_i32] = ACTIONS(2320), + [anon_sym_u64] = ACTIONS(2320), + [anon_sym_i64] = ACTIONS(2320), + [anon_sym_u128] = ACTIONS(2320), + [anon_sym_i128] = ACTIONS(2320), + [anon_sym_isize] = ACTIONS(2320), + [anon_sym_usize] = ACTIONS(2320), + [anon_sym_f32] = ACTIONS(2320), + [anon_sym_f64] = ACTIONS(2320), + [anon_sym_bool] = ACTIONS(2320), + [anon_sym_str] = ACTIONS(2320), + [anon_sym_char] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_DOT_DOT] = ACTIONS(2318), + [anon_sym_COLON_COLON] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_async] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_const] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_default] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2320), + [anon_sym_fn] = ACTIONS(2320), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_gen] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_impl] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2320), + [anon_sym_loop] = ACTIONS(2320), + [anon_sym_match] = ACTIONS(2320), + [anon_sym_mod] = ACTIONS(2320), + [anon_sym_pub] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_static] = ACTIONS(2320), + [anon_sym_struct] = ACTIONS(2320), + [anon_sym_trait] = ACTIONS(2320), + [anon_sym_type] = ACTIONS(2320), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_unsafe] = ACTIONS(2320), + [anon_sym_use] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_extern] = ACTIONS(2320), + [anon_sym_yield] = ACTIONS(2320), + [anon_sym_move] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2320), + [sym_integer_literal] = ACTIONS(2318), + [aux_sym_string_literal_token1] = ACTIONS(2318), + [sym_char_literal] = ACTIONS(2318), + [anon_sym_true] = ACTIONS(2320), + [anon_sym_false] = ACTIONS(2320), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2320), + [sym_super] = ACTIONS(2320), + [sym_crate] = ACTIONS(2320), + [sym_metavariable] = ACTIONS(2318), + [sym__raw_string_literal_start] = ACTIONS(2318), + [sym_float_literal] = ACTIONS(2318), }, [STATE(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2384), - [sym_identifier] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_macro_rules_BANG] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_u8] = ACTIONS(2386), - [anon_sym_i8] = ACTIONS(2386), - [anon_sym_u16] = ACTIONS(2386), - [anon_sym_i16] = ACTIONS(2386), - [anon_sym_u32] = ACTIONS(2386), - [anon_sym_i32] = ACTIONS(2386), - [anon_sym_u64] = ACTIONS(2386), - [anon_sym_i64] = ACTIONS(2386), - [anon_sym_u128] = ACTIONS(2386), - [anon_sym_i128] = ACTIONS(2386), - [anon_sym_isize] = ACTIONS(2386), - [anon_sym_usize] = ACTIONS(2386), - [anon_sym_f32] = ACTIONS(2386), - [anon_sym_f64] = ACTIONS(2386), - [anon_sym_bool] = ACTIONS(2386), - [anon_sym_str] = ACTIONS(2386), - [anon_sym_char] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_DOT_DOT] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2386), - [anon_sym_async] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_default] = ACTIONS(2386), - [anon_sym_enum] = ACTIONS(2386), - [anon_sym_fn] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_gen] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_impl] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), - [anon_sym_mod] = ACTIONS(2386), - [anon_sym_pub] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_static] = ACTIONS(2386), - [anon_sym_struct] = ACTIONS(2386), - [anon_sym_trait] = ACTIONS(2386), - [anon_sym_type] = ACTIONS(2386), - [anon_sym_union] = ACTIONS(2386), - [anon_sym_unsafe] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_yield] = ACTIONS(2386), - [anon_sym_move] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [sym_integer_literal] = ACTIONS(2384), - [aux_sym_string_literal_token1] = ACTIONS(2384), - [sym_char_literal] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2386), - [anon_sym_false] = ACTIONS(2386), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2386), - [sym_super] = ACTIONS(2386), - [sym_crate] = ACTIONS(2386), - [sym_metavariable] = ACTIONS(2384), - [sym__raw_string_literal_start] = ACTIONS(2384), - [sym_float_literal] = ACTIONS(2384), + [ts_builtin_sym_end] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(2322), + [anon_sym_macro_rules_BANG] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_STAR] = ACTIONS(2322), + [anon_sym_u8] = ACTIONS(2324), + [anon_sym_i8] = ACTIONS(2324), + [anon_sym_u16] = ACTIONS(2324), + [anon_sym_i16] = ACTIONS(2324), + [anon_sym_u32] = ACTIONS(2324), + [anon_sym_i32] = ACTIONS(2324), + [anon_sym_u64] = ACTIONS(2324), + [anon_sym_i64] = ACTIONS(2324), + [anon_sym_u128] = ACTIONS(2324), + [anon_sym_i128] = ACTIONS(2324), + [anon_sym_isize] = ACTIONS(2324), + [anon_sym_usize] = ACTIONS(2324), + [anon_sym_f32] = ACTIONS(2324), + [anon_sym_f64] = ACTIONS(2324), + [anon_sym_bool] = ACTIONS(2324), + [anon_sym_str] = ACTIONS(2324), + [anon_sym_char] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2322), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2322), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_LT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(2322), + [anon_sym_COLON_COLON] = ACTIONS(2322), + [anon_sym_POUND] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2324), + [anon_sym_async] = ACTIONS(2324), + [anon_sym_break] = ACTIONS(2324), + [anon_sym_const] = ACTIONS(2324), + [anon_sym_continue] = ACTIONS(2324), + [anon_sym_default] = ACTIONS(2324), + [anon_sym_enum] = ACTIONS(2324), + [anon_sym_fn] = ACTIONS(2324), + [anon_sym_for] = ACTIONS(2324), + [anon_sym_gen] = ACTIONS(2324), + [anon_sym_if] = ACTIONS(2324), + [anon_sym_impl] = ACTIONS(2324), + [anon_sym_let] = ACTIONS(2324), + [anon_sym_loop] = ACTIONS(2324), + [anon_sym_match] = ACTIONS(2324), + [anon_sym_mod] = ACTIONS(2324), + [anon_sym_pub] = ACTIONS(2324), + [anon_sym_return] = ACTIONS(2324), + [anon_sym_static] = ACTIONS(2324), + [anon_sym_struct] = ACTIONS(2324), + [anon_sym_trait] = ACTIONS(2324), + [anon_sym_type] = ACTIONS(2324), + [anon_sym_union] = ACTIONS(2324), + [anon_sym_unsafe] = ACTIONS(2324), + [anon_sym_use] = ACTIONS(2324), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_extern] = ACTIONS(2324), + [anon_sym_yield] = ACTIONS(2324), + [anon_sym_move] = ACTIONS(2324), + [anon_sym_try] = ACTIONS(2324), + [sym_integer_literal] = ACTIONS(2322), + [aux_sym_string_literal_token1] = ACTIONS(2322), + [sym_char_literal] = ACTIONS(2322), + [anon_sym_true] = ACTIONS(2324), + [anon_sym_false] = ACTIONS(2324), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2324), + [sym_super] = ACTIONS(2324), + [sym_crate] = ACTIONS(2324), + [sym_metavariable] = ACTIONS(2322), + [sym__raw_string_literal_start] = ACTIONS(2322), + [sym_float_literal] = ACTIONS(2322), }, [STATE(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_macro_rules_BANG] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_u8] = ACTIONS(2390), - [anon_sym_i8] = ACTIONS(2390), - [anon_sym_u16] = ACTIONS(2390), - [anon_sym_i16] = ACTIONS(2390), - [anon_sym_u32] = ACTIONS(2390), - [anon_sym_i32] = ACTIONS(2390), - [anon_sym_u64] = ACTIONS(2390), - [anon_sym_i64] = ACTIONS(2390), - [anon_sym_u128] = ACTIONS(2390), - [anon_sym_i128] = ACTIONS(2390), - [anon_sym_isize] = ACTIONS(2390), - [anon_sym_usize] = ACTIONS(2390), - [anon_sym_f32] = ACTIONS(2390), - [anon_sym_f64] = ACTIONS(2390), - [anon_sym_bool] = ACTIONS(2390), - [anon_sym_str] = ACTIONS(2390), - [anon_sym_char] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_LT] = ACTIONS(2388), - [anon_sym_DOT_DOT] = ACTIONS(2388), - [anon_sym_COLON_COLON] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), - [anon_sym_fn] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_gen] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_impl] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_loop] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_mod] = ACTIONS(2390), - [anon_sym_pub] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2390), - [anon_sym_trait] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_union] = ACTIONS(2390), - [anon_sym_unsafe] = ACTIONS(2390), - [anon_sym_use] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_extern] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_move] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [sym_integer_literal] = ACTIONS(2388), - [aux_sym_string_literal_token1] = ACTIONS(2388), - [sym_char_literal] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_crate] = ACTIONS(2390), - [sym_metavariable] = ACTIONS(2388), - [sym__raw_string_literal_start] = ACTIONS(2388), - [sym_float_literal] = ACTIONS(2388), + [ts_builtin_sym_end] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_macro_rules_BANG] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2326), + [anon_sym_u8] = ACTIONS(2328), + [anon_sym_i8] = ACTIONS(2328), + [anon_sym_u16] = ACTIONS(2328), + [anon_sym_i16] = ACTIONS(2328), + [anon_sym_u32] = ACTIONS(2328), + [anon_sym_i32] = ACTIONS(2328), + [anon_sym_u64] = ACTIONS(2328), + [anon_sym_i64] = ACTIONS(2328), + [anon_sym_u128] = ACTIONS(2328), + [anon_sym_i128] = ACTIONS(2328), + [anon_sym_isize] = ACTIONS(2328), + [anon_sym_usize] = ACTIONS(2328), + [anon_sym_f32] = ACTIONS(2328), + [anon_sym_f64] = ACTIONS(2328), + [anon_sym_bool] = ACTIONS(2328), + [anon_sym_str] = ACTIONS(2328), + [anon_sym_char] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_BANG] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2326), + [anon_sym_DOT_DOT] = ACTIONS(2326), + [anon_sym_COLON_COLON] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [anon_sym_fn] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_gen] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_impl] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_loop] = ACTIONS(2328), + [anon_sym_match] = ACTIONS(2328), + [anon_sym_mod] = ACTIONS(2328), + [anon_sym_pub] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_struct] = ACTIONS(2328), + [anon_sym_trait] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_union] = ACTIONS(2328), + [anon_sym_unsafe] = ACTIONS(2328), + [anon_sym_use] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_move] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [sym_integer_literal] = ACTIONS(2326), + [aux_sym_string_literal_token1] = ACTIONS(2326), + [sym_char_literal] = ACTIONS(2326), + [anon_sym_true] = ACTIONS(2328), + [anon_sym_false] = ACTIONS(2328), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_crate] = ACTIONS(2328), + [sym_metavariable] = ACTIONS(2326), + [sym__raw_string_literal_start] = ACTIONS(2326), + [sym_float_literal] = ACTIONS(2326), }, [STATE(627)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3705), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_macro_rules_BANG] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2330), + [anon_sym_u8] = ACTIONS(2332), + [anon_sym_i8] = ACTIONS(2332), + [anon_sym_u16] = ACTIONS(2332), + [anon_sym_i16] = ACTIONS(2332), + [anon_sym_u32] = ACTIONS(2332), + [anon_sym_i32] = ACTIONS(2332), + [anon_sym_u64] = ACTIONS(2332), + [anon_sym_i64] = ACTIONS(2332), + [anon_sym_u128] = ACTIONS(2332), + [anon_sym_i128] = ACTIONS(2332), + [anon_sym_isize] = ACTIONS(2332), + [anon_sym_usize] = ACTIONS(2332), + [anon_sym_f32] = ACTIONS(2332), + [anon_sym_f64] = ACTIONS(2332), + [anon_sym_bool] = ACTIONS(2332), + [anon_sym_str] = ACTIONS(2332), + [anon_sym_char] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_AMP] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_LT] = ACTIONS(2330), + [anon_sym_DOT_DOT] = ACTIONS(2330), + [anon_sym_COLON_COLON] = ACTIONS(2330), + [anon_sym_POUND] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [anon_sym_fn] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_gen] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_impl] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_loop] = ACTIONS(2332), + [anon_sym_match] = ACTIONS(2332), + [anon_sym_mod] = ACTIONS(2332), + [anon_sym_pub] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_struct] = ACTIONS(2332), + [anon_sym_trait] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_union] = ACTIONS(2332), + [anon_sym_unsafe] = ACTIONS(2332), + [anon_sym_use] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_extern] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_move] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [sym_integer_literal] = ACTIONS(2330), + [aux_sym_string_literal_token1] = ACTIONS(2330), + [sym_char_literal] = ACTIONS(2330), + [anon_sym_true] = ACTIONS(2332), + [anon_sym_false] = ACTIONS(2332), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_crate] = ACTIONS(2332), + [sym_metavariable] = ACTIONS(2330), + [sym__raw_string_literal_start] = ACTIONS(2330), + [sym_float_literal] = ACTIONS(2330), }, [STATE(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2392), - [sym_identifier] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_macro_rules_BANG] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_u8] = ACTIONS(2394), - [anon_sym_i8] = ACTIONS(2394), - [anon_sym_u16] = ACTIONS(2394), - [anon_sym_i16] = ACTIONS(2394), - [anon_sym_u32] = ACTIONS(2394), - [anon_sym_i32] = ACTIONS(2394), - [anon_sym_u64] = ACTIONS(2394), - [anon_sym_i64] = ACTIONS(2394), - [anon_sym_u128] = ACTIONS(2394), - [anon_sym_i128] = ACTIONS(2394), - [anon_sym_isize] = ACTIONS(2394), - [anon_sym_usize] = ACTIONS(2394), - [anon_sym_f32] = ACTIONS(2394), - [anon_sym_f64] = ACTIONS(2394), - [anon_sym_bool] = ACTIONS(2394), - [anon_sym_str] = ACTIONS(2394), - [anon_sym_char] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [anon_sym_fn] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_gen] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_impl] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_loop] = ACTIONS(2394), - [anon_sym_match] = ACTIONS(2394), - [anon_sym_mod] = ACTIONS(2394), - [anon_sym_pub] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_struct] = ACTIONS(2394), - [anon_sym_trait] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_union] = ACTIONS(2394), - [anon_sym_unsafe] = ACTIONS(2394), - [anon_sym_use] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_extern] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_move] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [sym_integer_literal] = ACTIONS(2392), - [aux_sym_string_literal_token1] = ACTIONS(2392), - [sym_char_literal] = ACTIONS(2392), - [anon_sym_true] = ACTIONS(2394), - [anon_sym_false] = ACTIONS(2394), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_crate] = ACTIONS(2394), - [sym_metavariable] = ACTIONS(2392), - [sym__raw_string_literal_start] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_macro_rules_BANG] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_u8] = ACTIONS(2336), + [anon_sym_i8] = ACTIONS(2336), + [anon_sym_u16] = ACTIONS(2336), + [anon_sym_i16] = ACTIONS(2336), + [anon_sym_u32] = ACTIONS(2336), + [anon_sym_i32] = ACTIONS(2336), + [anon_sym_u64] = ACTIONS(2336), + [anon_sym_i64] = ACTIONS(2336), + [anon_sym_u128] = ACTIONS(2336), + [anon_sym_i128] = ACTIONS(2336), + [anon_sym_isize] = ACTIONS(2336), + [anon_sym_usize] = ACTIONS(2336), + [anon_sym_f32] = ACTIONS(2336), + [anon_sym_f64] = ACTIONS(2336), + [anon_sym_bool] = ACTIONS(2336), + [anon_sym_str] = ACTIONS(2336), + [anon_sym_char] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_DOT_DOT] = ACTIONS(2334), + [anon_sym_COLON_COLON] = ACTIONS(2334), + [anon_sym_POUND] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), + [anon_sym_fn] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_gen] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_impl] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_loop] = ACTIONS(2336), + [anon_sym_match] = ACTIONS(2336), + [anon_sym_mod] = ACTIONS(2336), + [anon_sym_pub] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_struct] = ACTIONS(2336), + [anon_sym_trait] = ACTIONS(2336), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_union] = ACTIONS(2336), + [anon_sym_unsafe] = ACTIONS(2336), + [anon_sym_use] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_extern] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_move] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [sym_integer_literal] = ACTIONS(2334), + [aux_sym_string_literal_token1] = ACTIONS(2334), + [sym_char_literal] = ACTIONS(2334), + [anon_sym_true] = ACTIONS(2336), + [anon_sym_false] = ACTIONS(2336), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_crate] = ACTIONS(2336), + [sym_metavariable] = ACTIONS(2334), + [sym__raw_string_literal_start] = ACTIONS(2334), + [sym_float_literal] = ACTIONS(2334), }, [STATE(629)] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_macro_rules_BANG] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_u8] = ACTIONS(2398), - [anon_sym_i8] = ACTIONS(2398), - [anon_sym_u16] = ACTIONS(2398), - [anon_sym_i16] = ACTIONS(2398), - [anon_sym_u32] = ACTIONS(2398), - [anon_sym_i32] = ACTIONS(2398), - [anon_sym_u64] = ACTIONS(2398), - [anon_sym_i64] = ACTIONS(2398), - [anon_sym_u128] = ACTIONS(2398), - [anon_sym_i128] = ACTIONS(2398), - [anon_sym_isize] = ACTIONS(2398), - [anon_sym_usize] = ACTIONS(2398), - [anon_sym_f32] = ACTIONS(2398), - [anon_sym_f64] = ACTIONS(2398), - [anon_sym_bool] = ACTIONS(2398), - [anon_sym_str] = ACTIONS(2398), - [anon_sym_char] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_DOT_DOT] = ACTIONS(2396), - [anon_sym_COLON_COLON] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2396), - [anon_sym_SQUOTE] = ACTIONS(2398), - [anon_sym_async] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_gen] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_impl] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_loop] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_mod] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_static] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_trait] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_use] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_extern] = ACTIONS(2398), - [anon_sym_yield] = ACTIONS(2398), - [anon_sym_move] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [sym_integer_literal] = ACTIONS(2396), - [aux_sym_string_literal_token1] = ACTIONS(2396), - [sym_char_literal] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2398), - [sym_super] = ACTIONS(2398), - [sym_crate] = ACTIONS(2398), - [sym_metavariable] = ACTIONS(2396), - [sym__raw_string_literal_start] = ACTIONS(2396), - [sym_float_literal] = ACTIONS(2396), + [ts_builtin_sym_end] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2338), + [anon_sym_macro_rules_BANG] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_u8] = ACTIONS(2340), + [anon_sym_i8] = ACTIONS(2340), + [anon_sym_u16] = ACTIONS(2340), + [anon_sym_i16] = ACTIONS(2340), + [anon_sym_u32] = ACTIONS(2340), + [anon_sym_i32] = ACTIONS(2340), + [anon_sym_u64] = ACTIONS(2340), + [anon_sym_i64] = ACTIONS(2340), + [anon_sym_u128] = ACTIONS(2340), + [anon_sym_i128] = ACTIONS(2340), + [anon_sym_isize] = ACTIONS(2340), + [anon_sym_usize] = ACTIONS(2340), + [anon_sym_f32] = ACTIONS(2340), + [anon_sym_f64] = ACTIONS(2340), + [anon_sym_bool] = ACTIONS(2340), + [anon_sym_str] = ACTIONS(2340), + [anon_sym_char] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2338), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_DOT_DOT] = ACTIONS(2338), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(2338), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [anon_sym_fn] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_gen] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_impl] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_loop] = ACTIONS(2340), + [anon_sym_match] = ACTIONS(2340), + [anon_sym_mod] = ACTIONS(2340), + [anon_sym_pub] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_struct] = ACTIONS(2340), + [anon_sym_trait] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_union] = ACTIONS(2340), + [anon_sym_unsafe] = ACTIONS(2340), + [anon_sym_use] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_extern] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_move] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [sym_integer_literal] = ACTIONS(2338), + [aux_sym_string_literal_token1] = ACTIONS(2338), + [sym_char_literal] = ACTIONS(2338), + [anon_sym_true] = ACTIONS(2340), + [anon_sym_false] = ACTIONS(2340), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_crate] = ACTIONS(2340), + [sym_metavariable] = ACTIONS(2338), + [sym__raw_string_literal_start] = ACTIONS(2338), + [sym_float_literal] = ACTIONS(2338), }, [STATE(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_macro_rules_BANG] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_u8] = ACTIONS(2402), - [anon_sym_i8] = ACTIONS(2402), - [anon_sym_u16] = ACTIONS(2402), - [anon_sym_i16] = ACTIONS(2402), - [anon_sym_u32] = ACTIONS(2402), - [anon_sym_i32] = ACTIONS(2402), - [anon_sym_u64] = ACTIONS(2402), - [anon_sym_i64] = ACTIONS(2402), - [anon_sym_u128] = ACTIONS(2402), - [anon_sym_i128] = ACTIONS(2402), - [anon_sym_isize] = ACTIONS(2402), - [anon_sym_usize] = ACTIONS(2402), - [anon_sym_f32] = ACTIONS(2402), - [anon_sym_f64] = ACTIONS(2402), - [anon_sym_bool] = ACTIONS(2402), - [anon_sym_str] = ACTIONS(2402), - [anon_sym_char] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_DOT_DOT] = ACTIONS(2400), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [anon_sym_fn] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_gen] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_impl] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_loop] = ACTIONS(2402), - [anon_sym_match] = ACTIONS(2402), - [anon_sym_mod] = ACTIONS(2402), - [anon_sym_pub] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(2402), - [anon_sym_trait] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_union] = ACTIONS(2402), - [anon_sym_unsafe] = ACTIONS(2402), - [anon_sym_use] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_extern] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_move] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [sym_integer_literal] = ACTIONS(2400), - [aux_sym_string_literal_token1] = ACTIONS(2400), - [sym_char_literal] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2344), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_macro_rules_BANG] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_u8] = ACTIONS(2344), + [anon_sym_i8] = ACTIONS(2344), + [anon_sym_u16] = ACTIONS(2344), + [anon_sym_i16] = ACTIONS(2344), + [anon_sym_u32] = ACTIONS(2344), + [anon_sym_i32] = ACTIONS(2344), + [anon_sym_u64] = ACTIONS(2344), + [anon_sym_i64] = ACTIONS(2344), + [anon_sym_u128] = ACTIONS(2344), + [anon_sym_i128] = ACTIONS(2344), + [anon_sym_isize] = ACTIONS(2344), + [anon_sym_usize] = ACTIONS(2344), + [anon_sym_f32] = ACTIONS(2344), + [anon_sym_f64] = ACTIONS(2344), + [anon_sym_bool] = ACTIONS(2344), + [anon_sym_str] = ACTIONS(2344), + [anon_sym_char] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_DOT_DOT] = ACTIONS(2342), + [anon_sym_COLON_COLON] = ACTIONS(2342), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), + [anon_sym_fn] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_gen] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_impl] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_loop] = ACTIONS(2344), + [anon_sym_match] = ACTIONS(2344), + [anon_sym_mod] = ACTIONS(2344), + [anon_sym_pub] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_static] = ACTIONS(2344), + [anon_sym_struct] = ACTIONS(2344), + [anon_sym_trait] = ACTIONS(2344), + [anon_sym_type] = ACTIONS(2344), + [anon_sym_union] = ACTIONS(2344), + [anon_sym_unsafe] = ACTIONS(2344), + [anon_sym_use] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_extern] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2344), + [anon_sym_move] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [sym_integer_literal] = ACTIONS(2342), + [aux_sym_string_literal_token1] = ACTIONS(2342), + [sym_char_literal] = ACTIONS(2342), + [anon_sym_true] = ACTIONS(2344), + [anon_sym_false] = ACTIONS(2344), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2344), + [sym_super] = ACTIONS(2344), + [sym_crate] = ACTIONS(2344), + [sym_metavariable] = ACTIONS(2342), + [sym__raw_string_literal_start] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2342), }, [STATE(631)] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_gen] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(1429), - [anon_sym_move] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym__raw_string_literal_start] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), + [ts_builtin_sym_end] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_macro_rules_BANG] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_STAR] = ACTIONS(2346), + [anon_sym_u8] = ACTIONS(2348), + [anon_sym_i8] = ACTIONS(2348), + [anon_sym_u16] = ACTIONS(2348), + [anon_sym_i16] = ACTIONS(2348), + [anon_sym_u32] = ACTIONS(2348), + [anon_sym_i32] = ACTIONS(2348), + [anon_sym_u64] = ACTIONS(2348), + [anon_sym_i64] = ACTIONS(2348), + [anon_sym_u128] = ACTIONS(2348), + [anon_sym_i128] = ACTIONS(2348), + [anon_sym_isize] = ACTIONS(2348), + [anon_sym_usize] = ACTIONS(2348), + [anon_sym_f32] = ACTIONS(2348), + [anon_sym_f64] = ACTIONS(2348), + [anon_sym_bool] = ACTIONS(2348), + [anon_sym_str] = ACTIONS(2348), + [anon_sym_char] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_BANG] = ACTIONS(2346), + [anon_sym_AMP] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_DOT_DOT] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [anon_sym_fn] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_gen] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_impl] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_loop] = ACTIONS(2348), + [anon_sym_match] = ACTIONS(2348), + [anon_sym_mod] = ACTIONS(2348), + [anon_sym_pub] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_struct] = ACTIONS(2348), + [anon_sym_trait] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_union] = ACTIONS(2348), + [anon_sym_unsafe] = ACTIONS(2348), + [anon_sym_use] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_extern] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_move] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [sym_integer_literal] = ACTIONS(2346), + [aux_sym_string_literal_token1] = ACTIONS(2346), + [sym_char_literal] = ACTIONS(2346), + [anon_sym_true] = ACTIONS(2348), + [anon_sym_false] = ACTIONS(2348), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_crate] = ACTIONS(2348), + [sym_metavariable] = ACTIONS(2346), + [sym__raw_string_literal_start] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2346), }, [STATE(632)] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_macro_rules_BANG] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2406), - [anon_sym_i8] = ACTIONS(2406), - [anon_sym_u16] = ACTIONS(2406), - [anon_sym_i16] = ACTIONS(2406), - [anon_sym_u32] = ACTIONS(2406), - [anon_sym_i32] = ACTIONS(2406), - [anon_sym_u64] = ACTIONS(2406), - [anon_sym_i64] = ACTIONS(2406), - [anon_sym_u128] = ACTIONS(2406), - [anon_sym_i128] = ACTIONS(2406), - [anon_sym_isize] = ACTIONS(2406), - [anon_sym_usize] = ACTIONS(2406), - [anon_sym_f32] = ACTIONS(2406), - [anon_sym_f64] = ACTIONS(2406), - [anon_sym_bool] = ACTIONS(2406), - [anon_sym_str] = ACTIONS(2406), - [anon_sym_char] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(2404), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_default] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_gen] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_impl] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_mod] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_trait] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_yield] = ACTIONS(2406), - [anon_sym_move] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [sym_integer_literal] = ACTIONS(2404), - [aux_sym_string_literal_token1] = ACTIONS(2404), - [sym_char_literal] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2406), - [sym_super] = ACTIONS(2406), - [sym_crate] = ACTIONS(2406), - [sym_metavariable] = ACTIONS(2404), - [sym__raw_string_literal_start] = ACTIONS(2404), - [sym_float_literal] = ACTIONS(2404), + [ts_builtin_sym_end] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_macro_rules_BANG] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_u8] = ACTIONS(2352), + [anon_sym_i8] = ACTIONS(2352), + [anon_sym_u16] = ACTIONS(2352), + [anon_sym_i16] = ACTIONS(2352), + [anon_sym_u32] = ACTIONS(2352), + [anon_sym_i32] = ACTIONS(2352), + [anon_sym_u64] = ACTIONS(2352), + [anon_sym_i64] = ACTIONS(2352), + [anon_sym_u128] = ACTIONS(2352), + [anon_sym_i128] = ACTIONS(2352), + [anon_sym_isize] = ACTIONS(2352), + [anon_sym_usize] = ACTIONS(2352), + [anon_sym_f32] = ACTIONS(2352), + [anon_sym_f64] = ACTIONS(2352), + [anon_sym_bool] = ACTIONS(2352), + [anon_sym_str] = ACTIONS(2352), + [anon_sym_char] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_DOT_DOT] = ACTIONS(2350), + [anon_sym_COLON_COLON] = ACTIONS(2350), + [anon_sym_POUND] = ACTIONS(2350), + [anon_sym_SQUOTE] = ACTIONS(2352), + [anon_sym_async] = ACTIONS(2352), + [anon_sym_break] = ACTIONS(2352), + [anon_sym_const] = ACTIONS(2352), + [anon_sym_continue] = ACTIONS(2352), + [anon_sym_default] = ACTIONS(2352), + [anon_sym_enum] = ACTIONS(2352), + [anon_sym_fn] = ACTIONS(2352), + [anon_sym_for] = ACTIONS(2352), + [anon_sym_gen] = ACTIONS(2352), + [anon_sym_if] = ACTIONS(2352), + [anon_sym_impl] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2352), + [anon_sym_loop] = ACTIONS(2352), + [anon_sym_match] = ACTIONS(2352), + [anon_sym_mod] = ACTIONS(2352), + [anon_sym_pub] = ACTIONS(2352), + [anon_sym_return] = ACTIONS(2352), + [anon_sym_static] = ACTIONS(2352), + [anon_sym_struct] = ACTIONS(2352), + [anon_sym_trait] = ACTIONS(2352), + [anon_sym_type] = ACTIONS(2352), + [anon_sym_union] = ACTIONS(2352), + [anon_sym_unsafe] = ACTIONS(2352), + [anon_sym_use] = ACTIONS(2352), + [anon_sym_while] = ACTIONS(2352), + [anon_sym_extern] = ACTIONS(2352), + [anon_sym_yield] = ACTIONS(2352), + [anon_sym_move] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2352), + [sym_integer_literal] = ACTIONS(2350), + [aux_sym_string_literal_token1] = ACTIONS(2350), + [sym_char_literal] = ACTIONS(2350), + [anon_sym_true] = ACTIONS(2352), + [anon_sym_false] = ACTIONS(2352), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2352), + [sym_super] = ACTIONS(2352), + [sym_crate] = ACTIONS(2352), + [sym_metavariable] = ACTIONS(2350), + [sym__raw_string_literal_start] = ACTIONS(2350), + [sym_float_literal] = ACTIONS(2350), }, [STATE(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_macro_rules_BANG] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_u8] = ACTIONS(2410), - [anon_sym_i8] = ACTIONS(2410), - [anon_sym_u16] = ACTIONS(2410), - [anon_sym_i16] = ACTIONS(2410), - [anon_sym_u32] = ACTIONS(2410), - [anon_sym_i32] = ACTIONS(2410), - [anon_sym_u64] = ACTIONS(2410), - [anon_sym_i64] = ACTIONS(2410), - [anon_sym_u128] = ACTIONS(2410), - [anon_sym_i128] = ACTIONS(2410), - [anon_sym_isize] = ACTIONS(2410), - [anon_sym_usize] = ACTIONS(2410), - [anon_sym_f32] = ACTIONS(2410), - [anon_sym_f64] = ACTIONS(2410), - [anon_sym_bool] = ACTIONS(2410), - [anon_sym_str] = ACTIONS(2410), - [anon_sym_char] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_DOT_DOT] = ACTIONS(2408), - [anon_sym_COLON_COLON] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(2408), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [anon_sym_fn] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_gen] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_impl] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_mod] = ACTIONS(2410), - [anon_sym_pub] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2410), - [anon_sym_trait] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_union] = ACTIONS(2410), - [anon_sym_unsafe] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_move] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [sym_integer_literal] = ACTIONS(2408), - [aux_sym_string_literal_token1] = ACTIONS(2408), - [sym_char_literal] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_crate] = ACTIONS(2410), - [sym_metavariable] = ACTIONS(2408), - [sym__raw_string_literal_start] = ACTIONS(2408), - [sym_float_literal] = ACTIONS(2408), + [ts_builtin_sym_end] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_macro_rules_BANG] = ACTIONS(2354), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_LBRACK] = ACTIONS(2354), + [anon_sym_LBRACE] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_STAR] = ACTIONS(2354), + [anon_sym_u8] = ACTIONS(2356), + [anon_sym_i8] = ACTIONS(2356), + [anon_sym_u16] = ACTIONS(2356), + [anon_sym_i16] = ACTIONS(2356), + [anon_sym_u32] = ACTIONS(2356), + [anon_sym_i32] = ACTIONS(2356), + [anon_sym_u64] = ACTIONS(2356), + [anon_sym_i64] = ACTIONS(2356), + [anon_sym_u128] = ACTIONS(2356), + [anon_sym_i128] = ACTIONS(2356), + [anon_sym_isize] = ACTIONS(2356), + [anon_sym_usize] = ACTIONS(2356), + [anon_sym_f32] = ACTIONS(2356), + [anon_sym_f64] = ACTIONS(2356), + [anon_sym_bool] = ACTIONS(2356), + [anon_sym_str] = ACTIONS(2356), + [anon_sym_char] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_BANG] = ACTIONS(2354), + [anon_sym_AMP] = ACTIONS(2354), + [anon_sym_PIPE] = ACTIONS(2354), + [anon_sym_LT] = ACTIONS(2354), + [anon_sym_DOT_DOT] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2354), + [anon_sym_POUND] = ACTIONS(2354), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [anon_sym_fn] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_gen] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_impl] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_loop] = ACTIONS(2356), + [anon_sym_match] = ACTIONS(2356), + [anon_sym_mod] = ACTIONS(2356), + [anon_sym_pub] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_struct] = ACTIONS(2356), + [anon_sym_trait] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_union] = ACTIONS(2356), + [anon_sym_unsafe] = ACTIONS(2356), + [anon_sym_use] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_extern] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_move] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [sym_integer_literal] = ACTIONS(2354), + [aux_sym_string_literal_token1] = ACTIONS(2354), + [sym_char_literal] = ACTIONS(2354), + [anon_sym_true] = ACTIONS(2356), + [anon_sym_false] = ACTIONS(2356), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_crate] = ACTIONS(2356), + [sym_metavariable] = ACTIONS(2354), + [sym__raw_string_literal_start] = ACTIONS(2354), + [sym_float_literal] = ACTIONS(2354), }, [STATE(634)] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_macro_rules_BANG] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_STAR] = ACTIONS(2412), - [anon_sym_u8] = ACTIONS(2414), - [anon_sym_i8] = ACTIONS(2414), - [anon_sym_u16] = ACTIONS(2414), - [anon_sym_i16] = ACTIONS(2414), - [anon_sym_u32] = ACTIONS(2414), - [anon_sym_i32] = ACTIONS(2414), - [anon_sym_u64] = ACTIONS(2414), - [anon_sym_i64] = ACTIONS(2414), - [anon_sym_u128] = ACTIONS(2414), - [anon_sym_i128] = ACTIONS(2414), - [anon_sym_isize] = ACTIONS(2414), - [anon_sym_usize] = ACTIONS(2414), - [anon_sym_f32] = ACTIONS(2414), - [anon_sym_f64] = ACTIONS(2414), - [anon_sym_bool] = ACTIONS(2414), - [anon_sym_str] = ACTIONS(2414), - [anon_sym_char] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [anon_sym_COLON_COLON] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(2412), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_fn] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_gen] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_impl] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_mod] = ACTIONS(2414), - [anon_sym_pub] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_trait] = ACTIONS(2414), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_unsafe] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_yield] = ACTIONS(2414), - [anon_sym_move] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [sym_integer_literal] = ACTIONS(2412), - [aux_sym_string_literal_token1] = ACTIONS(2412), - [sym_char_literal] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2414), - [sym_super] = ACTIONS(2414), - [sym_crate] = ACTIONS(2414), - [sym_metavariable] = ACTIONS(2412), - [sym__raw_string_literal_start] = ACTIONS(2412), - [sym_float_literal] = ACTIONS(2412), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_macro_rules_BANG] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2358), + [anon_sym_u8] = ACTIONS(2360), + [anon_sym_i8] = ACTIONS(2360), + [anon_sym_u16] = ACTIONS(2360), + [anon_sym_i16] = ACTIONS(2360), + [anon_sym_u32] = ACTIONS(2360), + [anon_sym_i32] = ACTIONS(2360), + [anon_sym_u64] = ACTIONS(2360), + [anon_sym_i64] = ACTIONS(2360), + [anon_sym_u128] = ACTIONS(2360), + [anon_sym_i128] = ACTIONS(2360), + [anon_sym_isize] = ACTIONS(2360), + [anon_sym_usize] = ACTIONS(2360), + [anon_sym_f32] = ACTIONS(2360), + [anon_sym_f64] = ACTIONS(2360), + [anon_sym_bool] = ACTIONS(2360), + [anon_sym_str] = ACTIONS(2360), + [anon_sym_char] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_AMP] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_DOT_DOT] = ACTIONS(2358), + [anon_sym_COLON_COLON] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_gen] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_impl] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_loop] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_mod] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_trait] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_use] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_move] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [sym_integer_literal] = ACTIONS(2358), + [aux_sym_string_literal_token1] = ACTIONS(2358), + [sym_char_literal] = ACTIONS(2358), + [anon_sym_true] = ACTIONS(2360), + [anon_sym_false] = ACTIONS(2360), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_crate] = ACTIONS(2360), + [sym_metavariable] = ACTIONS(2358), + [sym__raw_string_literal_start] = ACTIONS(2358), + [sym_float_literal] = ACTIONS(2358), }, [STATE(635)] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2416), - [sym_identifier] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_macro_rules_BANG] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_u8] = ACTIONS(2418), - [anon_sym_i8] = ACTIONS(2418), - [anon_sym_u16] = ACTIONS(2418), - [anon_sym_i16] = ACTIONS(2418), - [anon_sym_u32] = ACTIONS(2418), - [anon_sym_i32] = ACTIONS(2418), - [anon_sym_u64] = ACTIONS(2418), - [anon_sym_i64] = ACTIONS(2418), - [anon_sym_u128] = ACTIONS(2418), - [anon_sym_i128] = ACTIONS(2418), - [anon_sym_isize] = ACTIONS(2418), - [anon_sym_usize] = ACTIONS(2418), - [anon_sym_f32] = ACTIONS(2418), - [anon_sym_f64] = ACTIONS(2418), - [anon_sym_bool] = ACTIONS(2418), - [anon_sym_str] = ACTIONS(2418), - [anon_sym_char] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_DOT_DOT] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2418), - [anon_sym_fn] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_gen] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_impl] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_mod] = ACTIONS(2418), - [anon_sym_pub] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_struct] = ACTIONS(2418), - [anon_sym_trait] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2418), - [anon_sym_union] = ACTIONS(2418), - [anon_sym_unsafe] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_yield] = ACTIONS(2418), - [anon_sym_move] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [sym_integer_literal] = ACTIONS(2416), - [aux_sym_string_literal_token1] = ACTIONS(2416), - [sym_char_literal] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2418), - [sym_super] = ACTIONS(2418), - [sym_crate] = ACTIONS(2418), - [sym_metavariable] = ACTIONS(2416), - [sym__raw_string_literal_start] = ACTIONS(2416), - [sym_float_literal] = ACTIONS(2416), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_macro_rules_BANG] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_u8] = ACTIONS(2364), + [anon_sym_i8] = ACTIONS(2364), + [anon_sym_u16] = ACTIONS(2364), + [anon_sym_i16] = ACTIONS(2364), + [anon_sym_u32] = ACTIONS(2364), + [anon_sym_i32] = ACTIONS(2364), + [anon_sym_u64] = ACTIONS(2364), + [anon_sym_i64] = ACTIONS(2364), + [anon_sym_u128] = ACTIONS(2364), + [anon_sym_i128] = ACTIONS(2364), + [anon_sym_isize] = ACTIONS(2364), + [anon_sym_usize] = ACTIONS(2364), + [anon_sym_f32] = ACTIONS(2364), + [anon_sym_f64] = ACTIONS(2364), + [anon_sym_bool] = ACTIONS(2364), + [anon_sym_str] = ACTIONS(2364), + [anon_sym_char] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_COLON_COLON] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(2364), + [anon_sym_async] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_fn] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_gen] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_impl] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_mod] = ACTIONS(2364), + [anon_sym_pub] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_trait] = ACTIONS(2364), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_unsafe] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_yield] = ACTIONS(2364), + [anon_sym_move] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2362), + [aux_sym_string_literal_token1] = ACTIONS(2362), + [sym_char_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2364), + [sym_super] = ACTIONS(2364), + [sym_crate] = ACTIONS(2364), + [sym_metavariable] = ACTIONS(2362), + [sym__raw_string_literal_start] = ACTIONS(2362), + [sym_float_literal] = ACTIONS(2362), }, [STATE(636)] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_macro_rules_BANG] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2420), - [anon_sym_u8] = ACTIONS(2422), - [anon_sym_i8] = ACTIONS(2422), - [anon_sym_u16] = ACTIONS(2422), - [anon_sym_i16] = ACTIONS(2422), - [anon_sym_u32] = ACTIONS(2422), - [anon_sym_i32] = ACTIONS(2422), - [anon_sym_u64] = ACTIONS(2422), - [anon_sym_i64] = ACTIONS(2422), - [anon_sym_u128] = ACTIONS(2422), - [anon_sym_i128] = ACTIONS(2422), - [anon_sym_isize] = ACTIONS(2422), - [anon_sym_usize] = ACTIONS(2422), - [anon_sym_f32] = ACTIONS(2422), - [anon_sym_f64] = ACTIONS(2422), - [anon_sym_bool] = ACTIONS(2422), - [anon_sym_str] = ACTIONS(2422), - [anon_sym_char] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_DOT_DOT] = ACTIONS(2420), - [anon_sym_COLON_COLON] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2422), - [anon_sym_async] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_fn] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_gen] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_impl] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_mod] = ACTIONS(2422), - [anon_sym_pub] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_trait] = ACTIONS(2422), - [anon_sym_type] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_unsafe] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_yield] = ACTIONS(2422), - [anon_sym_move] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [sym_integer_literal] = ACTIONS(2420), - [aux_sym_string_literal_token1] = ACTIONS(2420), - [sym_char_literal] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2422), - [sym_super] = ACTIONS(2422), - [sym_crate] = ACTIONS(2422), - [sym_metavariable] = ACTIONS(2420), - [sym__raw_string_literal_start] = ACTIONS(2420), - [sym_float_literal] = ACTIONS(2420), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_macro_rules_BANG] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_u8] = ACTIONS(2368), + [anon_sym_i8] = ACTIONS(2368), + [anon_sym_u16] = ACTIONS(2368), + [anon_sym_i16] = ACTIONS(2368), + [anon_sym_u32] = ACTIONS(2368), + [anon_sym_i32] = ACTIONS(2368), + [anon_sym_u64] = ACTIONS(2368), + [anon_sym_i64] = ACTIONS(2368), + [anon_sym_u128] = ACTIONS(2368), + [anon_sym_i128] = ACTIONS(2368), + [anon_sym_isize] = ACTIONS(2368), + [anon_sym_usize] = ACTIONS(2368), + [anon_sym_f32] = ACTIONS(2368), + [anon_sym_f64] = ACTIONS(2368), + [anon_sym_bool] = ACTIONS(2368), + [anon_sym_str] = ACTIONS(2368), + [anon_sym_char] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_DOT_DOT] = ACTIONS(2366), + [anon_sym_COLON_COLON] = ACTIONS(2366), + [anon_sym_POUND] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_fn] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_gen] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_impl] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_loop] = ACTIONS(2368), + [anon_sym_match] = ACTIONS(2368), + [anon_sym_mod] = ACTIONS(2368), + [anon_sym_pub] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_trait] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_unsafe] = ACTIONS(2368), + [anon_sym_use] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_move] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [sym_integer_literal] = ACTIONS(2366), + [aux_sym_string_literal_token1] = ACTIONS(2366), + [sym_char_literal] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_crate] = ACTIONS(2368), + [sym_metavariable] = ACTIONS(2366), + [sym__raw_string_literal_start] = ACTIONS(2366), + [sym_float_literal] = ACTIONS(2366), }, [STATE(637)] = { + [sym_empty_statement] = STATE(1113), + [sym_macro_definition] = STATE(1113), + [sym_attribute_item] = STATE(1113), + [sym_inner_attribute_item] = STATE(1113), + [sym_mod_item] = STATE(1113), + [sym_foreign_mod_item] = STATE(1113), + [sym_struct_item] = STATE(1113), + [sym_union_item] = STATE(1113), + [sym_enum_item] = STATE(1113), + [sym_extern_crate_declaration] = STATE(1113), + [sym_const_item] = STATE(1113), + [sym_static_item] = STATE(1113), + [sym_type_item] = STATE(1113), + [sym_function_item] = STATE(1113), + [sym_function_signature_item] = STATE(1113), + [sym_function_modifiers] = STATE(3779), + [sym_impl_item] = STATE(1113), + [sym_trait_item] = STATE(1113), + [sym_associated_type] = STATE(1113), + [sym_let_declaration] = STATE(1113), + [sym_use_declaration] = STATE(1113), + [sym_extern_modifier] = STATE(2273), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3731), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1113), + [sym_scoped_identifier] = STATE(3194), [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_macro_rules_BANG] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_u8] = ACTIONS(2426), - [anon_sym_i8] = ACTIONS(2426), - [anon_sym_u16] = ACTIONS(2426), - [anon_sym_i16] = ACTIONS(2426), - [anon_sym_u32] = ACTIONS(2426), - [anon_sym_i32] = ACTIONS(2426), - [anon_sym_u64] = ACTIONS(2426), - [anon_sym_i64] = ACTIONS(2426), - [anon_sym_u128] = ACTIONS(2426), - [anon_sym_i128] = ACTIONS(2426), - [anon_sym_isize] = ACTIONS(2426), - [anon_sym_usize] = ACTIONS(2426), - [anon_sym_f32] = ACTIONS(2426), - [anon_sym_f64] = ACTIONS(2426), - [anon_sym_bool] = ACTIONS(2426), - [anon_sym_str] = ACTIONS(2426), - [anon_sym_char] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2424), - [anon_sym_COLON_COLON] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [anon_sym_fn] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_gen] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_impl] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_mod] = ACTIONS(2426), - [anon_sym_pub] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2426), + [aux_sym_declaration_list_repeat1] = STATE(637), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_macro_rules_BANG] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2381), + [anon_sym_i8] = ACTIONS(2381), + [anon_sym_u16] = ACTIONS(2381), + [anon_sym_i16] = ACTIONS(2381), + [anon_sym_u32] = ACTIONS(2381), + [anon_sym_i32] = ACTIONS(2381), + [anon_sym_u64] = ACTIONS(2381), + [anon_sym_i64] = ACTIONS(2381), + [anon_sym_u128] = ACTIONS(2381), + [anon_sym_i128] = ACTIONS(2381), + [anon_sym_isize] = ACTIONS(2381), + [anon_sym_usize] = ACTIONS(2381), + [anon_sym_f32] = ACTIONS(2381), + [anon_sym_f64] = ACTIONS(2381), + [anon_sym_bool] = ACTIONS(2381), + [anon_sym_str] = ACTIONS(2381), + [anon_sym_char] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(2390), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_gen] = ACTIONS(2408), + [anon_sym_impl] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2423), [anon_sym_struct] = ACTIONS(2426), - [anon_sym_trait] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_union] = ACTIONS(2426), - [anon_sym_unsafe] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_move] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [sym_integer_literal] = ACTIONS(2424), - [aux_sym_string_literal_token1] = ACTIONS(2424), - [sym_char_literal] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_crate] = ACTIONS(2426), - [sym_metavariable] = ACTIONS(2424), - [sym__raw_string_literal_start] = ACTIONS(2424), - [sym_float_literal] = ACTIONS(2424), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2435), + [anon_sym_unsafe] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2447), + [sym_super] = ACTIONS(2447), + [sym_crate] = ACTIONS(2450), + [sym_metavariable] = ACTIONS(2453), }, [STATE(638)] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_macro_rules_BANG] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(2430), - [anon_sym_i8] = ACTIONS(2430), - [anon_sym_u16] = ACTIONS(2430), - [anon_sym_i16] = ACTIONS(2430), - [anon_sym_u32] = ACTIONS(2430), - [anon_sym_i32] = ACTIONS(2430), - [anon_sym_u64] = ACTIONS(2430), - [anon_sym_i64] = ACTIONS(2430), - [anon_sym_u128] = ACTIONS(2430), - [anon_sym_i128] = ACTIONS(2430), - [anon_sym_isize] = ACTIONS(2430), - [anon_sym_usize] = ACTIONS(2430), - [anon_sym_f32] = ACTIONS(2430), - [anon_sym_f64] = ACTIONS(2430), - [anon_sym_bool] = ACTIONS(2430), - [anon_sym_str] = ACTIONS(2430), - [anon_sym_char] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [anon_sym_COLON_COLON] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2430), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_default] = ACTIONS(2430), - [anon_sym_enum] = ACTIONS(2430), - [anon_sym_fn] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_gen] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_mod] = ACTIONS(2430), - [anon_sym_pub] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(2430), - [anon_sym_trait] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_unsafe] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [sym_integer_literal] = ACTIONS(2428), - [aux_sym_string_literal_token1] = ACTIONS(2428), - [sym_char_literal] = ACTIONS(2428), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2430), - [sym_super] = ACTIONS(2430), - [sym_crate] = ACTIONS(2430), - [sym_metavariable] = ACTIONS(2428), - [sym__raw_string_literal_start] = ACTIONS(2428), - [sym_float_literal] = ACTIONS(2428), - }, - [STATE(639)] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_macro_rules_BANG] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2432), - [anon_sym_u8] = ACTIONS(2434), - [anon_sym_i8] = ACTIONS(2434), - [anon_sym_u16] = ACTIONS(2434), - [anon_sym_i16] = ACTIONS(2434), - [anon_sym_u32] = ACTIONS(2434), - [anon_sym_i32] = ACTIONS(2434), - [anon_sym_u64] = ACTIONS(2434), - [anon_sym_i64] = ACTIONS(2434), - [anon_sym_u128] = ACTIONS(2434), - [anon_sym_i128] = ACTIONS(2434), - [anon_sym_isize] = ACTIONS(2434), - [anon_sym_usize] = ACTIONS(2434), - [anon_sym_f32] = ACTIONS(2434), - [anon_sym_f64] = ACTIONS(2434), - [anon_sym_bool] = ACTIONS(2434), - [anon_sym_str] = ACTIONS(2434), - [anon_sym_char] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_DOT_DOT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [anon_sym_fn] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_gen] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_impl] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_mod] = ACTIONS(2434), - [anon_sym_pub] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_struct] = ACTIONS(2434), - [anon_sym_trait] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_union] = ACTIONS(2434), - [anon_sym_unsafe] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_move] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [sym_integer_literal] = ACTIONS(2432), - [aux_sym_string_literal_token1] = ACTIONS(2432), - [sym_char_literal] = ACTIONS(2432), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_crate] = ACTIONS(2434), - [sym_metavariable] = ACTIONS(2432), - [sym__raw_string_literal_start] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(2432), - }, - [STATE(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2436), - [sym_identifier] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_macro_rules_BANG] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_u8] = ACTIONS(2438), - [anon_sym_i8] = ACTIONS(2438), - [anon_sym_u16] = ACTIONS(2438), - [anon_sym_i16] = ACTIONS(2438), - [anon_sym_u32] = ACTIONS(2438), - [anon_sym_i32] = ACTIONS(2438), - [anon_sym_u64] = ACTIONS(2438), - [anon_sym_i64] = ACTIONS(2438), - [anon_sym_u128] = ACTIONS(2438), - [anon_sym_i128] = ACTIONS(2438), - [anon_sym_isize] = ACTIONS(2438), - [anon_sym_usize] = ACTIONS(2438), - [anon_sym_f32] = ACTIONS(2438), - [anon_sym_f64] = ACTIONS(2438), - [anon_sym_bool] = ACTIONS(2438), - [anon_sym_str] = ACTIONS(2438), - [anon_sym_char] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_AMP] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(2436), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [anon_sym_COLON_COLON] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [anon_sym_fn] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_gen] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_impl] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_loop] = ACTIONS(2438), - [anon_sym_match] = ACTIONS(2438), - [anon_sym_mod] = ACTIONS(2438), - [anon_sym_pub] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_struct] = ACTIONS(2438), - [anon_sym_trait] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_union] = ACTIONS(2438), - [anon_sym_unsafe] = ACTIONS(2438), - [anon_sym_use] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_extern] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_move] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [sym_integer_literal] = ACTIONS(2436), - [aux_sym_string_literal_token1] = ACTIONS(2436), - [sym_char_literal] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_crate] = ACTIONS(2438), - [sym_metavariable] = ACTIONS(2436), - [sym__raw_string_literal_start] = ACTIONS(2436), - [sym_float_literal] = ACTIONS(2436), - }, - [STATE(641)] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2440), - [sym_identifier] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_macro_rules_BANG] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_u8] = ACTIONS(2442), - [anon_sym_i8] = ACTIONS(2442), - [anon_sym_u16] = ACTIONS(2442), - [anon_sym_i16] = ACTIONS(2442), - [anon_sym_u32] = ACTIONS(2442), - [anon_sym_i32] = ACTIONS(2442), - [anon_sym_u64] = ACTIONS(2442), - [anon_sym_i64] = ACTIONS(2442), - [anon_sym_u128] = ACTIONS(2442), - [anon_sym_i128] = ACTIONS(2442), - [anon_sym_isize] = ACTIONS(2442), - [anon_sym_usize] = ACTIONS(2442), - [anon_sym_f32] = ACTIONS(2442), - [anon_sym_f64] = ACTIONS(2442), - [anon_sym_bool] = ACTIONS(2442), - [anon_sym_str] = ACTIONS(2442), - [anon_sym_char] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_DOT_DOT] = ACTIONS(2440), - [anon_sym_COLON_COLON] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_gen] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_impl] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_mod] = ACTIONS(2442), - [anon_sym_pub] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2442), - [anon_sym_trait] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_union] = ACTIONS(2442), - [anon_sym_unsafe] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_move] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [sym_integer_literal] = ACTIONS(2440), - [aux_sym_string_literal_token1] = ACTIONS(2440), - [sym_char_literal] = ACTIONS(2440), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_crate] = ACTIONS(2442), - [sym_metavariable] = ACTIONS(2440), - [sym__raw_string_literal_start] = ACTIONS(2440), - [sym_float_literal] = ACTIONS(2440), - }, - [STATE(642)] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2444), - [sym_identifier] = ACTIONS(2446), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_macro_rules_BANG] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2444), - [anon_sym_u8] = ACTIONS(2446), - [anon_sym_i8] = ACTIONS(2446), - [anon_sym_u16] = ACTIONS(2446), - [anon_sym_i16] = ACTIONS(2446), - [anon_sym_u32] = ACTIONS(2446), - [anon_sym_i32] = ACTIONS(2446), - [anon_sym_u64] = ACTIONS(2446), - [anon_sym_i64] = ACTIONS(2446), - [anon_sym_u128] = ACTIONS(2446), - [anon_sym_i128] = ACTIONS(2446), - [anon_sym_isize] = ACTIONS(2446), - [anon_sym_usize] = ACTIONS(2446), - [anon_sym_f32] = ACTIONS(2446), - [anon_sym_f64] = ACTIONS(2446), - [anon_sym_bool] = ACTIONS(2446), - [anon_sym_str] = ACTIONS(2446), - [anon_sym_char] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_DOT_DOT] = ACTIONS(2444), - [anon_sym_COLON_COLON] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2446), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_default] = ACTIONS(2446), - [anon_sym_enum] = ACTIONS(2446), - [anon_sym_fn] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_gen] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_impl] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_loop] = ACTIONS(2446), - [anon_sym_match] = ACTIONS(2446), - [anon_sym_mod] = ACTIONS(2446), - [anon_sym_pub] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2446), - [anon_sym_trait] = ACTIONS(2446), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_union] = ACTIONS(2446), - [anon_sym_unsafe] = ACTIONS(2446), - [anon_sym_use] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2446), - [anon_sym_yield] = ACTIONS(2446), - [anon_sym_move] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [sym_integer_literal] = ACTIONS(2444), - [aux_sym_string_literal_token1] = ACTIONS(2444), - [sym_char_literal] = ACTIONS(2444), - [anon_sym_true] = ACTIONS(2446), - [anon_sym_false] = ACTIONS(2446), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2446), - [sym_super] = ACTIONS(2446), - [sym_crate] = ACTIONS(2446), - [sym_metavariable] = ACTIONS(2444), - [sym__raw_string_literal_start] = ACTIONS(2444), - [sym_float_literal] = ACTIONS(2444), - }, - [STATE(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2448), - [sym_identifier] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_macro_rules_BANG] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_u8] = ACTIONS(2450), - [anon_sym_i8] = ACTIONS(2450), - [anon_sym_u16] = ACTIONS(2450), - [anon_sym_i16] = ACTIONS(2450), - [anon_sym_u32] = ACTIONS(2450), - [anon_sym_i32] = ACTIONS(2450), - [anon_sym_u64] = ACTIONS(2450), - [anon_sym_i64] = ACTIONS(2450), - [anon_sym_u128] = ACTIONS(2450), - [anon_sym_i128] = ACTIONS(2450), - [anon_sym_isize] = ACTIONS(2450), - [anon_sym_usize] = ACTIONS(2450), - [anon_sym_f32] = ACTIONS(2450), - [anon_sym_f64] = ACTIONS(2450), - [anon_sym_bool] = ACTIONS(2450), - [anon_sym_str] = ACTIONS(2450), - [anon_sym_char] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(2448), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_DOT_DOT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_fn] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_gen] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_impl] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_loop] = ACTIONS(2450), - [anon_sym_match] = ACTIONS(2450), - [anon_sym_mod] = ACTIONS(2450), - [anon_sym_pub] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_trait] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(2450), - [anon_sym_use] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_move] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2450), - [sym_integer_literal] = ACTIONS(2448), - [aux_sym_string_literal_token1] = ACTIONS(2448), - [sym_char_literal] = ACTIONS(2448), - [anon_sym_true] = ACTIONS(2450), - [anon_sym_false] = ACTIONS(2450), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2450), - [sym_super] = ACTIONS(2450), - [sym_crate] = ACTIONS(2450), - [sym_metavariable] = ACTIONS(2448), - [sym__raw_string_literal_start] = ACTIONS(2448), - [sym_float_literal] = ACTIONS(2448), - }, - [STATE(644)] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_identifier] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_macro_rules_BANG] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_u8] = ACTIONS(1437), - [anon_sym_i8] = ACTIONS(1437), - [anon_sym_u16] = ACTIONS(1437), - [anon_sym_i16] = ACTIONS(1437), - [anon_sym_u32] = ACTIONS(1437), - [anon_sym_i32] = ACTIONS(1437), - [anon_sym_u64] = ACTIONS(1437), - [anon_sym_i64] = ACTIONS(1437), - [anon_sym_u128] = ACTIONS(1437), - [anon_sym_i128] = ACTIONS(1437), - [anon_sym_isize] = ACTIONS(1437), - [anon_sym_usize] = ACTIONS(1437), - [anon_sym_f32] = ACTIONS(1437), - [anon_sym_f64] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_str] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1435), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_async] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_enum] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_gen] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_impl] = ACTIONS(1437), - [anon_sym_let] = ACTIONS(1437), - [anon_sym_loop] = ACTIONS(1437), - [anon_sym_match] = ACTIONS(1437), - [anon_sym_mod] = ACTIONS(1437), - [anon_sym_pub] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_struct] = ACTIONS(1437), - [anon_sym_trait] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1437), - [anon_sym_union] = ACTIONS(1437), - [anon_sym_unsafe] = ACTIONS(1437), - [anon_sym_use] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_extern] = ACTIONS(1437), - [anon_sym_yield] = ACTIONS(1437), - [anon_sym_move] = ACTIONS(1437), - [anon_sym_try] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1435), - [aux_sym_string_literal_token1] = ACTIONS(1435), - [sym_char_literal] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym__raw_string_literal_start] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), - }, - [STATE(645)] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(2452), - [sym_identifier] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_macro_rules_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_u8] = ACTIONS(2454), - [anon_sym_i8] = ACTIONS(2454), - [anon_sym_u16] = ACTIONS(2454), - [anon_sym_i16] = ACTIONS(2454), - [anon_sym_u32] = ACTIONS(2454), - [anon_sym_i32] = ACTIONS(2454), - [anon_sym_u64] = ACTIONS(2454), - [anon_sym_i64] = ACTIONS(2454), - [anon_sym_u128] = ACTIONS(2454), - [anon_sym_i128] = ACTIONS(2454), - [anon_sym_isize] = ACTIONS(2454), - [anon_sym_usize] = ACTIONS(2454), - [anon_sym_f32] = ACTIONS(2454), - [anon_sym_f64] = ACTIONS(2454), - [anon_sym_bool] = ACTIONS(2454), - [anon_sym_str] = ACTIONS(2454), - [anon_sym_char] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_DOT_DOT] = ACTIONS(2452), - [anon_sym_COLON_COLON] = ACTIONS(2452), - [anon_sym_POUND] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_default] = ACTIONS(2454), - [anon_sym_enum] = ACTIONS(2454), - [anon_sym_fn] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_gen] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_impl] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_loop] = ACTIONS(2454), - [anon_sym_match] = ACTIONS(2454), - [anon_sym_mod] = ACTIONS(2454), - [anon_sym_pub] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_struct] = ACTIONS(2454), - [anon_sym_trait] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_union] = ACTIONS(2454), - [anon_sym_unsafe] = ACTIONS(2454), - [anon_sym_use] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_extern] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2454), - [anon_sym_move] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2454), - [sym_integer_literal] = ACTIONS(2452), - [aux_sym_string_literal_token1] = ACTIONS(2452), - [sym_char_literal] = ACTIONS(2452), - [anon_sym_true] = ACTIONS(2454), - [anon_sym_false] = ACTIONS(2454), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_crate] = ACTIONS(2454), - [sym_metavariable] = ACTIONS(2452), - [sym__raw_string_literal_start] = ACTIONS(2452), - [sym_float_literal] = ACTIONS(2452), - }, - [STATE(646)] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), [ts_builtin_sym_end] = ACTIONS(2456), [sym_identifier] = ACTIONS(2458), [anon_sym_SEMI] = ACTIONS(2456), @@ -83792,90 +83396,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2456), [sym_float_literal] = ACTIONS(2456), }, - [STATE(647)] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_gen] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_yield] = ACTIONS(1433), - [anon_sym_move] = ACTIONS(1433), - [anon_sym_try] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), - }, - [STATE(648)] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [STATE(639)] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2460), [sym_identifier] = ACTIONS(2462), [anon_sym_SEMI] = ACTIONS(2460), @@ -83954,171 +83477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2460), [sym_float_literal] = ACTIONS(2460), }, - [STATE(649)] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_gen] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_yield] = ACTIONS(1421), - [anon_sym_move] = ACTIONS(1421), - [anon_sym_try] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym__raw_string_literal_start] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), - }, - [STATE(650)] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_gen] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_yield] = ACTIONS(1425), - [anon_sym_move] = ACTIONS(1425), - [anon_sym_try] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym__raw_string_literal_start] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), - }, - [STATE(651)] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), + [STATE(640)] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2464), [sym_identifier] = ACTIONS(2466), [anon_sym_SEMI] = ACTIONS(2464), @@ -84197,9 +83558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2464), [sym_float_literal] = ACTIONS(2464), }, - [STATE(652)] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [STATE(641)] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2468), [sym_identifier] = ACTIONS(2470), [anon_sym_SEMI] = ACTIONS(2468), @@ -84278,9 +83639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2468), [sym_float_literal] = ACTIONS(2468), }, - [STATE(653)] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [STATE(642)] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2472), [sym_identifier] = ACTIONS(2474), [anon_sym_SEMI] = ACTIONS(2472), @@ -84359,9 +83720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2472), [sym_float_literal] = ACTIONS(2472), }, - [STATE(654)] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2476), [sym_identifier] = ACTIONS(2478), [anon_sym_SEMI] = ACTIONS(2476), @@ -84440,9 +83801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2476), [sym_float_literal] = ACTIONS(2476), }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [STATE(644)] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2480), [sym_identifier] = ACTIONS(2482), [anon_sym_SEMI] = ACTIONS(2480), @@ -84521,9 +83882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2480), [sym_float_literal] = ACTIONS(2480), }, - [STATE(656)] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [STATE(645)] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(2484), [sym_identifier] = ACTIONS(2486), [anon_sym_SEMI] = ACTIONS(2484), @@ -84602,9 +83963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2484), [sym_float_literal] = ACTIONS(2484), }, - [STATE(657)] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [STATE(646)] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), [ts_builtin_sym_end] = ACTIONS(2488), [sym_identifier] = ACTIONS(2490), [anon_sym_SEMI] = ACTIONS(2488), @@ -84683,9 +84044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2488), [sym_float_literal] = ACTIONS(2488), }, - [STATE(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [STATE(647)] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), [ts_builtin_sym_end] = ACTIONS(2492), [sym_identifier] = ACTIONS(2494), [anon_sym_SEMI] = ACTIONS(2492), @@ -84764,9 +84125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2492), [sym_float_literal] = ACTIONS(2492), }, - [STATE(659)] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [STATE(648)] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), [ts_builtin_sym_end] = ACTIONS(2496), [sym_identifier] = ACTIONS(2498), [anon_sym_SEMI] = ACTIONS(2496), @@ -84845,9 +84206,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2496), [sym_float_literal] = ACTIONS(2496), }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [STATE(649)] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_macro_rules_BANG] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_u8] = ACTIONS(1499), + [anon_sym_i8] = ACTIONS(1499), + [anon_sym_u16] = ACTIONS(1499), + [anon_sym_i16] = ACTIONS(1499), + [anon_sym_u32] = ACTIONS(1499), + [anon_sym_i32] = ACTIONS(1499), + [anon_sym_u64] = ACTIONS(1499), + [anon_sym_i64] = ACTIONS(1499), + [anon_sym_u128] = ACTIONS(1499), + [anon_sym_i128] = ACTIONS(1499), + [anon_sym_isize] = ACTIONS(1499), + [anon_sym_usize] = ACTIONS(1499), + [anon_sym_f32] = ACTIONS(1499), + [anon_sym_f64] = ACTIONS(1499), + [anon_sym_bool] = ACTIONS(1499), + [anon_sym_str] = ACTIONS(1499), + [anon_sym_char] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_COLON_COLON] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(1497), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_async] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_default] = ACTIONS(1499), + [anon_sym_enum] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_gen] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_impl] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1499), + [anon_sym_pub] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1499), + [anon_sym_struct] = ACTIONS(1499), + [anon_sym_trait] = ACTIONS(1499), + [anon_sym_type] = ACTIONS(1499), + [anon_sym_union] = ACTIONS(1499), + [anon_sym_unsafe] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_yield] = ACTIONS(1499), + [anon_sym_move] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [sym_integer_literal] = ACTIONS(1497), + [aux_sym_string_literal_token1] = ACTIONS(1497), + [sym_char_literal] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1499), + [anon_sym_false] = ACTIONS(1499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1499), + [sym_super] = ACTIONS(1499), + [sym_crate] = ACTIONS(1499), + [sym_metavariable] = ACTIONS(1497), + [sym__raw_string_literal_start] = ACTIONS(1497), + [sym_float_literal] = ACTIONS(1497), + }, + [STATE(650)] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), [ts_builtin_sym_end] = ACTIONS(2500), [sym_identifier] = ACTIONS(2502), [anon_sym_SEMI] = ACTIONS(2500), @@ -84926,9 +84368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2500), [sym_float_literal] = ACTIONS(2500), }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [STATE(651)] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), [ts_builtin_sym_end] = ACTIONS(2504), [sym_identifier] = ACTIONS(2506), [anon_sym_SEMI] = ACTIONS(2504), @@ -85007,9 +84449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2504), [sym_float_literal] = ACTIONS(2504), }, - [STATE(662)] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), [ts_builtin_sym_end] = ACTIONS(2508), [sym_identifier] = ACTIONS(2510), [anon_sym_SEMI] = ACTIONS(2508), @@ -85088,9 +84530,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2508), [sym_float_literal] = ACTIONS(2508), }, - [STATE(663)] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), + [STATE(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), [ts_builtin_sym_end] = ACTIONS(2512), [sym_identifier] = ACTIONS(2514), [anon_sym_SEMI] = ACTIONS(2512), @@ -85169,180 +84611,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2512), [sym_float_literal] = ACTIONS(2512), }, - [STATE(664)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(665)] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), + [STATE(654)] = { + [sym_empty_statement] = STATE(1113), + [sym_macro_definition] = STATE(1113), + [sym_attribute_item] = STATE(1113), + [sym_inner_attribute_item] = STATE(1113), + [sym_mod_item] = STATE(1113), + [sym_foreign_mod_item] = STATE(1113), + [sym_struct_item] = STATE(1113), + [sym_union_item] = STATE(1113), + [sym_enum_item] = STATE(1113), + [sym_extern_crate_declaration] = STATE(1113), + [sym_const_item] = STATE(1113), + [sym_static_item] = STATE(1113), + [sym_type_item] = STATE(1113), + [sym_function_item] = STATE(1113), + [sym_function_signature_item] = STATE(1113), + [sym_function_modifiers] = STATE(3779), + [sym_impl_item] = STATE(1113), + [sym_trait_item] = STATE(1113), + [sym_associated_type] = STATE(1113), + [sym_let_declaration] = STATE(1113), + [sym_use_declaration] = STATE(1113), + [sym_extern_modifier] = STATE(2273), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3731), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1113), + [sym_scoped_identifier] = STATE(3194), + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [aux_sym_declaration_list_repeat1] = STATE(741), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2516), [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_macro_rules_BANG] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2518), - [anon_sym_u8] = ACTIONS(2520), - [anon_sym_i8] = ACTIONS(2520), - [anon_sym_u16] = ACTIONS(2520), - [anon_sym_i16] = ACTIONS(2520), - [anon_sym_u32] = ACTIONS(2520), - [anon_sym_i32] = ACTIONS(2520), - [anon_sym_u64] = ACTIONS(2520), - [anon_sym_i64] = ACTIONS(2520), - [anon_sym_u128] = ACTIONS(2520), - [anon_sym_i128] = ACTIONS(2520), - [anon_sym_isize] = ACTIONS(2520), - [anon_sym_usize] = ACTIONS(2520), - [anon_sym_f32] = ACTIONS(2520), - [anon_sym_f64] = ACTIONS(2520), - [anon_sym_bool] = ACTIONS(2520), - [anon_sym_str] = ACTIONS(2520), - [anon_sym_char] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_PIPE] = ACTIONS(2518), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_DOT_DOT] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [anon_sym_fn] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_gen] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_impl] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_mod] = ACTIONS(2520), - [anon_sym_pub] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2520), - [anon_sym_trait] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_union] = ACTIONS(2520), - [anon_sym_unsafe] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_move] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [sym_integer_literal] = ACTIONS(2518), - [aux_sym_string_literal_token1] = ACTIONS(2518), - [sym_char_literal] = ACTIONS(2518), - [anon_sym_true] = ACTIONS(2520), - [anon_sym_false] = ACTIONS(2520), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_crate] = ACTIONS(2520), - [sym_metavariable] = ACTIONS(2518), - [sym__raw_string_literal_start] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(2518), - }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_macro_rules_BANG] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), [anon_sym_u8] = ACTIONS(2524), [anon_sym_i8] = ACTIONS(2524), [anon_sym_u16] = ACTIONS(2524), @@ -85360,1681 +84664,766 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2524), [anon_sym_str] = ACTIONS(2524), [anon_sym_char] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_DOT_DOT] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), - [anon_sym_fn] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_gen] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_impl] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_mod] = ACTIONS(2524), - [anon_sym_pub] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(2524), - [anon_sym_trait] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_union] = ACTIONS(2524), - [anon_sym_unsafe] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_move] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [sym_integer_literal] = ACTIONS(2522), - [aux_sym_string_literal_token1] = ACTIONS(2522), - [sym_char_literal] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2524), - [anon_sym_false] = ACTIONS(2524), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_crate] = ACTIONS(2524), - [sym_metavariable] = ACTIONS(2522), - [sym__raw_string_literal_start] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), - }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_macro_rules_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2528), - [anon_sym_i8] = ACTIONS(2528), - [anon_sym_u16] = ACTIONS(2528), - [anon_sym_i16] = ACTIONS(2528), - [anon_sym_u32] = ACTIONS(2528), - [anon_sym_i32] = ACTIONS(2528), - [anon_sym_u64] = ACTIONS(2528), - [anon_sym_i64] = ACTIONS(2528), - [anon_sym_u128] = ACTIONS(2528), - [anon_sym_i128] = ACTIONS(2528), - [anon_sym_isize] = ACTIONS(2528), - [anon_sym_usize] = ACTIONS(2528), - [anon_sym_f32] = ACTIONS(2528), - [anon_sym_f64] = ACTIONS(2528), - [anon_sym_bool] = ACTIONS(2528), - [anon_sym_str] = ACTIONS(2528), - [anon_sym_char] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [anon_sym_fn] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_gen] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_impl] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_mod] = ACTIONS(2528), - [anon_sym_pub] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_struct] = ACTIONS(2528), - [anon_sym_trait] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_union] = ACTIONS(2528), - [anon_sym_unsafe] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_move] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [sym_integer_literal] = ACTIONS(2526), - [aux_sym_string_literal_token1] = ACTIONS(2526), - [sym_char_literal] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_crate] = ACTIONS(2528), - [sym_metavariable] = ACTIONS(2526), - [sym__raw_string_literal_start] = ACTIONS(2526), - [sym_float_literal] = ACTIONS(2526), - }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_u8] = ACTIONS(2532), - [anon_sym_i8] = ACTIONS(2532), - [anon_sym_u16] = ACTIONS(2532), - [anon_sym_i16] = ACTIONS(2532), - [anon_sym_u32] = ACTIONS(2532), - [anon_sym_i32] = ACTIONS(2532), - [anon_sym_u64] = ACTIONS(2532), - [anon_sym_i64] = ACTIONS(2532), - [anon_sym_u128] = ACTIONS(2532), - [anon_sym_i128] = ACTIONS(2532), - [anon_sym_isize] = ACTIONS(2532), - [anon_sym_usize] = ACTIONS(2532), - [anon_sym_f32] = ACTIONS(2532), - [anon_sym_f64] = ACTIONS(2532), - [anon_sym_bool] = ACTIONS(2532), - [anon_sym_str] = ACTIONS(2532), - [anon_sym_char] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_DOT_DOT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_async] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(2530), [anon_sym_default] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_gen] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_impl] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_mod] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_trait] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_yield] = ACTIONS(2532), - [anon_sym_move] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [sym_integer_literal] = ACTIONS(2530), - [aux_sym_string_literal_token1] = ACTIONS(2530), - [sym_char_literal] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2532), - [sym_super] = ACTIONS(2532), - [sym_crate] = ACTIONS(2532), - [sym_metavariable] = ACTIONS(2530), - [sym__raw_string_literal_start] = ACTIONS(2530), - [sym_float_literal] = ACTIONS(2530), - }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_macro_rules_BANG] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_DOT_DOT] = ACTIONS(2534), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_async] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_default] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2534), [anon_sym_fn] = ACTIONS(2536), - [anon_sym_for] = ACTIONS(2536), - [anon_sym_gen] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_impl] = ACTIONS(2536), - [anon_sym_let] = ACTIONS(2536), - [anon_sym_loop] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_mod] = ACTIONS(2536), - [anon_sym_pub] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2536), - [anon_sym_trait] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_union] = ACTIONS(2536), - [anon_sym_unsafe] = ACTIONS(2536), - [anon_sym_use] = ACTIONS(2536), - [anon_sym_while] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym_yield] = ACTIONS(2536), - [anon_sym_move] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [sym_integer_literal] = ACTIONS(2534), - [aux_sym_string_literal_token1] = ACTIONS(2534), - [sym_char_literal] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2536), - [sym_super] = ACTIONS(2536), - [sym_crate] = ACTIONS(2536), - [sym_metavariable] = ACTIONS(2534), - [sym__raw_string_literal_start] = ACTIONS(2534), - [sym_float_literal] = ACTIONS(2534), - }, - [STATE(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_u8] = ACTIONS(2540), - [anon_sym_i8] = ACTIONS(2540), - [anon_sym_u16] = ACTIONS(2540), - [anon_sym_i16] = ACTIONS(2540), - [anon_sym_u32] = ACTIONS(2540), - [anon_sym_i32] = ACTIONS(2540), - [anon_sym_u64] = ACTIONS(2540), - [anon_sym_i64] = ACTIONS(2540), - [anon_sym_u128] = ACTIONS(2540), - [anon_sym_i128] = ACTIONS(2540), - [anon_sym_isize] = ACTIONS(2540), - [anon_sym_usize] = ACTIONS(2540), - [anon_sym_f32] = ACTIONS(2540), - [anon_sym_f64] = ACTIONS(2540), - [anon_sym_bool] = ACTIONS(2540), - [anon_sym_str] = ACTIONS(2540), - [anon_sym_char] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2538), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_default] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_fn] = ACTIONS(2540), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_gen] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), + [anon_sym_gen] = ACTIONS(2538), [anon_sym_impl] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2540), - [anon_sym_loop] = ACTIONS(2540), - [anon_sym_match] = ACTIONS(2540), - [anon_sym_mod] = ACTIONS(2540), - [anon_sym_pub] = ACTIONS(2540), - [anon_sym_return] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2540), - [anon_sym_trait] = ACTIONS(2540), - [anon_sym_type] = ACTIONS(2540), - [anon_sym_union] = ACTIONS(2540), - [anon_sym_unsafe] = ACTIONS(2540), - [anon_sym_use] = ACTIONS(2540), - [anon_sym_while] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym_yield] = ACTIONS(2540), - [anon_sym_move] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [sym_integer_literal] = ACTIONS(2538), - [aux_sym_string_literal_token1] = ACTIONS(2538), - [sym_char_literal] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2540), - [anon_sym_false] = ACTIONS(2540), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2540), - [sym_super] = ACTIONS(2540), - [sym_crate] = ACTIONS(2540), - [sym_metavariable] = ACTIONS(2538), - [sym__raw_string_literal_start] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), - }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_macro_rules_BANG] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_RBRACE] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_u8] = ACTIONS(2544), - [anon_sym_i8] = ACTIONS(2544), - [anon_sym_u16] = ACTIONS(2544), - [anon_sym_i16] = ACTIONS(2544), - [anon_sym_u32] = ACTIONS(2544), - [anon_sym_i32] = ACTIONS(2544), - [anon_sym_u64] = ACTIONS(2544), - [anon_sym_i64] = ACTIONS(2544), - [anon_sym_u128] = ACTIONS(2544), - [anon_sym_i128] = ACTIONS(2544), - [anon_sym_isize] = ACTIONS(2544), - [anon_sym_usize] = ACTIONS(2544), - [anon_sym_f32] = ACTIONS(2544), - [anon_sym_f64] = ACTIONS(2544), - [anon_sym_bool] = ACTIONS(2544), - [anon_sym_str] = ACTIONS(2544), - [anon_sym_char] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_const] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_fn] = ACTIONS(2544), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_gen] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_impl] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2544), - [anon_sym_loop] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2542), [anon_sym_mod] = ACTIONS(2544), - [anon_sym_pub] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2544), - [anon_sym_trait] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_union] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(2544), - [anon_sym_use] = ACTIONS(2544), - [anon_sym_while] = ACTIONS(2544), - [anon_sym_extern] = ACTIONS(2544), - [anon_sym_yield] = ACTIONS(2544), - [anon_sym_move] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [sym_integer_literal] = ACTIONS(2542), - [aux_sym_string_literal_token1] = ACTIONS(2542), - [sym_char_literal] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2544), - [sym_super] = ACTIONS(2544), - [sym_crate] = ACTIONS(2544), - [sym_metavariable] = ACTIONS(2542), - [sym__raw_string_literal_start] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), - }, - [STATE(672)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [aux_sym_declaration_list_repeat1] = STATE(676), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2548), - [sym_identifier] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2548), - [anon_sym_u8] = ACTIONS(2550), - [anon_sym_i8] = ACTIONS(2550), - [anon_sym_u16] = ACTIONS(2550), - [anon_sym_i16] = ACTIONS(2550), - [anon_sym_u32] = ACTIONS(2550), - [anon_sym_i32] = ACTIONS(2550), - [anon_sym_u64] = ACTIONS(2550), - [anon_sym_i64] = ACTIONS(2550), - [anon_sym_u128] = ACTIONS(2550), - [anon_sym_i128] = ACTIONS(2550), - [anon_sym_isize] = ACTIONS(2550), - [anon_sym_usize] = ACTIONS(2550), - [anon_sym_f32] = ACTIONS(2550), - [anon_sym_f64] = ACTIONS(2550), - [anon_sym_bool] = ACTIONS(2550), - [anon_sym_str] = ACTIONS(2550), - [anon_sym_char] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_PIPE] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2550), - [anon_sym_async] = ACTIONS(2550), - [anon_sym_break] = ACTIONS(2550), - [anon_sym_const] = ACTIONS(2550), - [anon_sym_continue] = ACTIONS(2550), - [anon_sym_default] = ACTIONS(2550), - [anon_sym_enum] = ACTIONS(2550), - [anon_sym_fn] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2550), - [anon_sym_gen] = ACTIONS(2550), - [anon_sym_if] = ACTIONS(2550), - [anon_sym_impl] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_loop] = ACTIONS(2550), - [anon_sym_match] = ACTIONS(2550), - [anon_sym_mod] = ACTIONS(2550), - [anon_sym_pub] = ACTIONS(2550), - [anon_sym_return] = ACTIONS(2550), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(2550), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), [anon_sym_trait] = ACTIONS(2550), - [anon_sym_type] = ACTIONS(2550), - [anon_sym_union] = ACTIONS(2550), - [anon_sym_unsafe] = ACTIONS(2550), - [anon_sym_use] = ACTIONS(2550), - [anon_sym_while] = ACTIONS(2550), - [anon_sym_extern] = ACTIONS(2550), - [anon_sym_yield] = ACTIONS(2550), - [anon_sym_move] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2550), - [sym_integer_literal] = ACTIONS(2548), - [aux_sym_string_literal_token1] = ACTIONS(2548), - [sym_char_literal] = ACTIONS(2548), - [anon_sym_true] = ACTIONS(2550), - [anon_sym_false] = ACTIONS(2550), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2550), - [sym_super] = ACTIONS(2550), - [sym_crate] = ACTIONS(2550), - [sym_metavariable] = ACTIONS(2548), - [sym__raw_string_literal_start] = ACTIONS(2548), - [sym_float_literal] = ACTIONS(2548), - }, - [STATE(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_identifier] = ACTIONS(2554), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_macro_rules_BANG] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(2552), - [anon_sym_u8] = ACTIONS(2554), - [anon_sym_i8] = ACTIONS(2554), - [anon_sym_u16] = ACTIONS(2554), - [anon_sym_i16] = ACTIONS(2554), - [anon_sym_u32] = ACTIONS(2554), - [anon_sym_i32] = ACTIONS(2554), - [anon_sym_u64] = ACTIONS(2554), - [anon_sym_i64] = ACTIONS(2554), - [anon_sym_u128] = ACTIONS(2554), - [anon_sym_i128] = ACTIONS(2554), - [anon_sym_isize] = ACTIONS(2554), - [anon_sym_usize] = ACTIONS(2554), - [anon_sym_f32] = ACTIONS(2554), - [anon_sym_f64] = ACTIONS(2554), - [anon_sym_bool] = ACTIONS(2554), - [anon_sym_str] = ACTIONS(2554), - [anon_sym_char] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_DOT_DOT] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2554), - [anon_sym_async] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2554), - [anon_sym_fn] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2554), - [anon_sym_gen] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_impl] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_loop] = ACTIONS(2554), - [anon_sym_match] = ACTIONS(2554), - [anon_sym_mod] = ACTIONS(2554), - [anon_sym_pub] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_struct] = ACTIONS(2554), - [anon_sym_trait] = ACTIONS(2554), - [anon_sym_type] = ACTIONS(2554), + [anon_sym_type] = ACTIONS(2552), [anon_sym_union] = ACTIONS(2554), - [anon_sym_unsafe] = ACTIONS(2554), - [anon_sym_use] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2554), - [anon_sym_extern] = ACTIONS(2554), - [anon_sym_yield] = ACTIONS(2554), - [anon_sym_move] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [sym_integer_literal] = ACTIONS(2552), - [aux_sym_string_literal_token1] = ACTIONS(2552), - [sym_char_literal] = ACTIONS(2552), - [anon_sym_true] = ACTIONS(2554), - [anon_sym_false] = ACTIONS(2554), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2554), - [sym_super] = ACTIONS(2554), - [sym_crate] = ACTIONS(2554), - [sym_metavariable] = ACTIONS(2552), - [sym__raw_string_literal_start] = ACTIONS(2552), - [sym_float_literal] = ACTIONS(2552), - }, - [STATE(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2556), - [sym_identifier] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_macro_rules_BANG] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_STAR] = ACTIONS(2556), - [anon_sym_u8] = ACTIONS(2558), - [anon_sym_i8] = ACTIONS(2558), - [anon_sym_u16] = ACTIONS(2558), - [anon_sym_i16] = ACTIONS(2558), - [anon_sym_u32] = ACTIONS(2558), - [anon_sym_i32] = ACTIONS(2558), - [anon_sym_u64] = ACTIONS(2558), - [anon_sym_i64] = ACTIONS(2558), - [anon_sym_u128] = ACTIONS(2558), - [anon_sym_i128] = ACTIONS(2558), - [anon_sym_isize] = ACTIONS(2558), - [anon_sym_usize] = ACTIONS(2558), - [anon_sym_f32] = ACTIONS(2558), - [anon_sym_f64] = ACTIONS(2558), - [anon_sym_bool] = ACTIONS(2558), - [anon_sym_str] = ACTIONS(2558), - [anon_sym_char] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2556), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_PIPE] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_DOT_DOT] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2556), - [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), - [anon_sym_fn] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_gen] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_impl] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_loop] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_mod] = ACTIONS(2558), - [anon_sym_pub] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_struct] = ACTIONS(2558), - [anon_sym_trait] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_union] = ACTIONS(2558), - [anon_sym_unsafe] = ACTIONS(2558), + [anon_sym_unsafe] = ACTIONS(2556), [anon_sym_use] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_extern] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_move] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [sym_integer_literal] = ACTIONS(2556), - [aux_sym_string_literal_token1] = ACTIONS(2556), - [sym_char_literal] = ACTIONS(2556), - [anon_sym_true] = ACTIONS(2558), - [anon_sym_false] = ACTIONS(2558), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_crate] = ACTIONS(2558), - [sym_metavariable] = ACTIONS(2556), - [sym__raw_string_literal_start] = ACTIONS(2556), - [sym_float_literal] = ACTIONS(2556), - }, - [STATE(676)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_macro_rules_BANG] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_u8] = ACTIONS(2182), - [anon_sym_i8] = ACTIONS(2182), - [anon_sym_u16] = ACTIONS(2182), - [anon_sym_i16] = ACTIONS(2182), - [anon_sym_u32] = ACTIONS(2182), - [anon_sym_i32] = ACTIONS(2182), - [anon_sym_u64] = ACTIONS(2182), - [anon_sym_i64] = ACTIONS(2182), - [anon_sym_u128] = ACTIONS(2182), - [anon_sym_i128] = ACTIONS(2182), - [anon_sym_isize] = ACTIONS(2182), - [anon_sym_usize] = ACTIONS(2182), - [anon_sym_f32] = ACTIONS(2182), - [anon_sym_f64] = ACTIONS(2182), - [anon_sym_bool] = ACTIONS(2182), - [anon_sym_str] = ACTIONS(2182), - [anon_sym_char] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2194), - [anon_sym_gen] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2198), - [anon_sym_let] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2202), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2206), - [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2560), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2220), - [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2222), - [sym_metavariable] = ACTIONS(2224), - }, - [STATE(677)] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2562), - [sym_identifier] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_macro_rules_BANG] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_u8] = ACTIONS(2564), - [anon_sym_i8] = ACTIONS(2564), - [anon_sym_u16] = ACTIONS(2564), - [anon_sym_i16] = ACTIONS(2564), - [anon_sym_u32] = ACTIONS(2564), - [anon_sym_i32] = ACTIONS(2564), - [anon_sym_u64] = ACTIONS(2564), - [anon_sym_i64] = ACTIONS(2564), - [anon_sym_u128] = ACTIONS(2564), - [anon_sym_i128] = ACTIONS(2564), - [anon_sym_isize] = ACTIONS(2564), - [anon_sym_usize] = ACTIONS(2564), - [anon_sym_f32] = ACTIONS(2564), - [anon_sym_f64] = ACTIONS(2564), - [anon_sym_bool] = ACTIONS(2564), - [anon_sym_str] = ACTIONS(2564), - [anon_sym_char] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2562), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(2562), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_async] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_impl] = ACTIONS(2564), - [anon_sym_let] = ACTIONS(2564), - [anon_sym_loop] = ACTIONS(2564), - [anon_sym_match] = ACTIONS(2564), - [anon_sym_mod] = ACTIONS(2564), - [anon_sym_pub] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_trait] = ACTIONS(2564), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2564), - [anon_sym_use] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_yield] = ACTIONS(2564), - [anon_sym_move] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2564), - [sym_integer_literal] = ACTIONS(2562), - [aux_sym_string_literal_token1] = ACTIONS(2562), - [sym_char_literal] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2564), - [anon_sym_false] = ACTIONS(2564), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2564), - [sym_super] = ACTIONS(2564), + [sym_self] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), [sym_crate] = ACTIONS(2564), - [sym_metavariable] = ACTIONS(2562), - [sym__raw_string_literal_start] = ACTIONS(2562), - [sym_float_literal] = ACTIONS(2562), - }, - [STATE(678)] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2566), - [sym_identifier] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_macro_rules_BANG] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_u8] = ACTIONS(2568), - [anon_sym_i8] = ACTIONS(2568), - [anon_sym_u16] = ACTIONS(2568), - [anon_sym_i16] = ACTIONS(2568), - [anon_sym_u32] = ACTIONS(2568), - [anon_sym_i32] = ACTIONS(2568), - [anon_sym_u64] = ACTIONS(2568), - [anon_sym_i64] = ACTIONS(2568), - [anon_sym_u128] = ACTIONS(2568), - [anon_sym_i128] = ACTIONS(2568), - [anon_sym_isize] = ACTIONS(2568), - [anon_sym_usize] = ACTIONS(2568), - [anon_sym_f32] = ACTIONS(2568), - [anon_sym_f64] = ACTIONS(2568), - [anon_sym_bool] = ACTIONS(2568), - [anon_sym_str] = ACTIONS(2568), - [anon_sym_char] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_DOT_DOT] = ACTIONS(2566), - [anon_sym_COLON_COLON] = ACTIONS(2566), - [anon_sym_POUND] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2568), - [anon_sym_async] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_fn] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_gen] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2568), - [anon_sym_loop] = ACTIONS(2568), - [anon_sym_match] = ACTIONS(2568), - [anon_sym_mod] = ACTIONS(2568), - [anon_sym_pub] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_trait] = ACTIONS(2568), - [anon_sym_type] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_yield] = ACTIONS(2568), - [anon_sym_move] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [sym_integer_literal] = ACTIONS(2566), - [aux_sym_string_literal_token1] = ACTIONS(2566), - [sym_char_literal] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2568), - [sym_super] = ACTIONS(2568), - [sym_crate] = ACTIONS(2568), [sym_metavariable] = ACTIONS(2566), - [sym__raw_string_literal_start] = ACTIONS(2566), - [sym_float_literal] = ACTIONS(2566), }, - [STATE(679)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(2568), + [sym_identifier] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_macro_rules_BANG] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_u8] = ACTIONS(2570), + [anon_sym_i8] = ACTIONS(2570), + [anon_sym_u16] = ACTIONS(2570), + [anon_sym_i16] = ACTIONS(2570), + [anon_sym_u32] = ACTIONS(2570), + [anon_sym_i32] = ACTIONS(2570), + [anon_sym_u64] = ACTIONS(2570), + [anon_sym_i64] = ACTIONS(2570), + [anon_sym_u128] = ACTIONS(2570), + [anon_sym_i128] = ACTIONS(2570), + [anon_sym_isize] = ACTIONS(2570), + [anon_sym_usize] = ACTIONS(2570), + [anon_sym_f32] = ACTIONS(2570), + [anon_sym_f64] = ACTIONS(2570), + [anon_sym_bool] = ACTIONS(2570), + [anon_sym_str] = ACTIONS(2570), + [anon_sym_char] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2568), + [anon_sym_COLON_COLON] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_async] = ACTIONS(2570), + [anon_sym_break] = ACTIONS(2570), + [anon_sym_const] = ACTIONS(2570), + [anon_sym_continue] = ACTIONS(2570), + [anon_sym_default] = ACTIONS(2570), + [anon_sym_enum] = ACTIONS(2570), + [anon_sym_fn] = ACTIONS(2570), + [anon_sym_for] = ACTIONS(2570), + [anon_sym_gen] = ACTIONS(2570), + [anon_sym_if] = ACTIONS(2570), + [anon_sym_impl] = ACTIONS(2570), + [anon_sym_let] = ACTIONS(2570), + [anon_sym_loop] = ACTIONS(2570), + [anon_sym_match] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2570), + [anon_sym_pub] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(2570), + [anon_sym_static] = ACTIONS(2570), + [anon_sym_struct] = ACTIONS(2570), + [anon_sym_trait] = ACTIONS(2570), + [anon_sym_type] = ACTIONS(2570), + [anon_sym_union] = ACTIONS(2570), + [anon_sym_unsafe] = ACTIONS(2570), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_while] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2570), + [anon_sym_yield] = ACTIONS(2570), + [anon_sym_move] = ACTIONS(2570), + [anon_sym_try] = ACTIONS(2570), + [sym_integer_literal] = ACTIONS(2568), + [aux_sym_string_literal_token1] = ACTIONS(2568), + [sym_char_literal] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2570), + [anon_sym_false] = ACTIONS(2570), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2570), + [sym_super] = ACTIONS(2570), + [sym_crate] = ACTIONS(2570), + [sym_metavariable] = ACTIONS(2568), + [sym__raw_string_literal_start] = ACTIONS(2568), + [sym_float_literal] = ACTIONS(2568), }, - [STATE(680)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(656)] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(2572), + [sym_identifier] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_macro_rules_BANG] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_u8] = ACTIONS(2574), + [anon_sym_i8] = ACTIONS(2574), + [anon_sym_u16] = ACTIONS(2574), + [anon_sym_i16] = ACTIONS(2574), + [anon_sym_u32] = ACTIONS(2574), + [anon_sym_i32] = ACTIONS(2574), + [anon_sym_u64] = ACTIONS(2574), + [anon_sym_i64] = ACTIONS(2574), + [anon_sym_u128] = ACTIONS(2574), + [anon_sym_i128] = ACTIONS(2574), + [anon_sym_isize] = ACTIONS(2574), + [anon_sym_usize] = ACTIONS(2574), + [anon_sym_f32] = ACTIONS(2574), + [anon_sym_f64] = ACTIONS(2574), + [anon_sym_bool] = ACTIONS(2574), + [anon_sym_str] = ACTIONS(2574), + [anon_sym_char] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_DOT_DOT] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_break] = ACTIONS(2574), + [anon_sym_const] = ACTIONS(2574), + [anon_sym_continue] = ACTIONS(2574), + [anon_sym_default] = ACTIONS(2574), + [anon_sym_enum] = ACTIONS(2574), + [anon_sym_fn] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2574), + [anon_sym_gen] = ACTIONS(2574), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_impl] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_loop] = ACTIONS(2574), + [anon_sym_match] = ACTIONS(2574), + [anon_sym_mod] = ACTIONS(2574), + [anon_sym_pub] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_struct] = ACTIONS(2574), + [anon_sym_trait] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_union] = ACTIONS(2574), + [anon_sym_unsafe] = ACTIONS(2574), + [anon_sym_use] = ACTIONS(2574), + [anon_sym_while] = ACTIONS(2574), + [anon_sym_extern] = ACTIONS(2574), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_move] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2574), + [sym_integer_literal] = ACTIONS(2572), + [aux_sym_string_literal_token1] = ACTIONS(2572), + [sym_char_literal] = ACTIONS(2572), + [anon_sym_true] = ACTIONS(2574), + [anon_sym_false] = ACTIONS(2574), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2574), + [sym_metavariable] = ACTIONS(2572), + [sym__raw_string_literal_start] = ACTIONS(2572), + [sym_float_literal] = ACTIONS(2572), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2574), - [sym_identifier] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_macro_rules_BANG] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_u8] = ACTIONS(2576), - [anon_sym_i8] = ACTIONS(2576), - [anon_sym_u16] = ACTIONS(2576), - [anon_sym_i16] = ACTIONS(2576), - [anon_sym_u32] = ACTIONS(2576), - [anon_sym_i32] = ACTIONS(2576), - [anon_sym_u64] = ACTIONS(2576), - [anon_sym_i64] = ACTIONS(2576), - [anon_sym_u128] = ACTIONS(2576), - [anon_sym_i128] = ACTIONS(2576), - [anon_sym_isize] = ACTIONS(2576), - [anon_sym_usize] = ACTIONS(2576), - [anon_sym_f32] = ACTIONS(2576), - [anon_sym_f64] = ACTIONS(2576), - [anon_sym_bool] = ACTIONS(2576), - [anon_sym_str] = ACTIONS(2576), - [anon_sym_char] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_DOT_DOT] = ACTIONS(2574), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_SQUOTE] = ACTIONS(2576), - [anon_sym_async] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_default] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_fn] = ACTIONS(2576), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_gen] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_impl] = ACTIONS(2576), - [anon_sym_let] = ACTIONS(2576), - [anon_sym_loop] = ACTIONS(2576), - [anon_sym_match] = ACTIONS(2576), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_unsafe] = ACTIONS(2576), - [anon_sym_use] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym_yield] = ACTIONS(2576), - [anon_sym_move] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [sym_integer_literal] = ACTIONS(2574), - [aux_sym_string_literal_token1] = ACTIONS(2574), - [sym_char_literal] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2576), - [anon_sym_false] = ACTIONS(2576), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2576), - [sym_super] = ACTIONS(2576), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2574), - [sym__raw_string_literal_start] = ACTIONS(2574), - [sym_float_literal] = ACTIONS(2574), + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(1449), + [sym_identifier] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_gen] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_impl] = ACTIONS(1451), + [anon_sym_let] = ACTIONS(1451), + [anon_sym_loop] = ACTIONS(1451), + [anon_sym_match] = ACTIONS(1451), + [anon_sym_mod] = ACTIONS(1451), + [anon_sym_pub] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_trait] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_use] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym_yield] = ACTIONS(1451), + [anon_sym_move] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1451), + [sym_integer_literal] = ACTIONS(1449), + [aux_sym_string_literal_token1] = ACTIONS(1449), + [sym_char_literal] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1451), + [anon_sym_false] = ACTIONS(1451), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_crate] = ACTIONS(1451), + [sym_metavariable] = ACTIONS(1449), + [sym__raw_string_literal_start] = ACTIONS(1449), + [sym_float_literal] = ACTIONS(1449), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_macro_rules_BANG] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_u8] = ACTIONS(2580), - [anon_sym_i8] = ACTIONS(2580), - [anon_sym_u16] = ACTIONS(2580), - [anon_sym_i16] = ACTIONS(2580), - [anon_sym_u32] = ACTIONS(2580), - [anon_sym_i32] = ACTIONS(2580), - [anon_sym_u64] = ACTIONS(2580), - [anon_sym_i64] = ACTIONS(2580), - [anon_sym_u128] = ACTIONS(2580), - [anon_sym_i128] = ACTIONS(2580), - [anon_sym_isize] = ACTIONS(2580), - [anon_sym_usize] = ACTIONS(2580), - [anon_sym_f32] = ACTIONS(2580), - [anon_sym_f64] = ACTIONS(2580), - [anon_sym_bool] = ACTIONS(2580), - [anon_sym_str] = ACTIONS(2580), - [anon_sym_char] = ACTIONS(2580), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_DOT_DOT] = ACTIONS(2578), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(2578), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_async] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_fn] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_gen] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_impl] = ACTIONS(2580), - [anon_sym_let] = ACTIONS(2580), - [anon_sym_loop] = ACTIONS(2580), - [anon_sym_match] = ACTIONS(2580), - [anon_sym_mod] = ACTIONS(2580), - [anon_sym_pub] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_trait] = ACTIONS(2580), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_unsafe] = ACTIONS(2580), - [anon_sym_use] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym_yield] = ACTIONS(2580), - [anon_sym_move] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [sym_integer_literal] = ACTIONS(2578), - [aux_sym_string_literal_token1] = ACTIONS(2578), - [sym_char_literal] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2580), - [anon_sym_false] = ACTIONS(2580), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2580), - [sym_super] = ACTIONS(2580), - [sym_crate] = ACTIONS(2580), - [sym_metavariable] = ACTIONS(2578), - [sym__raw_string_literal_start] = ACTIONS(2578), - [sym_float_literal] = ACTIONS(2578), + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2576), + [sym_identifier] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_macro_rules_BANG] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2576), + [anon_sym_u8] = ACTIONS(2578), + [anon_sym_i8] = ACTIONS(2578), + [anon_sym_u16] = ACTIONS(2578), + [anon_sym_i16] = ACTIONS(2578), + [anon_sym_u32] = ACTIONS(2578), + [anon_sym_i32] = ACTIONS(2578), + [anon_sym_u64] = ACTIONS(2578), + [anon_sym_i64] = ACTIONS(2578), + [anon_sym_u128] = ACTIONS(2578), + [anon_sym_i128] = ACTIONS(2578), + [anon_sym_isize] = ACTIONS(2578), + [anon_sym_usize] = ACTIONS(2578), + [anon_sym_f32] = ACTIONS(2578), + [anon_sym_f64] = ACTIONS(2578), + [anon_sym_bool] = ACTIONS(2578), + [anon_sym_str] = ACTIONS(2578), + [anon_sym_char] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_LT] = ACTIONS(2576), + [anon_sym_DOT_DOT] = ACTIONS(2576), + [anon_sym_COLON_COLON] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_async] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2578), + [anon_sym_const] = ACTIONS(2578), + [anon_sym_continue] = ACTIONS(2578), + [anon_sym_default] = ACTIONS(2578), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_fn] = ACTIONS(2578), + [anon_sym_for] = ACTIONS(2578), + [anon_sym_gen] = ACTIONS(2578), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_impl] = ACTIONS(2578), + [anon_sym_let] = ACTIONS(2578), + [anon_sym_loop] = ACTIONS(2578), + [anon_sym_match] = ACTIONS(2578), + [anon_sym_mod] = ACTIONS(2578), + [anon_sym_pub] = ACTIONS(2578), + [anon_sym_return] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(2578), + [anon_sym_trait] = ACTIONS(2578), + [anon_sym_type] = ACTIONS(2578), + [anon_sym_union] = ACTIONS(2578), + [anon_sym_unsafe] = ACTIONS(2578), + [anon_sym_use] = ACTIONS(2578), + [anon_sym_while] = ACTIONS(2578), + [anon_sym_extern] = ACTIONS(2578), + [anon_sym_yield] = ACTIONS(2578), + [anon_sym_move] = ACTIONS(2578), + [anon_sym_try] = ACTIONS(2578), + [sym_integer_literal] = ACTIONS(2576), + [aux_sym_string_literal_token1] = ACTIONS(2576), + [sym_char_literal] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2578), + [anon_sym_false] = ACTIONS(2578), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2578), + [sym_super] = ACTIONS(2578), + [sym_crate] = ACTIONS(2578), + [sym_metavariable] = ACTIONS(2576), + [sym__raw_string_literal_start] = ACTIONS(2576), + [sym_float_literal] = ACTIONS(2576), }, - [STATE(683)] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2582), - [sym_identifier] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_macro_rules_BANG] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_u8] = ACTIONS(2584), - [anon_sym_i8] = ACTIONS(2584), - [anon_sym_u16] = ACTIONS(2584), - [anon_sym_i16] = ACTIONS(2584), - [anon_sym_u32] = ACTIONS(2584), - [anon_sym_i32] = ACTIONS(2584), - [anon_sym_u64] = ACTIONS(2584), - [anon_sym_i64] = ACTIONS(2584), - [anon_sym_u128] = ACTIONS(2584), - [anon_sym_i128] = ACTIONS(2584), - [anon_sym_isize] = ACTIONS(2584), - [anon_sym_usize] = ACTIONS(2584), - [anon_sym_f32] = ACTIONS(2584), - [anon_sym_f64] = ACTIONS(2584), - [anon_sym_bool] = ACTIONS(2584), - [anon_sym_str] = ACTIONS(2584), - [anon_sym_char] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_DOT_DOT] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_POUND] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_async] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_fn] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_gen] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_impl] = ACTIONS(2584), - [anon_sym_let] = ACTIONS(2584), - [anon_sym_loop] = ACTIONS(2584), - [anon_sym_match] = ACTIONS(2584), - [anon_sym_mod] = ACTIONS(2584), - [anon_sym_pub] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_trait] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym_yield] = ACTIONS(2584), - [anon_sym_move] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2582), - [aux_sym_string_literal_token1] = ACTIONS(2582), - [sym_char_literal] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2584), - [anon_sym_false] = ACTIONS(2584), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2584), - [sym_super] = ACTIONS(2584), - [sym_crate] = ACTIONS(2584), - [sym_metavariable] = ACTIONS(2582), - [sym__raw_string_literal_start] = ACTIONS(2582), - [sym_float_literal] = ACTIONS(2582), + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_macro_rules_BANG] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_u8] = ACTIONS(2582), + [anon_sym_i8] = ACTIONS(2582), + [anon_sym_u16] = ACTIONS(2582), + [anon_sym_i16] = ACTIONS(2582), + [anon_sym_u32] = ACTIONS(2582), + [anon_sym_i32] = ACTIONS(2582), + [anon_sym_u64] = ACTIONS(2582), + [anon_sym_i64] = ACTIONS(2582), + [anon_sym_u128] = ACTIONS(2582), + [anon_sym_i128] = ACTIONS(2582), + [anon_sym_isize] = ACTIONS(2582), + [anon_sym_usize] = ACTIONS(2582), + [anon_sym_f32] = ACTIONS(2582), + [anon_sym_f64] = ACTIONS(2582), + [anon_sym_bool] = ACTIONS(2582), + [anon_sym_str] = ACTIONS(2582), + [anon_sym_char] = ACTIONS(2582), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_DOT_DOT] = ACTIONS(2580), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2582), + [anon_sym_async] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_fn] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_gen] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_impl] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2582), + [anon_sym_loop] = ACTIONS(2582), + [anon_sym_match] = ACTIONS(2582), + [anon_sym_mod] = ACTIONS(2582), + [anon_sym_pub] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_trait] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2582), + [anon_sym_use] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym_yield] = ACTIONS(2582), + [anon_sym_move] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2582), + [sym_integer_literal] = ACTIONS(2580), + [aux_sym_string_literal_token1] = ACTIONS(2580), + [sym_char_literal] = ACTIONS(2580), + [anon_sym_true] = ACTIONS(2582), + [anon_sym_false] = ACTIONS(2582), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2582), + [sym_super] = ACTIONS(2582), + [sym_crate] = ACTIONS(2582), + [sym_metavariable] = ACTIONS(2580), + [sym__raw_string_literal_start] = ACTIONS(2580), + [sym_float_literal] = ACTIONS(2580), }, - [STATE(684)] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_macro_rules_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_u8] = ACTIONS(2588), - [anon_sym_i8] = ACTIONS(2588), - [anon_sym_u16] = ACTIONS(2588), - [anon_sym_i16] = ACTIONS(2588), - [anon_sym_u32] = ACTIONS(2588), - [anon_sym_i32] = ACTIONS(2588), - [anon_sym_u64] = ACTIONS(2588), - [anon_sym_i64] = ACTIONS(2588), - [anon_sym_u128] = ACTIONS(2588), - [anon_sym_i128] = ACTIONS(2588), - [anon_sym_isize] = ACTIONS(2588), - [anon_sym_usize] = ACTIONS(2588), - [anon_sym_f32] = ACTIONS(2588), - [anon_sym_f64] = ACTIONS(2588), - [anon_sym_bool] = ACTIONS(2588), - [anon_sym_str] = ACTIONS(2588), - [anon_sym_char] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_DOT_DOT] = ACTIONS(2586), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_fn] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_gen] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_impl] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_loop] = ACTIONS(2588), - [anon_sym_match] = ACTIONS(2588), - [anon_sym_mod] = ACTIONS(2588), - [anon_sym_pub] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_unsafe] = ACTIONS(2588), - [anon_sym_use] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_move] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [sym_integer_literal] = ACTIONS(2586), - [aux_sym_string_literal_token1] = ACTIONS(2586), - [sym_char_literal] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_crate] = ACTIONS(2588), - [sym_metavariable] = ACTIONS(2586), - [sym__raw_string_literal_start] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(2586), + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_macro_rules_BANG] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_u8] = ACTIONS(2586), + [anon_sym_i8] = ACTIONS(2586), + [anon_sym_u16] = ACTIONS(2586), + [anon_sym_i16] = ACTIONS(2586), + [anon_sym_u32] = ACTIONS(2586), + [anon_sym_i32] = ACTIONS(2586), + [anon_sym_u64] = ACTIONS(2586), + [anon_sym_i64] = ACTIONS(2586), + [anon_sym_u128] = ACTIONS(2586), + [anon_sym_i128] = ACTIONS(2586), + [anon_sym_isize] = ACTIONS(2586), + [anon_sym_usize] = ACTIONS(2586), + [anon_sym_f32] = ACTIONS(2586), + [anon_sym_f64] = ACTIONS(2586), + [anon_sym_bool] = ACTIONS(2586), + [anon_sym_str] = ACTIONS(2586), + [anon_sym_char] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_DOT_DOT] = ACTIONS(2584), + [anon_sym_COLON_COLON] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_fn] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_gen] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_impl] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_loop] = ACTIONS(2586), + [anon_sym_match] = ACTIONS(2586), + [anon_sym_mod] = ACTIONS(2586), + [anon_sym_pub] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_trait] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_unsafe] = ACTIONS(2586), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym_yield] = ACTIONS(2586), + [anon_sym_move] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [sym_integer_literal] = ACTIONS(2584), + [aux_sym_string_literal_token1] = ACTIONS(2584), + [sym_char_literal] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2586), + [anon_sym_false] = ACTIONS(2586), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2586), + [sym_super] = ACTIONS(2586), + [sym_crate] = ACTIONS(2586), + [sym_metavariable] = ACTIONS(2584), + [sym__raw_string_literal_start] = ACTIONS(2584), + [sym_float_literal] = ACTIONS(2584), }, - [STATE(685)] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_macro_rules_BANG] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_u8] = ACTIONS(2592), - [anon_sym_i8] = ACTIONS(2592), - [anon_sym_u16] = ACTIONS(2592), - [anon_sym_i16] = ACTIONS(2592), - [anon_sym_u32] = ACTIONS(2592), - [anon_sym_i32] = ACTIONS(2592), - [anon_sym_u64] = ACTIONS(2592), - [anon_sym_i64] = ACTIONS(2592), - [anon_sym_u128] = ACTIONS(2592), - [anon_sym_i128] = ACTIONS(2592), - [anon_sym_isize] = ACTIONS(2592), - [anon_sym_usize] = ACTIONS(2592), - [anon_sym_f32] = ACTIONS(2592), - [anon_sym_f64] = ACTIONS(2592), - [anon_sym_bool] = ACTIONS(2592), - [anon_sym_str] = ACTIONS(2592), - [anon_sym_char] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_async] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_fn] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_gen] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_impl] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_loop] = ACTIONS(2592), - [anon_sym_match] = ACTIONS(2592), - [anon_sym_mod] = ACTIONS(2592), - [anon_sym_pub] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_struct] = ACTIONS(2592), - [anon_sym_trait] = ACTIONS(2592), - [anon_sym_type] = ACTIONS(2592), - [anon_sym_union] = ACTIONS(2592), - [anon_sym_unsafe] = ACTIONS(2592), - [anon_sym_use] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2592), - [anon_sym_move] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [sym_integer_literal] = ACTIONS(2590), - [aux_sym_string_literal_token1] = ACTIONS(2590), - [sym_char_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2592), - [sym_super] = ACTIONS(2592), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2590), - [sym__raw_string_literal_start] = ACTIONS(2590), - [sym_float_literal] = ACTIONS(2590), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_u8] = ACTIONS(2590), + [anon_sym_i8] = ACTIONS(2590), + [anon_sym_u16] = ACTIONS(2590), + [anon_sym_i16] = ACTIONS(2590), + [anon_sym_u32] = ACTIONS(2590), + [anon_sym_i32] = ACTIONS(2590), + [anon_sym_u64] = ACTIONS(2590), + [anon_sym_i64] = ACTIONS(2590), + [anon_sym_u128] = ACTIONS(2590), + [anon_sym_i128] = ACTIONS(2590), + [anon_sym_isize] = ACTIONS(2590), + [anon_sym_usize] = ACTIONS(2590), + [anon_sym_f32] = ACTIONS(2590), + [anon_sym_f64] = ACTIONS(2590), + [anon_sym_bool] = ACTIONS(2590), + [anon_sym_str] = ACTIONS(2590), + [anon_sym_char] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_fn] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_gen] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_impl] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_loop] = ACTIONS(2590), + [anon_sym_match] = ACTIONS(2590), + [anon_sym_mod] = ACTIONS(2590), + [anon_sym_pub] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_trait] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_unsafe] = ACTIONS(2590), + [anon_sym_use] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_move] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [sym_integer_literal] = ACTIONS(2588), + [aux_sym_string_literal_token1] = ACTIONS(2588), + [sym_char_literal] = ACTIONS(2588), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2590), + [sym_metavariable] = ACTIONS(2588), + [sym__raw_string_literal_start] = ACTIONS(2588), + [sym_float_literal] = ACTIONS(2588), }, - [STATE(686)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_identifier] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_macro_rules_BANG] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_u8] = ACTIONS(2594), + [anon_sym_i8] = ACTIONS(2594), + [anon_sym_u16] = ACTIONS(2594), + [anon_sym_i16] = ACTIONS(2594), + [anon_sym_u32] = ACTIONS(2594), + [anon_sym_i32] = ACTIONS(2594), + [anon_sym_u64] = ACTIONS(2594), + [anon_sym_i64] = ACTIONS(2594), + [anon_sym_u128] = ACTIONS(2594), + [anon_sym_i128] = ACTIONS(2594), + [anon_sym_isize] = ACTIONS(2594), + [anon_sym_usize] = ACTIONS(2594), + [anon_sym_f32] = ACTIONS(2594), + [anon_sym_f64] = ACTIONS(2594), + [anon_sym_bool] = ACTIONS(2594), + [anon_sym_str] = ACTIONS(2594), + [anon_sym_char] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_DOT_DOT] = ACTIONS(2592), + [anon_sym_COLON_COLON] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_async] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [anon_sym_fn] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_gen] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_impl] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_loop] = ACTIONS(2594), + [anon_sym_match] = ACTIONS(2594), + [anon_sym_mod] = ACTIONS(2594), + [anon_sym_pub] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(2594), + [anon_sym_trait] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_unsafe] = ACTIONS(2594), + [anon_sym_use] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_extern] = ACTIONS(2594), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_move] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [sym_integer_literal] = ACTIONS(2592), + [aux_sym_string_literal_token1] = ACTIONS(2592), + [sym_char_literal] = ACTIONS(2592), + [anon_sym_true] = ACTIONS(2594), + [anon_sym_false] = ACTIONS(2594), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2594), + [sym_super] = ACTIONS(2594), + [sym_crate] = ACTIONS(2594), + [sym_metavariable] = ACTIONS(2592), + [sym__raw_string_literal_start] = ACTIONS(2592), + [sym_float_literal] = ACTIONS(2592), + }, + [STATE(664)] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), [ts_builtin_sym_end] = ACTIONS(2596), [sym_identifier] = ACTIONS(2598), [anon_sym_SEMI] = ACTIONS(2596), @@ -87113,9 +85502,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2596), [sym_float_literal] = ACTIONS(2596), }, - [STATE(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_macro_rules_BANG] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_async] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_impl] = ACTIONS(1439), + [anon_sym_let] = ACTIONS(1439), + [anon_sym_loop] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1439), + [anon_sym_mod] = ACTIONS(1439), + [anon_sym_pub] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_trait] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_unsafe] = ACTIONS(1439), + [anon_sym_use] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym_yield] = ACTIONS(1439), + [anon_sym_move] = ACTIONS(1439), + [anon_sym_try] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), + }, + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), + }, + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_macro_rules_BANG] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_impl] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_mod] = ACTIONS(1443), + [anon_sym_pub] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_struct] = ACTIONS(1443), + [anon_sym_trait] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), + }, + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2600), [sym_identifier] = ACTIONS(2602), [anon_sym_SEMI] = ACTIONS(2600), @@ -87194,9 +85826,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2600), [sym_float_literal] = ACTIONS(2600), }, - [STATE(689)] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2604), [sym_identifier] = ACTIONS(2606), [anon_sym_SEMI] = ACTIONS(2604), @@ -87275,9 +85907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2604), [sym_float_literal] = ACTIONS(2604), }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2608), [sym_identifier] = ACTIONS(2610), [anon_sym_SEMI] = ACTIONS(2608), @@ -87356,9 +85988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2608), [sym_float_literal] = ACTIONS(2608), }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2612), [sym_identifier] = ACTIONS(2614), [anon_sym_SEMI] = ACTIONS(2612), @@ -87437,9 +86069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2612), [sym_float_literal] = ACTIONS(2612), }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [STATE(672)] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(2616), [sym_identifier] = ACTIONS(2618), [anon_sym_SEMI] = ACTIONS(2616), @@ -87518,90 +86150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2616), [sym_float_literal] = ACTIONS(2616), }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_macro_rules_BANG] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_u8] = ACTIONS(1521), - [anon_sym_i8] = ACTIONS(1521), - [anon_sym_u16] = ACTIONS(1521), - [anon_sym_i16] = ACTIONS(1521), - [anon_sym_u32] = ACTIONS(1521), - [anon_sym_i32] = ACTIONS(1521), - [anon_sym_u64] = ACTIONS(1521), - [anon_sym_i64] = ACTIONS(1521), - [anon_sym_u128] = ACTIONS(1521), - [anon_sym_i128] = ACTIONS(1521), - [anon_sym_isize] = ACTIONS(1521), - [anon_sym_usize] = ACTIONS(1521), - [anon_sym_f32] = ACTIONS(1521), - [anon_sym_f64] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_str] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1519), - [anon_sym_POUND] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_gen] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_impl] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_loop] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1521), - [anon_sym_mod] = ACTIONS(1521), - [anon_sym_pub] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_trait] = ACTIONS(1521), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_unsafe] = ACTIONS(1521), - [anon_sym_use] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_move] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1519), - [aux_sym_string_literal_token1] = ACTIONS(1519), - [sym_char_literal] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym__raw_string_literal_start] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), - }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), [ts_builtin_sym_end] = ACTIONS(2620), [sym_identifier] = ACTIONS(2622), [anon_sym_SEMI] = ACTIONS(2620), @@ -87680,9 +86231,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2620), [sym_float_literal] = ACTIONS(2620), }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2624), [sym_identifier] = ACTIONS(2626), [anon_sym_SEMI] = ACTIONS(2624), @@ -87761,9 +86312,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2624), [sym_float_literal] = ACTIONS(2624), }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2628), [sym_identifier] = ACTIONS(2630), [anon_sym_SEMI] = ACTIONS(2628), @@ -87842,9 +86393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2628), [sym_float_literal] = ACTIONS(2628), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2632), [sym_identifier] = ACTIONS(2634), [anon_sym_SEMI] = ACTIONS(2632), @@ -87923,9 +86474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2632), [sym_float_literal] = ACTIONS(2632), }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2636), [sym_identifier] = ACTIONS(2638), [anon_sym_SEMI] = ACTIONS(2636), @@ -88004,9 +86555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2636), [sym_float_literal] = ACTIONS(2636), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2640), [sym_identifier] = ACTIONS(2642), [anon_sym_SEMI] = ACTIONS(2640), @@ -88085,9 +86636,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2640), [sym_float_literal] = ACTIONS(2640), }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), + [STATE(679)] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2644), [sym_identifier] = ACTIONS(2646), [anon_sym_SEMI] = ACTIONS(2644), @@ -88166,9 +86717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2644), [sym_float_literal] = ACTIONS(2644), }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2648), [sym_identifier] = ACTIONS(2650), [anon_sym_SEMI] = ACTIONS(2648), @@ -88247,9 +86798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2648), [sym_float_literal] = ACTIONS(2648), }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2652), [sym_identifier] = ACTIONS(2654), [anon_sym_SEMI] = ACTIONS(2652), @@ -88328,9 +86879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2652), [sym_float_literal] = ACTIONS(2652), }, - [STATE(703)] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2656), [sym_identifier] = ACTIONS(2658), [anon_sym_SEMI] = ACTIONS(2656), @@ -88409,9 +86960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2656), [sym_float_literal] = ACTIONS(2656), }, - [STATE(704)] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2660), [sym_identifier] = ACTIONS(2662), [anon_sym_SEMI] = ACTIONS(2660), @@ -88490,9 +87041,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2660), [sym_float_literal] = ACTIONS(2660), }, - [STATE(705)] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [STATE(684)] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2664), [sym_identifier] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2664), @@ -88571,9 +87122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2664), [sym_float_literal] = ACTIONS(2664), }, - [STATE(706)] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [STATE(685)] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(2668), [sym_identifier] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2668), @@ -88652,657 +87203,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2668), [sym_float_literal] = ACTIONS(2668), }, - [STATE(707)] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2672), - [sym_identifier] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_macro_rules_BANG] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2672), + [STATE(686)] = { + [sym_empty_statement] = STATE(1113), + [sym_macro_definition] = STATE(1113), + [sym_attribute_item] = STATE(1113), + [sym_inner_attribute_item] = STATE(1113), + [sym_mod_item] = STATE(1113), + [sym_foreign_mod_item] = STATE(1113), + [sym_struct_item] = STATE(1113), + [sym_union_item] = STATE(1113), + [sym_enum_item] = STATE(1113), + [sym_extern_crate_declaration] = STATE(1113), + [sym_const_item] = STATE(1113), + [sym_static_item] = STATE(1113), + [sym_type_item] = STATE(1113), + [sym_function_item] = STATE(1113), + [sym_function_signature_item] = STATE(1113), + [sym_function_modifiers] = STATE(3779), + [sym_impl_item] = STATE(1113), + [sym_trait_item] = STATE(1113), + [sym_associated_type] = STATE(1113), + [sym_let_declaration] = STATE(1113), + [sym_use_declaration] = STATE(1113), + [sym_extern_modifier] = STATE(2273), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3731), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1113), + [sym_scoped_identifier] = STATE(3194), + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [aux_sym_declaration_list_repeat1] = STATE(694), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_u8] = ACTIONS(2674), - [anon_sym_i8] = ACTIONS(2674), - [anon_sym_u16] = ACTIONS(2674), - [anon_sym_i16] = ACTIONS(2674), - [anon_sym_u32] = ACTIONS(2674), - [anon_sym_i32] = ACTIONS(2674), - [anon_sym_u64] = ACTIONS(2674), - [anon_sym_i64] = ACTIONS(2674), - [anon_sym_u128] = ACTIONS(2674), - [anon_sym_i128] = ACTIONS(2674), - [anon_sym_isize] = ACTIONS(2674), - [anon_sym_usize] = ACTIONS(2674), - [anon_sym_f32] = ACTIONS(2674), - [anon_sym_f64] = ACTIONS(2674), - [anon_sym_bool] = ACTIONS(2674), - [anon_sym_str] = ACTIONS(2674), - [anon_sym_char] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_DOT_DOT] = ACTIONS(2672), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_POUND] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2674), - [anon_sym_async] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_fn] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_gen] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_impl] = ACTIONS(2674), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_loop] = ACTIONS(2674), - [anon_sym_match] = ACTIONS(2674), - [anon_sym_mod] = ACTIONS(2674), - [anon_sym_pub] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2674), - [anon_sym_trait] = ACTIONS(2674), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_union] = ACTIONS(2674), - [anon_sym_unsafe] = ACTIONS(2674), - [anon_sym_use] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym_yield] = ACTIONS(2674), - [anon_sym_move] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [sym_integer_literal] = ACTIONS(2672), - [aux_sym_string_literal_token1] = ACTIONS(2672), - [sym_char_literal] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2674), - [sym_super] = ACTIONS(2674), - [sym_crate] = ACTIONS(2674), - [sym_metavariable] = ACTIONS(2672), - [sym__raw_string_literal_start] = ACTIONS(2672), - [sym_float_literal] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2524), + [anon_sym_i8] = ACTIONS(2524), + [anon_sym_u16] = ACTIONS(2524), + [anon_sym_i16] = ACTIONS(2524), + [anon_sym_u32] = ACTIONS(2524), + [anon_sym_i32] = ACTIONS(2524), + [anon_sym_u64] = ACTIONS(2524), + [anon_sym_i64] = ACTIONS(2524), + [anon_sym_u128] = ACTIONS(2524), + [anon_sym_i128] = ACTIONS(2524), + [anon_sym_isize] = ACTIONS(2524), + [anon_sym_usize] = ACTIONS(2524), + [anon_sym_f32] = ACTIONS(2524), + [anon_sym_f64] = ACTIONS(2524), + [anon_sym_bool] = ACTIONS(2524), + [anon_sym_str] = ACTIONS(2524), + [anon_sym_char] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2534), + [anon_sym_fn] = ACTIONS(2536), + [anon_sym_gen] = ACTIONS(2538), + [anon_sym_impl] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_mod] = ACTIONS(2544), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2550), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2558), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), + [sym_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2566), }, - [STATE(708)] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2676), - [sym_identifier] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_macro_rules_BANG] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_u8] = ACTIONS(2678), - [anon_sym_i8] = ACTIONS(2678), - [anon_sym_u16] = ACTIONS(2678), - [anon_sym_i16] = ACTIONS(2678), - [anon_sym_u32] = ACTIONS(2678), - [anon_sym_i32] = ACTIONS(2678), - [anon_sym_u64] = ACTIONS(2678), - [anon_sym_i64] = ACTIONS(2678), - [anon_sym_u128] = ACTIONS(2678), - [anon_sym_i128] = ACTIONS(2678), - [anon_sym_isize] = ACTIONS(2678), - [anon_sym_usize] = ACTIONS(2678), - [anon_sym_f32] = ACTIONS(2678), - [anon_sym_f64] = ACTIONS(2678), - [anon_sym_bool] = ACTIONS(2678), - [anon_sym_str] = ACTIONS(2678), - [anon_sym_char] = ACTIONS(2678), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_DOT_DOT] = ACTIONS(2676), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_async] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_fn] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_gen] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_impl] = ACTIONS(2678), - [anon_sym_let] = ACTIONS(2678), - [anon_sym_loop] = ACTIONS(2678), - [anon_sym_match] = ACTIONS(2678), - [anon_sym_mod] = ACTIONS(2678), - [anon_sym_pub] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2678), - [anon_sym_trait] = ACTIONS(2678), - [anon_sym_type] = ACTIONS(2678), - [anon_sym_union] = ACTIONS(2678), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_use] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym_yield] = ACTIONS(2678), - [anon_sym_move] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [sym_integer_literal] = ACTIONS(2676), - [aux_sym_string_literal_token1] = ACTIONS(2676), - [sym_char_literal] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2678), - [anon_sym_false] = ACTIONS(2678), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2678), - [sym_super] = ACTIONS(2678), - [sym_crate] = ACTIONS(2678), - [sym_metavariable] = ACTIONS(2676), - [sym__raw_string_literal_start] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2676), + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_macro_rules_BANG] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_u8] = ACTIONS(2676), + [anon_sym_i8] = ACTIONS(2676), + [anon_sym_u16] = ACTIONS(2676), + [anon_sym_i16] = ACTIONS(2676), + [anon_sym_u32] = ACTIONS(2676), + [anon_sym_i32] = ACTIONS(2676), + [anon_sym_u64] = ACTIONS(2676), + [anon_sym_i64] = ACTIONS(2676), + [anon_sym_u128] = ACTIONS(2676), + [anon_sym_i128] = ACTIONS(2676), + [anon_sym_isize] = ACTIONS(2676), + [anon_sym_usize] = ACTIONS(2676), + [anon_sym_f32] = ACTIONS(2676), + [anon_sym_f64] = ACTIONS(2676), + [anon_sym_bool] = ACTIONS(2676), + [anon_sym_str] = ACTIONS(2676), + [anon_sym_char] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [anon_sym_COLON_COLON] = ACTIONS(2674), + [anon_sym_POUND] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_async] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_gen] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_impl] = ACTIONS(2676), + [anon_sym_let] = ACTIONS(2676), + [anon_sym_loop] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_mod] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_trait] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_use] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_yield] = ACTIONS(2676), + [anon_sym_move] = ACTIONS(2676), + [anon_sym_try] = ACTIONS(2676), + [sym_integer_literal] = ACTIONS(2674), + [aux_sym_string_literal_token1] = ACTIONS(2674), + [sym_char_literal] = ACTIONS(2674), + [anon_sym_true] = ACTIONS(2676), + [anon_sym_false] = ACTIONS(2676), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2676), + [sym_super] = ACTIONS(2676), + [sym_crate] = ACTIONS(2676), + [sym_metavariable] = ACTIONS(2674), + [sym__raw_string_literal_start] = ACTIONS(2674), + [sym_float_literal] = ACTIONS(2674), }, - [STATE(709)] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2680), - [sym_identifier] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_macro_rules_BANG] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_u8] = ACTIONS(2682), - [anon_sym_i8] = ACTIONS(2682), - [anon_sym_u16] = ACTIONS(2682), - [anon_sym_i16] = ACTIONS(2682), - [anon_sym_u32] = ACTIONS(2682), - [anon_sym_i32] = ACTIONS(2682), - [anon_sym_u64] = ACTIONS(2682), - [anon_sym_i64] = ACTIONS(2682), - [anon_sym_u128] = ACTIONS(2682), - [anon_sym_i128] = ACTIONS(2682), - [anon_sym_isize] = ACTIONS(2682), - [anon_sym_usize] = ACTIONS(2682), - [anon_sym_f32] = ACTIONS(2682), - [anon_sym_f64] = ACTIONS(2682), - [anon_sym_bool] = ACTIONS(2682), - [anon_sym_str] = ACTIONS(2682), - [anon_sym_char] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_DOT_DOT] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_fn] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_gen] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_impl] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_loop] = ACTIONS(2682), - [anon_sym_match] = ACTIONS(2682), - [anon_sym_mod] = ACTIONS(2682), - [anon_sym_pub] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_trait] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_unsafe] = ACTIONS(2682), - [anon_sym_use] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_move] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [sym_integer_literal] = ACTIONS(2680), - [aux_sym_string_literal_token1] = ACTIONS(2680), - [sym_char_literal] = ACTIONS(2680), - [anon_sym_true] = ACTIONS(2682), - [anon_sym_false] = ACTIONS(2682), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_crate] = ACTIONS(2682), - [sym_metavariable] = ACTIONS(2680), - [sym__raw_string_literal_start] = ACTIONS(2680), - [sym_float_literal] = ACTIONS(2680), + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_macro_rules_BANG] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_u8] = ACTIONS(2680), + [anon_sym_i8] = ACTIONS(2680), + [anon_sym_u16] = ACTIONS(2680), + [anon_sym_i16] = ACTIONS(2680), + [anon_sym_u32] = ACTIONS(2680), + [anon_sym_i32] = ACTIONS(2680), + [anon_sym_u64] = ACTIONS(2680), + [anon_sym_i64] = ACTIONS(2680), + [anon_sym_u128] = ACTIONS(2680), + [anon_sym_i128] = ACTIONS(2680), + [anon_sym_isize] = ACTIONS(2680), + [anon_sym_usize] = ACTIONS(2680), + [anon_sym_f32] = ACTIONS(2680), + [anon_sym_f64] = ACTIONS(2680), + [anon_sym_bool] = ACTIONS(2680), + [anon_sym_str] = ACTIONS(2680), + [anon_sym_char] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_DOT_DOT] = ACTIONS(2678), + [anon_sym_COLON_COLON] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_gen] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_impl] = ACTIONS(2680), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_loop] = ACTIONS(2680), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_mod] = ACTIONS(2680), + [anon_sym_pub] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_trait] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_use] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_move] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2678), + [aux_sym_string_literal_token1] = ACTIONS(2678), + [sym_char_literal] = ACTIONS(2678), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2680), + [sym_super] = ACTIONS(2680), + [sym_crate] = ACTIONS(2680), + [sym_metavariable] = ACTIONS(2678), + [sym__raw_string_literal_start] = ACTIONS(2678), + [sym_float_literal] = ACTIONS(2678), }, - [STATE(710)] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2684), - [sym_identifier] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_macro_rules_BANG] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_u8] = ACTIONS(2686), - [anon_sym_i8] = ACTIONS(2686), - [anon_sym_u16] = ACTIONS(2686), - [anon_sym_i16] = ACTIONS(2686), - [anon_sym_u32] = ACTIONS(2686), - [anon_sym_i32] = ACTIONS(2686), - [anon_sym_u64] = ACTIONS(2686), - [anon_sym_i64] = ACTIONS(2686), - [anon_sym_u128] = ACTIONS(2686), - [anon_sym_i128] = ACTIONS(2686), - [anon_sym_isize] = ACTIONS(2686), - [anon_sym_usize] = ACTIONS(2686), - [anon_sym_f32] = ACTIONS(2686), - [anon_sym_f64] = ACTIONS(2686), - [anon_sym_bool] = ACTIONS(2686), - [anon_sym_str] = ACTIONS(2686), - [anon_sym_char] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2684), - [anon_sym_DOT_DOT] = ACTIONS(2684), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2686), - [anon_sym_async] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - [anon_sym_fn] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_gen] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_impl] = ACTIONS(2686), - [anon_sym_let] = ACTIONS(2686), - [anon_sym_loop] = ACTIONS(2686), - [anon_sym_match] = ACTIONS(2686), - [anon_sym_mod] = ACTIONS(2686), - [anon_sym_pub] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2686), - [anon_sym_trait] = ACTIONS(2686), - [anon_sym_type] = ACTIONS(2686), - [anon_sym_union] = ACTIONS(2686), - [anon_sym_unsafe] = ACTIONS(2686), - [anon_sym_use] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_extern] = ACTIONS(2686), - [anon_sym_yield] = ACTIONS(2686), - [anon_sym_move] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2686), - [sym_integer_literal] = ACTIONS(2684), - [aux_sym_string_literal_token1] = ACTIONS(2684), - [sym_char_literal] = ACTIONS(2684), - [anon_sym_true] = ACTIONS(2686), - [anon_sym_false] = ACTIONS(2686), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2686), - [sym_super] = ACTIONS(2686), - [sym_crate] = ACTIONS(2686), - [sym_metavariable] = ACTIONS(2684), - [sym__raw_string_literal_start] = ACTIONS(2684), - [sym_float_literal] = ACTIONS(2684), + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym_macro_rules_BANG] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_u8] = ACTIONS(2684), + [anon_sym_i8] = ACTIONS(2684), + [anon_sym_u16] = ACTIONS(2684), + [anon_sym_i16] = ACTIONS(2684), + [anon_sym_u32] = ACTIONS(2684), + [anon_sym_i32] = ACTIONS(2684), + [anon_sym_u64] = ACTIONS(2684), + [anon_sym_i64] = ACTIONS(2684), + [anon_sym_u128] = ACTIONS(2684), + [anon_sym_i128] = ACTIONS(2684), + [anon_sym_isize] = ACTIONS(2684), + [anon_sym_usize] = ACTIONS(2684), + [anon_sym_f32] = ACTIONS(2684), + [anon_sym_f64] = ACTIONS(2684), + [anon_sym_bool] = ACTIONS(2684), + [anon_sym_str] = ACTIONS(2684), + [anon_sym_char] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2682), + [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_async] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_gen] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_impl] = ACTIONS(2684), + [anon_sym_let] = ACTIONS(2684), + [anon_sym_loop] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_mod] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_trait] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_use] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym_yield] = ACTIONS(2684), + [anon_sym_move] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [sym_integer_literal] = ACTIONS(2682), + [aux_sym_string_literal_token1] = ACTIONS(2682), + [sym_char_literal] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2684), + [sym_super] = ACTIONS(2684), + [sym_crate] = ACTIONS(2684), + [sym_metavariable] = ACTIONS(2682), + [sym__raw_string_literal_start] = ACTIONS(2682), + [sym_float_literal] = ACTIONS(2682), }, - [STATE(711)] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2688), - [sym_identifier] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_macro_rules_BANG] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_u8] = ACTIONS(2690), - [anon_sym_i8] = ACTIONS(2690), - [anon_sym_u16] = ACTIONS(2690), - [anon_sym_i16] = ACTIONS(2690), - [anon_sym_u32] = ACTIONS(2690), - [anon_sym_i32] = ACTIONS(2690), - [anon_sym_u64] = ACTIONS(2690), - [anon_sym_i64] = ACTIONS(2690), - [anon_sym_u128] = ACTIONS(2690), - [anon_sym_i128] = ACTIONS(2690), - [anon_sym_isize] = ACTIONS(2690), - [anon_sym_usize] = ACTIONS(2690), - [anon_sym_f32] = ACTIONS(2690), - [anon_sym_f64] = ACTIONS(2690), - [anon_sym_bool] = ACTIONS(2690), - [anon_sym_str] = ACTIONS(2690), - [anon_sym_char] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2688), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2690), - [anon_sym_async] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_fn] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_gen] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_impl] = ACTIONS(2690), - [anon_sym_let] = ACTIONS(2690), - [anon_sym_loop] = ACTIONS(2690), - [anon_sym_match] = ACTIONS(2690), - [anon_sym_mod] = ACTIONS(2690), - [anon_sym_pub] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2690), - [anon_sym_trait] = ACTIONS(2690), - [anon_sym_type] = ACTIONS(2690), - [anon_sym_union] = ACTIONS(2690), - [anon_sym_unsafe] = ACTIONS(2690), - [anon_sym_use] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym_yield] = ACTIONS(2690), - [anon_sym_move] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [sym_integer_literal] = ACTIONS(2688), - [aux_sym_string_literal_token1] = ACTIONS(2688), - [sym_char_literal] = ACTIONS(2688), - [anon_sym_true] = ACTIONS(2690), - [anon_sym_false] = ACTIONS(2690), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2690), - [sym_super] = ACTIONS(2690), - [sym_crate] = ACTIONS(2690), - [sym_metavariable] = ACTIONS(2688), - [sym__raw_string_literal_start] = ACTIONS(2688), - [sym_float_literal] = ACTIONS(2688), + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_macro_rules_BANG] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_u8] = ACTIONS(2688), + [anon_sym_i8] = ACTIONS(2688), + [anon_sym_u16] = ACTIONS(2688), + [anon_sym_i16] = ACTIONS(2688), + [anon_sym_u32] = ACTIONS(2688), + [anon_sym_i32] = ACTIONS(2688), + [anon_sym_u64] = ACTIONS(2688), + [anon_sym_i64] = ACTIONS(2688), + [anon_sym_u128] = ACTIONS(2688), + [anon_sym_i128] = ACTIONS(2688), + [anon_sym_isize] = ACTIONS(2688), + [anon_sym_usize] = ACTIONS(2688), + [anon_sym_f32] = ACTIONS(2688), + [anon_sym_f64] = ACTIONS(2688), + [anon_sym_bool] = ACTIONS(2688), + [anon_sym_str] = ACTIONS(2688), + [anon_sym_char] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_DOT_DOT] = ACTIONS(2686), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_gen] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_impl] = ACTIONS(2688), + [anon_sym_let] = ACTIONS(2688), + [anon_sym_loop] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_mod] = ACTIONS(2688), + [anon_sym_pub] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_trait] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_use] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_move] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [sym_integer_literal] = ACTIONS(2686), + [aux_sym_string_literal_token1] = ACTIONS(2686), + [sym_char_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2688), + [anon_sym_false] = ACTIONS(2688), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2688), + [sym_super] = ACTIONS(2688), + [sym_crate] = ACTIONS(2688), + [sym_metavariable] = ACTIONS(2686), + [sym__raw_string_literal_start] = ACTIONS(2686), + [sym_float_literal] = ACTIONS(2686), }, - [STATE(712)] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_macro_rules_BANG] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_u8] = ACTIONS(2694), - [anon_sym_i8] = ACTIONS(2694), - [anon_sym_u16] = ACTIONS(2694), - [anon_sym_i16] = ACTIONS(2694), - [anon_sym_u32] = ACTIONS(2694), - [anon_sym_i32] = ACTIONS(2694), - [anon_sym_u64] = ACTIONS(2694), - [anon_sym_i64] = ACTIONS(2694), - [anon_sym_u128] = ACTIONS(2694), - [anon_sym_i128] = ACTIONS(2694), - [anon_sym_isize] = ACTIONS(2694), - [anon_sym_usize] = ACTIONS(2694), - [anon_sym_f32] = ACTIONS(2694), - [anon_sym_f64] = ACTIONS(2694), - [anon_sym_bool] = ACTIONS(2694), - [anon_sym_str] = ACTIONS(2694), - [anon_sym_char] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2692), - [anon_sym_COLON_COLON] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2694), - [anon_sym_async] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_gen] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_impl] = ACTIONS(2694), - [anon_sym_let] = ACTIONS(2694), - [anon_sym_loop] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_mod] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_trait] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_use] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_extern] = ACTIONS(2694), - [anon_sym_yield] = ACTIONS(2694), - [anon_sym_move] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [sym_integer_literal] = ACTIONS(2692), - [aux_sym_string_literal_token1] = ACTIONS(2692), - [sym_char_literal] = ACTIONS(2692), - [anon_sym_true] = ACTIONS(2694), - [anon_sym_false] = ACTIONS(2694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2694), - [sym_super] = ACTIONS(2694), - [sym_crate] = ACTIONS(2694), - [sym_metavariable] = ACTIONS(2692), - [sym__raw_string_literal_start] = ACTIONS(2692), - [sym_float_literal] = ACTIONS(2692), + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_macro_rules_BANG] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u128] = ACTIONS(2692), + [anon_sym_i128] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_str] = ACTIONS(2692), + [anon_sym_char] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2690), + [anon_sym_DOT_DOT] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_POUND] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2692), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_gen] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_impl] = ACTIONS(2692), + [anon_sym_let] = ACTIONS(2692), + [anon_sym_loop] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_mod] = ACTIONS(2692), + [anon_sym_pub] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_trait] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_use] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_move] = ACTIONS(2692), + [anon_sym_try] = ACTIONS(2692), + [sym_integer_literal] = ACTIONS(2690), + [aux_sym_string_literal_token1] = ACTIONS(2690), + [sym_char_literal] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2692), + [sym_super] = ACTIONS(2692), + [sym_crate] = ACTIONS(2692), + [sym_metavariable] = ACTIONS(2690), + [sym__raw_string_literal_start] = ACTIONS(2690), + [sym_float_literal] = ACTIONS(2690), }, - [STATE(713)] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_macro_rules_BANG] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_u8] = ACTIONS(2698), - [anon_sym_i8] = ACTIONS(2698), - [anon_sym_u16] = ACTIONS(2698), - [anon_sym_i16] = ACTIONS(2698), - [anon_sym_u32] = ACTIONS(2698), - [anon_sym_i32] = ACTIONS(2698), - [anon_sym_u64] = ACTIONS(2698), - [anon_sym_i64] = ACTIONS(2698), - [anon_sym_u128] = ACTIONS(2698), - [anon_sym_i128] = ACTIONS(2698), - [anon_sym_isize] = ACTIONS(2698), - [anon_sym_usize] = ACTIONS(2698), - [anon_sym_f32] = ACTIONS(2698), - [anon_sym_f64] = ACTIONS(2698), - [anon_sym_bool] = ACTIONS(2698), - [anon_sym_str] = ACTIONS(2698), - [anon_sym_char] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_DOT_DOT] = ACTIONS(2696), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2698), - [anon_sym_async] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_fn] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_gen] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_impl] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_loop] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2698), - [anon_sym_mod] = ACTIONS(2698), - [anon_sym_pub] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_trait] = ACTIONS(2698), - [anon_sym_type] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_unsafe] = ACTIONS(2698), - [anon_sym_use] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_yield] = ACTIONS(2698), - [anon_sym_move] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [sym_integer_literal] = ACTIONS(2696), - [aux_sym_string_literal_token1] = ACTIONS(2696), - [sym_char_literal] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2698), - [sym_super] = ACTIONS(2698), - [sym_crate] = ACTIONS(2698), - [sym_metavariable] = ACTIONS(2696), - [sym__raw_string_literal_start] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2696), + [STATE(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_macro_rules_BANG] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u128] = ACTIONS(2696), + [anon_sym_i128] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_str] = ACTIONS(2696), + [anon_sym_char] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_DOT_DOT] = ACTIONS(2694), + [anon_sym_COLON_COLON] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2696), + [anon_sym_async] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_fn] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_gen] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_impl] = ACTIONS(2696), + [anon_sym_let] = ACTIONS(2696), + [anon_sym_loop] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_mod] = ACTIONS(2696), + [anon_sym_pub] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_trait] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_unsafe] = ACTIONS(2696), + [anon_sym_use] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_move] = ACTIONS(2696), + [anon_sym_try] = ACTIONS(2696), + [sym_integer_literal] = ACTIONS(2694), + [aux_sym_string_literal_token1] = ACTIONS(2694), + [sym_char_literal] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2696), + [sym_super] = ACTIONS(2696), + [sym_crate] = ACTIONS(2696), + [sym_metavariable] = ACTIONS(2694), + [sym__raw_string_literal_start] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), }, - [STATE(714)] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_macro_rules_BANG] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_u8] = ACTIONS(2702), - [anon_sym_i8] = ACTIONS(2702), - [anon_sym_u16] = ACTIONS(2702), - [anon_sym_i16] = ACTIONS(2702), - [anon_sym_u32] = ACTIONS(2702), - [anon_sym_i32] = ACTIONS(2702), - [anon_sym_u64] = ACTIONS(2702), - [anon_sym_i64] = ACTIONS(2702), - [anon_sym_u128] = ACTIONS(2702), - [anon_sym_i128] = ACTIONS(2702), - [anon_sym_isize] = ACTIONS(2702), - [anon_sym_usize] = ACTIONS(2702), - [anon_sym_f32] = ACTIONS(2702), - [anon_sym_f64] = ACTIONS(2702), - [anon_sym_bool] = ACTIONS(2702), - [anon_sym_str] = ACTIONS(2702), - [anon_sym_char] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2700), - [anon_sym_COLON_COLON] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2702), - [anon_sym_async] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_fn] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_gen] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_impl] = ACTIONS(2702), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_loop] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2702), - [anon_sym_mod] = ACTIONS(2702), - [anon_sym_pub] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2702), - [anon_sym_trait] = ACTIONS(2702), - [anon_sym_type] = ACTIONS(2702), - [anon_sym_union] = ACTIONS(2702), - [anon_sym_unsafe] = ACTIONS(2702), - [anon_sym_use] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym_yield] = ACTIONS(2702), - [anon_sym_move] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [sym_integer_literal] = ACTIONS(2700), - [aux_sym_string_literal_token1] = ACTIONS(2700), - [sym_char_literal] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2702), - [sym_super] = ACTIONS(2702), - [sym_crate] = ACTIONS(2702), - [sym_metavariable] = ACTIONS(2700), - [sym__raw_string_literal_start] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), + [STATE(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_macro_rules_BANG] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_u8] = ACTIONS(2700), + [anon_sym_i8] = ACTIONS(2700), + [anon_sym_u16] = ACTIONS(2700), + [anon_sym_i16] = ACTIONS(2700), + [anon_sym_u32] = ACTIONS(2700), + [anon_sym_i32] = ACTIONS(2700), + [anon_sym_u64] = ACTIONS(2700), + [anon_sym_i64] = ACTIONS(2700), + [anon_sym_u128] = ACTIONS(2700), + [anon_sym_i128] = ACTIONS(2700), + [anon_sym_isize] = ACTIONS(2700), + [anon_sym_usize] = ACTIONS(2700), + [anon_sym_f32] = ACTIONS(2700), + [anon_sym_f64] = ACTIONS(2700), + [anon_sym_bool] = ACTIONS(2700), + [anon_sym_str] = ACTIONS(2700), + [anon_sym_char] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2698), + [anon_sym_COLON_COLON] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_gen] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_impl] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_loop] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_mod] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_trait] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_use] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_move] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [sym_integer_literal] = ACTIONS(2698), + [aux_sym_string_literal_token1] = ACTIONS(2698), + [sym_char_literal] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_crate] = ACTIONS(2700), + [sym_metavariable] = ACTIONS(2698), + [sym__raw_string_literal_start] = ACTIONS(2698), + [sym_float_literal] = ACTIONS(2698), }, - [STATE(715)] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), + [STATE(694)] = { + [sym_empty_statement] = STATE(1113), + [sym_macro_definition] = STATE(1113), + [sym_attribute_item] = STATE(1113), + [sym_inner_attribute_item] = STATE(1113), + [sym_mod_item] = STATE(1113), + [sym_foreign_mod_item] = STATE(1113), + [sym_struct_item] = STATE(1113), + [sym_union_item] = STATE(1113), + [sym_enum_item] = STATE(1113), + [sym_extern_crate_declaration] = STATE(1113), + [sym_const_item] = STATE(1113), + [sym_static_item] = STATE(1113), + [sym_type_item] = STATE(1113), + [sym_function_item] = STATE(1113), + [sym_function_signature_item] = STATE(1113), + [sym_function_modifiers] = STATE(3779), + [sym_impl_item] = STATE(1113), + [sym_trait_item] = STATE(1113), + [sym_associated_type] = STATE(1113), + [sym_let_declaration] = STATE(1113), + [sym_use_declaration] = STATE(1113), + [sym_extern_modifier] = STATE(2273), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3731), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1113), + [sym_scoped_identifier] = STATE(3194), + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [aux_sym_declaration_list_repeat1] = STATE(637), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_u8] = ACTIONS(2524), + [anon_sym_i8] = ACTIONS(2524), + [anon_sym_u16] = ACTIONS(2524), + [anon_sym_i16] = ACTIONS(2524), + [anon_sym_u32] = ACTIONS(2524), + [anon_sym_i32] = ACTIONS(2524), + [anon_sym_u64] = ACTIONS(2524), + [anon_sym_i64] = ACTIONS(2524), + [anon_sym_u128] = ACTIONS(2524), + [anon_sym_i128] = ACTIONS(2524), + [anon_sym_isize] = ACTIONS(2524), + [anon_sym_usize] = ACTIONS(2524), + [anon_sym_f32] = ACTIONS(2524), + [anon_sym_f64] = ACTIONS(2524), + [anon_sym_bool] = ACTIONS(2524), + [anon_sym_str] = ACTIONS(2524), + [anon_sym_char] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2534), + [anon_sym_fn] = ACTIONS(2536), + [anon_sym_gen] = ACTIONS(2538), + [anon_sym_impl] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_mod] = ACTIONS(2544), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2550), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2558), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), + [sym_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2566), + }, + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2704), [sym_identifier] = ACTIONS(2706), [anon_sym_SEMI] = ACTIONS(2704), @@ -89381,9 +88013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2704), [sym_float_literal] = ACTIONS(2704), }, - [STATE(716)] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2708), [sym_identifier] = ACTIONS(2710), [anon_sym_SEMI] = ACTIONS(2708), @@ -89462,9 +88094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2708), [sym_float_literal] = ACTIONS(2708), }, - [STATE(717)] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2712), [sym_identifier] = ACTIONS(2714), [anon_sym_SEMI] = ACTIONS(2712), @@ -89543,9 +88175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2712), [sym_float_literal] = ACTIONS(2712), }, - [STATE(718)] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2716), [sym_identifier] = ACTIONS(2718), [anon_sym_SEMI] = ACTIONS(2716), @@ -89624,9 +88256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2716), [sym_float_literal] = ACTIONS(2716), }, - [STATE(719)] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2720), [sym_identifier] = ACTIONS(2722), [anon_sym_SEMI] = ACTIONS(2720), @@ -89705,90 +88337,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2720), [sym_float_literal] = ACTIONS(2720), }, - [STATE(720)] = { - [sym_attribute_item] = STATE(1412), - [sym_inner_attribute_item] = STATE(1412), - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_match_pattern] = STATE(3748), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3115), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [aux_sym_match_arm_repeat1] = STATE(1064), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), - }, - [STATE(721)] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2724), [sym_identifier] = ACTIONS(2726), [anon_sym_SEMI] = ACTIONS(2724), @@ -89867,9 +88418,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2724), [sym_float_literal] = ACTIONS(2724), }, - [STATE(722)] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2728), [sym_identifier] = ACTIONS(2730), [anon_sym_SEMI] = ACTIONS(2728), @@ -89948,9 +88499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2728), [sym_float_literal] = ACTIONS(2728), }, - [STATE(723)] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2732), [sym_identifier] = ACTIONS(2734), [anon_sym_SEMI] = ACTIONS(2732), @@ -90029,9 +88580,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2732), [sym_float_literal] = ACTIONS(2732), }, - [STATE(724)] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [STATE(703)] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), [ts_builtin_sym_end] = ACTIONS(2736), [sym_identifier] = ACTIONS(2738), [anon_sym_SEMI] = ACTIONS(2736), @@ -90110,9 +88661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2736), [sym_float_literal] = ACTIONS(2736), }, - [STATE(725)] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [STATE(704)] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), [ts_builtin_sym_end] = ACTIONS(2740), [sym_identifier] = ACTIONS(2742), [anon_sym_SEMI] = ACTIONS(2740), @@ -90191,9 +88742,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2740), [sym_float_literal] = ACTIONS(2740), }, - [STATE(726)] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [STATE(705)] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), [ts_builtin_sym_end] = ACTIONS(2744), [sym_identifier] = ACTIONS(2746), [anon_sym_SEMI] = ACTIONS(2744), @@ -90272,9 +88823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2744), [sym_float_literal] = ACTIONS(2744), }, - [STATE(727)] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [STATE(706)] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(2748), [sym_identifier] = ACTIONS(2750), [anon_sym_SEMI] = ACTIONS(2748), @@ -90353,9 +88904,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2748), [sym_float_literal] = ACTIONS(2748), }, - [STATE(728)] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [STATE(707)] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), [ts_builtin_sym_end] = ACTIONS(2752), [sym_identifier] = ACTIONS(2754), [anon_sym_SEMI] = ACTIONS(2752), @@ -90434,9 +88985,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2752), [sym_float_literal] = ACTIONS(2752), }, - [STATE(729)] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [STATE(708)] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), [ts_builtin_sym_end] = ACTIONS(2756), [sym_identifier] = ACTIONS(2758), [anon_sym_SEMI] = ACTIONS(2756), @@ -90515,9 +89066,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2756), [sym_float_literal] = ACTIONS(2756), }, - [STATE(730)] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [STATE(709)] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), [ts_builtin_sym_end] = ACTIONS(2760), [sym_identifier] = ACTIONS(2762), [anon_sym_SEMI] = ACTIONS(2760), @@ -90596,9 +89147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2760), [sym_float_literal] = ACTIONS(2760), }, - [STATE(731)] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [STATE(710)] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), [ts_builtin_sym_end] = ACTIONS(2764), [sym_identifier] = ACTIONS(2766), [anon_sym_SEMI] = ACTIONS(2764), @@ -90677,9 +89228,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2764), [sym_float_literal] = ACTIONS(2764), }, - [STATE(732)] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [STATE(711)] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2768), [sym_identifier] = ACTIONS(2770), [anon_sym_SEMI] = ACTIONS(2768), @@ -90758,9 +89309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2768), [sym_float_literal] = ACTIONS(2768), }, - [STATE(733)] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [STATE(712)] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2772), [sym_identifier] = ACTIONS(2774), [anon_sym_SEMI] = ACTIONS(2772), @@ -90839,9 +89390,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2772), [sym_float_literal] = ACTIONS(2772), }, - [STATE(734)] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [STATE(713)] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), [ts_builtin_sym_end] = ACTIONS(2776), [sym_identifier] = ACTIONS(2778), [anon_sym_SEMI] = ACTIONS(2776), @@ -90920,9 +89471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2776), [sym_float_literal] = ACTIONS(2776), }, - [STATE(735)] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [STATE(714)] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), [ts_builtin_sym_end] = ACTIONS(2780), [sym_identifier] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2780), @@ -91001,9 +89552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2780), [sym_float_literal] = ACTIONS(2780), }, - [STATE(736)] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2784), [sym_identifier] = ACTIONS(2786), [anon_sym_SEMI] = ACTIONS(2784), @@ -91082,9 +89633,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2784), [sym_float_literal] = ACTIONS(2784), }, - [STATE(737)] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [STATE(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), [ts_builtin_sym_end] = ACTIONS(2788), [sym_identifier] = ACTIONS(2790), [anon_sym_SEMI] = ACTIONS(2788), @@ -91163,9 +89714,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2788), [sym_float_literal] = ACTIONS(2788), }, - [STATE(738)] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [STATE(717)] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), [ts_builtin_sym_end] = ACTIONS(2792), [sym_identifier] = ACTIONS(2794), [anon_sym_SEMI] = ACTIONS(2792), @@ -91244,9 +89795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2792), [sym_float_literal] = ACTIONS(2792), }, - [STATE(739)] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [STATE(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), [ts_builtin_sym_end] = ACTIONS(2796), [sym_identifier] = ACTIONS(2798), [anon_sym_SEMI] = ACTIONS(2796), @@ -91325,9 +89876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2796), [sym_float_literal] = ACTIONS(2796), }, - [STATE(740)] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [STATE(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2800), [sym_identifier] = ACTIONS(2802), [anon_sym_SEMI] = ACTIONS(2800), @@ -91406,9 +89957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2800), [sym_float_literal] = ACTIONS(2800), }, - [STATE(741)] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [STATE(720)] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2804), [sym_identifier] = ACTIONS(2806), [anon_sym_SEMI] = ACTIONS(2804), @@ -91487,9 +90038,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2804), [sym_float_literal] = ACTIONS(2804), }, - [STATE(742)] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2808), [sym_identifier] = ACTIONS(2810), [anon_sym_SEMI] = ACTIONS(2808), @@ -91568,9 +90119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2808), [sym_float_literal] = ACTIONS(2808), }, - [STATE(743)] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [STATE(722)] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2812), [sym_identifier] = ACTIONS(2814), [anon_sym_SEMI] = ACTIONS(2812), @@ -91649,9 +90200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2812), [sym_float_literal] = ACTIONS(2812), }, - [STATE(744)] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [STATE(723)] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2816), [sym_identifier] = ACTIONS(2818), [anon_sym_SEMI] = ACTIONS(2816), @@ -91730,9 +90281,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2816), [sym_float_literal] = ACTIONS(2816), }, - [STATE(745)] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [STATE(724)] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2820), [sym_identifier] = ACTIONS(2822), [anon_sym_SEMI] = ACTIONS(2820), @@ -91811,9 +90362,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2820), [sym_float_literal] = ACTIONS(2820), }, - [STATE(746)] = { - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), + [STATE(725)] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2824), [sym_identifier] = ACTIONS(2826), [anon_sym_SEMI] = ACTIONS(2824), @@ -91892,90 +90443,1872 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2824), [sym_float_literal] = ACTIONS(2824), }, - [STATE(747)] = { - [sym_empty_statement] = STATE(1106), - [sym_macro_definition] = STATE(1106), - [sym_attribute_item] = STATE(1106), - [sym_inner_attribute_item] = STATE(1106), - [sym_mod_item] = STATE(1106), - [sym_foreign_mod_item] = STATE(1106), - [sym_struct_item] = STATE(1106), - [sym_union_item] = STATE(1106), - [sym_enum_item] = STATE(1106), - [sym_extern_crate_declaration] = STATE(1106), - [sym_const_item] = STATE(1106), - [sym_static_item] = STATE(1106), - [sym_type_item] = STATE(1106), - [sym_function_item] = STATE(1106), - [sym_function_signature_item] = STATE(1106), - [sym_function_modifiers] = STATE(3743), - [sym_impl_item] = STATE(1106), - [sym_trait_item] = STATE(1106), - [sym_associated_type] = STATE(1106), - [sym_let_declaration] = STATE(1106), - [sym_use_declaration] = STATE(1106), - [sym_extern_modifier] = STATE(2246), - [sym_visibility_modifier] = STATE(2005), - [sym_bracketed_type] = STATE(3695), - [sym_generic_type_with_turbofish] = STATE(3765), - [sym_macro_invocation] = STATE(1106), - [sym_scoped_identifier] = STATE(3406), - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), - [aux_sym_declaration_list_repeat1] = STATE(747), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_macro_rules_BANG] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_u8] = ACTIONS(2839), - [anon_sym_i8] = ACTIONS(2839), - [anon_sym_u16] = ACTIONS(2839), - [anon_sym_i16] = ACTIONS(2839), - [anon_sym_u32] = ACTIONS(2839), - [anon_sym_i32] = ACTIONS(2839), - [anon_sym_u64] = ACTIONS(2839), - [anon_sym_i64] = ACTIONS(2839), - [anon_sym_u128] = ACTIONS(2839), - [anon_sym_i128] = ACTIONS(2839), - [anon_sym_isize] = ACTIONS(2839), - [anon_sym_usize] = ACTIONS(2839), - [anon_sym_f32] = ACTIONS(2839), - [anon_sym_f64] = ACTIONS(2839), - [anon_sym_bool] = ACTIONS(2839), - [anon_sym_str] = ACTIONS(2839), - [anon_sym_char] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2845), + [STATE(726)] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym_macro_rules_BANG] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_u8] = ACTIONS(2830), + [anon_sym_i8] = ACTIONS(2830), + [anon_sym_u16] = ACTIONS(2830), + [anon_sym_i16] = ACTIONS(2830), + [anon_sym_u32] = ACTIONS(2830), + [anon_sym_i32] = ACTIONS(2830), + [anon_sym_u64] = ACTIONS(2830), + [anon_sym_i64] = ACTIONS(2830), + [anon_sym_u128] = ACTIONS(2830), + [anon_sym_i128] = ACTIONS(2830), + [anon_sym_isize] = ACTIONS(2830), + [anon_sym_usize] = ACTIONS(2830), + [anon_sym_f32] = ACTIONS(2830), + [anon_sym_f64] = ACTIONS(2830), + [anon_sym_bool] = ACTIONS(2830), + [anon_sym_str] = ACTIONS(2830), + [anon_sym_char] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_DOT_DOT] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_gen] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_impl] = ACTIONS(2830), + [anon_sym_let] = ACTIONS(2830), + [anon_sym_loop] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_mod] = ACTIONS(2830), + [anon_sym_pub] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_trait] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_use] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym_yield] = ACTIONS(2830), + [anon_sym_move] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [sym_integer_literal] = ACTIONS(2828), + [aux_sym_string_literal_token1] = ACTIONS(2828), + [sym_char_literal] = ACTIONS(2828), + [anon_sym_true] = ACTIONS(2830), + [anon_sym_false] = ACTIONS(2830), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2830), + [sym_super] = ACTIONS(2830), + [sym_crate] = ACTIONS(2830), + [sym_metavariable] = ACTIONS(2828), + [sym__raw_string_literal_start] = ACTIONS(2828), + [sym_float_literal] = ACTIONS(2828), + }, + [STATE(727)] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_macro_rules_BANG] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_u8] = ACTIONS(2834), + [anon_sym_i8] = ACTIONS(2834), + [anon_sym_u16] = ACTIONS(2834), + [anon_sym_i16] = ACTIONS(2834), + [anon_sym_u32] = ACTIONS(2834), + [anon_sym_i32] = ACTIONS(2834), + [anon_sym_u64] = ACTIONS(2834), + [anon_sym_i64] = ACTIONS(2834), + [anon_sym_u128] = ACTIONS(2834), + [anon_sym_i128] = ACTIONS(2834), + [anon_sym_isize] = ACTIONS(2834), + [anon_sym_usize] = ACTIONS(2834), + [anon_sym_f32] = ACTIONS(2834), + [anon_sym_f64] = ACTIONS(2834), + [anon_sym_bool] = ACTIONS(2834), + [anon_sym_str] = ACTIONS(2834), + [anon_sym_char] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_async] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_gen] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_impl] = ACTIONS(2834), + [anon_sym_let] = ACTIONS(2834), + [anon_sym_loop] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_mod] = ACTIONS(2834), + [anon_sym_pub] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_trait] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_use] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym_yield] = ACTIONS(2834), + [anon_sym_move] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [sym_integer_literal] = ACTIONS(2832), + [aux_sym_string_literal_token1] = ACTIONS(2832), + [sym_char_literal] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2834), + [anon_sym_false] = ACTIONS(2834), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2834), + [sym_super] = ACTIONS(2834), + [sym_crate] = ACTIONS(2834), + [sym_metavariable] = ACTIONS(2832), + [sym__raw_string_literal_start] = ACTIONS(2832), + [sym_float_literal] = ACTIONS(2832), + }, + [STATE(728)] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_macro_rules_BANG] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_u8] = ACTIONS(2838), + [anon_sym_i8] = ACTIONS(2838), + [anon_sym_u16] = ACTIONS(2838), + [anon_sym_i16] = ACTIONS(2838), + [anon_sym_u32] = ACTIONS(2838), + [anon_sym_i32] = ACTIONS(2838), + [anon_sym_u64] = ACTIONS(2838), + [anon_sym_i64] = ACTIONS(2838), + [anon_sym_u128] = ACTIONS(2838), + [anon_sym_i128] = ACTIONS(2838), + [anon_sym_isize] = ACTIONS(2838), + [anon_sym_usize] = ACTIONS(2838), + [anon_sym_f32] = ACTIONS(2838), + [anon_sym_f64] = ACTIONS(2838), + [anon_sym_bool] = ACTIONS(2838), + [anon_sym_str] = ACTIONS(2838), + [anon_sym_char] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_DOT_DOT] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_async] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_gen] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_impl] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2838), + [anon_sym_loop] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_mod] = ACTIONS(2838), + [anon_sym_pub] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_trait] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_use] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym_yield] = ACTIONS(2838), + [anon_sym_move] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [sym_integer_literal] = ACTIONS(2836), + [aux_sym_string_literal_token1] = ACTIONS(2836), + [sym_char_literal] = ACTIONS(2836), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2838), + [sym_super] = ACTIONS(2838), + [sym_crate] = ACTIONS(2838), + [sym_metavariable] = ACTIONS(2836), + [sym__raw_string_literal_start] = ACTIONS(2836), + [sym_float_literal] = ACTIONS(2836), + }, + [STATE(729)] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_macro_rules_BANG] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_u8] = ACTIONS(2842), + [anon_sym_i8] = ACTIONS(2842), + [anon_sym_u16] = ACTIONS(2842), + [anon_sym_i16] = ACTIONS(2842), + [anon_sym_u32] = ACTIONS(2842), + [anon_sym_i32] = ACTIONS(2842), + [anon_sym_u64] = ACTIONS(2842), + [anon_sym_i64] = ACTIONS(2842), + [anon_sym_u128] = ACTIONS(2842), + [anon_sym_i128] = ACTIONS(2842), + [anon_sym_isize] = ACTIONS(2842), + [anon_sym_usize] = ACTIONS(2842), + [anon_sym_f32] = ACTIONS(2842), + [anon_sym_f64] = ACTIONS(2842), + [anon_sym_bool] = ACTIONS(2842), + [anon_sym_str] = ACTIONS(2842), + [anon_sym_char] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_async] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_gen] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_impl] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2842), + [anon_sym_loop] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_mod] = ACTIONS(2842), + [anon_sym_pub] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_static] = ACTIONS(2842), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_trait] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_union] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_use] = ACTIONS(2842), + [anon_sym_while] = ACTIONS(2842), + [anon_sym_extern] = ACTIONS(2842), + [anon_sym_yield] = ACTIONS(2842), + [anon_sym_move] = ACTIONS(2842), + [anon_sym_try] = ACTIONS(2842), + [sym_integer_literal] = ACTIONS(2840), + [aux_sym_string_literal_token1] = ACTIONS(2840), + [sym_char_literal] = ACTIONS(2840), + [anon_sym_true] = ACTIONS(2842), + [anon_sym_false] = ACTIONS(2842), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2842), + [sym_super] = ACTIONS(2842), + [sym_crate] = ACTIONS(2842), + [sym_metavariable] = ACTIONS(2840), + [sym__raw_string_literal_start] = ACTIONS(2840), + [sym_float_literal] = ACTIONS(2840), + }, + [STATE(730)] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_macro_rules_BANG] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_u8] = ACTIONS(2846), + [anon_sym_i8] = ACTIONS(2846), + [anon_sym_u16] = ACTIONS(2846), + [anon_sym_i16] = ACTIONS(2846), + [anon_sym_u32] = ACTIONS(2846), + [anon_sym_i32] = ACTIONS(2846), + [anon_sym_u64] = ACTIONS(2846), + [anon_sym_i64] = ACTIONS(2846), + [anon_sym_u128] = ACTIONS(2846), + [anon_sym_i128] = ACTIONS(2846), + [anon_sym_isize] = ACTIONS(2846), + [anon_sym_usize] = ACTIONS(2846), + [anon_sym_f32] = ACTIONS(2846), + [anon_sym_f64] = ACTIONS(2846), + [anon_sym_bool] = ACTIONS(2846), + [anon_sym_str] = ACTIONS(2846), + [anon_sym_char] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2844), + [anon_sym_DOT_DOT] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_default] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_gen] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_let] = ACTIONS(2846), + [anon_sym_loop] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_mod] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_static] = ACTIONS(2846), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_trait] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_use] = ACTIONS(2846), + [anon_sym_while] = ACTIONS(2846), + [anon_sym_extern] = ACTIONS(2846), + [anon_sym_yield] = ACTIONS(2846), + [anon_sym_move] = ACTIONS(2846), + [anon_sym_try] = ACTIONS(2846), + [sym_integer_literal] = ACTIONS(2844), + [aux_sym_string_literal_token1] = ACTIONS(2844), + [sym_char_literal] = ACTIONS(2844), + [anon_sym_true] = ACTIONS(2846), + [anon_sym_false] = ACTIONS(2846), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2846), + [sym_super] = ACTIONS(2846), + [sym_crate] = ACTIONS(2846), + [sym_metavariable] = ACTIONS(2844), + [sym__raw_string_literal_start] = ACTIONS(2844), + [sym_float_literal] = ACTIONS(2844), + }, + [STATE(731)] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_macro_rules_BANG] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2848), + [anon_sym_u8] = ACTIONS(2850), + [anon_sym_i8] = ACTIONS(2850), + [anon_sym_u16] = ACTIONS(2850), + [anon_sym_i16] = ACTIONS(2850), + [anon_sym_u32] = ACTIONS(2850), + [anon_sym_i32] = ACTIONS(2850), + [anon_sym_u64] = ACTIONS(2850), + [anon_sym_i64] = ACTIONS(2850), + [anon_sym_u128] = ACTIONS(2850), + [anon_sym_i128] = ACTIONS(2850), + [anon_sym_isize] = ACTIONS(2850), + [anon_sym_usize] = ACTIONS(2850), + [anon_sym_f32] = ACTIONS(2850), + [anon_sym_f64] = ACTIONS(2850), + [anon_sym_bool] = ACTIONS(2850), + [anon_sym_str] = ACTIONS(2850), + [anon_sym_char] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_DOT_DOT] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2848), [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_async] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_default] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_gen] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_impl] = ACTIONS(2850), + [anon_sym_let] = ACTIONS(2850), + [anon_sym_loop] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_mod] = ACTIONS(2850), + [anon_sym_pub] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2850), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_trait] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_union] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2850), + [anon_sym_while] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2850), + [anon_sym_move] = ACTIONS(2850), + [anon_sym_try] = ACTIONS(2850), + [sym_integer_literal] = ACTIONS(2848), + [aux_sym_string_literal_token1] = ACTIONS(2848), + [sym_char_literal] = ACTIONS(2848), + [anon_sym_true] = ACTIONS(2850), + [anon_sym_false] = ACTIONS(2850), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2850), + [sym_super] = ACTIONS(2850), + [sym_crate] = ACTIONS(2850), + [sym_metavariable] = ACTIONS(2848), + [sym__raw_string_literal_start] = ACTIONS(2848), + [sym_float_literal] = ACTIONS(2848), + }, + [STATE(732)] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2852), + [anon_sym_macro_rules_BANG] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2852), + [anon_sym_u8] = ACTIONS(2854), + [anon_sym_i8] = ACTIONS(2854), + [anon_sym_u16] = ACTIONS(2854), + [anon_sym_i16] = ACTIONS(2854), + [anon_sym_u32] = ACTIONS(2854), + [anon_sym_i32] = ACTIONS(2854), + [anon_sym_u64] = ACTIONS(2854), + [anon_sym_i64] = ACTIONS(2854), + [anon_sym_u128] = ACTIONS(2854), + [anon_sym_i128] = ACTIONS(2854), + [anon_sym_isize] = ACTIONS(2854), + [anon_sym_usize] = ACTIONS(2854), + [anon_sym_f32] = ACTIONS(2854), + [anon_sym_f64] = ACTIONS(2854), + [anon_sym_bool] = ACTIONS(2854), + [anon_sym_str] = ACTIONS(2854), + [anon_sym_char] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_DOT_DOT] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_async] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), [anon_sym_const] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_default] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_gen] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_impl] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2854), + [anon_sym_loop] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_mod] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2854), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_trait] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2854), + [anon_sym_while] = ACTIONS(2854), + [anon_sym_extern] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2854), + [anon_sym_move] = ACTIONS(2854), + [anon_sym_try] = ACTIONS(2854), + [sym_integer_literal] = ACTIONS(2852), + [aux_sym_string_literal_token1] = ACTIONS(2852), + [sym_char_literal] = ACTIONS(2852), + [anon_sym_true] = ACTIONS(2854), + [anon_sym_false] = ACTIONS(2854), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2854), + [sym_super] = ACTIONS(2854), + [sym_crate] = ACTIONS(2854), + [sym_metavariable] = ACTIONS(2852), + [sym__raw_string_literal_start] = ACTIONS(2852), + [sym_float_literal] = ACTIONS(2852), + }, + [STATE(733)] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_macro_rules_BANG] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_u8] = ACTIONS(2858), + [anon_sym_i8] = ACTIONS(2858), + [anon_sym_u16] = ACTIONS(2858), + [anon_sym_i16] = ACTIONS(2858), + [anon_sym_u32] = ACTIONS(2858), + [anon_sym_i32] = ACTIONS(2858), + [anon_sym_u64] = ACTIONS(2858), + [anon_sym_i64] = ACTIONS(2858), + [anon_sym_u128] = ACTIONS(2858), + [anon_sym_i128] = ACTIONS(2858), + [anon_sym_isize] = ACTIONS(2858), + [anon_sym_usize] = ACTIONS(2858), + [anon_sym_f32] = ACTIONS(2858), + [anon_sym_f64] = ACTIONS(2858), + [anon_sym_bool] = ACTIONS(2858), + [anon_sym_str] = ACTIONS(2858), + [anon_sym_char] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2856), + [anon_sym_DOT_DOT] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_async] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_default] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_gen] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_impl] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2858), + [anon_sym_loop] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_mod] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2858), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_trait] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2858), + [anon_sym_while] = ACTIONS(2858), + [anon_sym_extern] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2858), + [anon_sym_move] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2858), + [sym_integer_literal] = ACTIONS(2856), + [aux_sym_string_literal_token1] = ACTIONS(2856), + [sym_char_literal] = ACTIONS(2856), + [anon_sym_true] = ACTIONS(2858), + [anon_sym_false] = ACTIONS(2858), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2858), + [sym_super] = ACTIONS(2858), + [sym_crate] = ACTIONS(2858), + [sym_metavariable] = ACTIONS(2856), + [sym__raw_string_literal_start] = ACTIONS(2856), + [sym_float_literal] = ACTIONS(2856), + }, + [STATE(734)] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_macro_rules_BANG] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_u8] = ACTIONS(2862), + [anon_sym_i8] = ACTIONS(2862), + [anon_sym_u16] = ACTIONS(2862), + [anon_sym_i16] = ACTIONS(2862), + [anon_sym_u32] = ACTIONS(2862), + [anon_sym_i32] = ACTIONS(2862), + [anon_sym_u64] = ACTIONS(2862), + [anon_sym_i64] = ACTIONS(2862), + [anon_sym_u128] = ACTIONS(2862), + [anon_sym_i128] = ACTIONS(2862), + [anon_sym_isize] = ACTIONS(2862), + [anon_sym_usize] = ACTIONS(2862), + [anon_sym_f32] = ACTIONS(2862), + [anon_sym_f64] = ACTIONS(2862), + [anon_sym_bool] = ACTIONS(2862), + [anon_sym_str] = ACTIONS(2862), + [anon_sym_char] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2860), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_gen] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_impl] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2862), + [anon_sym_loop] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_mod] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2862), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_trait] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2862), + [anon_sym_while] = ACTIONS(2862), + [anon_sym_extern] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2862), + [anon_sym_move] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2862), + [sym_integer_literal] = ACTIONS(2860), + [aux_sym_string_literal_token1] = ACTIONS(2860), + [sym_char_literal] = ACTIONS(2860), + [anon_sym_true] = ACTIONS(2862), + [anon_sym_false] = ACTIONS(2862), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2860), + [sym__raw_string_literal_start] = ACTIONS(2860), + [sym_float_literal] = ACTIONS(2860), + }, + [STATE(735)] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2864), + [anon_sym_macro_rules_BANG] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2864), + [anon_sym_u8] = ACTIONS(2866), + [anon_sym_i8] = ACTIONS(2866), + [anon_sym_u16] = ACTIONS(2866), + [anon_sym_i16] = ACTIONS(2866), + [anon_sym_u32] = ACTIONS(2866), + [anon_sym_i32] = ACTIONS(2866), + [anon_sym_u64] = ACTIONS(2866), + [anon_sym_i64] = ACTIONS(2866), + [anon_sym_u128] = ACTIONS(2866), + [anon_sym_i128] = ACTIONS(2866), + [anon_sym_isize] = ACTIONS(2866), + [anon_sym_usize] = ACTIONS(2866), + [anon_sym_f32] = ACTIONS(2866), + [anon_sym_f64] = ACTIONS(2866), + [anon_sym_bool] = ACTIONS(2866), + [anon_sym_str] = ACTIONS(2866), + [anon_sym_char] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2864), + [anon_sym_DOT_DOT] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_async] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_default] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), [anon_sym_gen] = ACTIONS(2866), - [anon_sym_impl] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_impl] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2866), + [anon_sym_loop] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_mod] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_trait] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2866), + [anon_sym_while] = ACTIONS(2866), + [anon_sym_extern] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2866), + [anon_sym_move] = ACTIONS(2866), + [anon_sym_try] = ACTIONS(2866), + [sym_integer_literal] = ACTIONS(2864), + [aux_sym_string_literal_token1] = ACTIONS(2864), + [sym_char_literal] = ACTIONS(2864), + [anon_sym_true] = ACTIONS(2866), + [anon_sym_false] = ACTIONS(2866), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2866), + [sym_super] = ACTIONS(2866), + [sym_crate] = ACTIONS(2866), + [sym_metavariable] = ACTIONS(2864), + [sym__raw_string_literal_start] = ACTIONS(2864), + [sym_float_literal] = ACTIONS(2864), + }, + [STATE(736)] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_macro_rules_BANG] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2868), + [anon_sym_u8] = ACTIONS(2870), + [anon_sym_i8] = ACTIONS(2870), + [anon_sym_u16] = ACTIONS(2870), + [anon_sym_i16] = ACTIONS(2870), + [anon_sym_u32] = ACTIONS(2870), + [anon_sym_i32] = ACTIONS(2870), + [anon_sym_u64] = ACTIONS(2870), + [anon_sym_i64] = ACTIONS(2870), + [anon_sym_u128] = ACTIONS(2870), + [anon_sym_i128] = ACTIONS(2870), + [anon_sym_isize] = ACTIONS(2870), + [anon_sym_usize] = ACTIONS(2870), + [anon_sym_f32] = ACTIONS(2870), + [anon_sym_f64] = ACTIONS(2870), + [anon_sym_bool] = ACTIONS(2870), + [anon_sym_str] = ACTIONS(2870), + [anon_sym_char] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_DOT_DOT] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_async] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_default] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_gen] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_impl] = ACTIONS(2870), + [anon_sym_let] = ACTIONS(2870), + [anon_sym_loop] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_mod] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2870), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_trait] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2870), + [anon_sym_while] = ACTIONS(2870), + [anon_sym_extern] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2870), + [anon_sym_move] = ACTIONS(2870), + [anon_sym_try] = ACTIONS(2870), + [sym_integer_literal] = ACTIONS(2868), + [aux_sym_string_literal_token1] = ACTIONS(2868), + [sym_char_literal] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2870), + [anon_sym_false] = ACTIONS(2870), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2870), + [sym_super] = ACTIONS(2870), + [sym_crate] = ACTIONS(2870), + [sym_metavariable] = ACTIONS(2868), + [sym__raw_string_literal_start] = ACTIONS(2868), + [sym_float_literal] = ACTIONS(2868), + }, + [STATE(737)] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_macro_rules_BANG] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_async] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_default] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_gen] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_impl] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2874), + [anon_sym_loop] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_mod] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2874), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_trait] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2874), + [anon_sym_while] = ACTIONS(2874), + [anon_sym_extern] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2874), + [anon_sym_move] = ACTIONS(2874), + [anon_sym_try] = ACTIONS(2874), + [sym_integer_literal] = ACTIONS(2872), + [aux_sym_string_literal_token1] = ACTIONS(2872), + [sym_char_literal] = ACTIONS(2872), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2874), + [sym_super] = ACTIONS(2874), + [sym_crate] = ACTIONS(2874), + [sym_metavariable] = ACTIONS(2872), + [sym__raw_string_literal_start] = ACTIONS(2872), + [sym_float_literal] = ACTIONS(2872), + }, + [STATE(738)] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_macro_rules_BANG] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2876), + [anon_sym_u8] = ACTIONS(2878), + [anon_sym_i8] = ACTIONS(2878), + [anon_sym_u16] = ACTIONS(2878), + [anon_sym_i16] = ACTIONS(2878), + [anon_sym_u32] = ACTIONS(2878), + [anon_sym_i32] = ACTIONS(2878), + [anon_sym_u64] = ACTIONS(2878), + [anon_sym_i64] = ACTIONS(2878), + [anon_sym_u128] = ACTIONS(2878), + [anon_sym_i128] = ACTIONS(2878), + [anon_sym_isize] = ACTIONS(2878), + [anon_sym_usize] = ACTIONS(2878), + [anon_sym_f32] = ACTIONS(2878), + [anon_sym_f64] = ACTIONS(2878), + [anon_sym_bool] = ACTIONS(2878), + [anon_sym_str] = ACTIONS(2878), + [anon_sym_char] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_DOT_DOT] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2876), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_async] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_default] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_gen] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_impl] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_loop] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_mod] = ACTIONS(2878), [anon_sym_pub] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_trait] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2893), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2899), - [anon_sym_extern] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_trait] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_union] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2878), + [anon_sym_while] = ACTIONS(2878), + [anon_sym_extern] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2878), + [anon_sym_move] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2878), + [sym_integer_literal] = ACTIONS(2876), + [aux_sym_string_literal_token1] = ACTIONS(2876), + [sym_char_literal] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2878), + [sym_super] = ACTIONS(2878), + [sym_crate] = ACTIONS(2878), + [sym_metavariable] = ACTIONS(2876), + [sym__raw_string_literal_start] = ACTIONS(2876), + [sym_float_literal] = ACTIONS(2876), + }, + [STATE(739)] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_macro_rules_BANG] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_u8] = ACTIONS(2882), + [anon_sym_i8] = ACTIONS(2882), + [anon_sym_u16] = ACTIONS(2882), + [anon_sym_i16] = ACTIONS(2882), + [anon_sym_u32] = ACTIONS(2882), + [anon_sym_i32] = ACTIONS(2882), + [anon_sym_u64] = ACTIONS(2882), + [anon_sym_i64] = ACTIONS(2882), + [anon_sym_u128] = ACTIONS(2882), + [anon_sym_i128] = ACTIONS(2882), + [anon_sym_isize] = ACTIONS(2882), + [anon_sym_usize] = ACTIONS(2882), + [anon_sym_f32] = ACTIONS(2882), + [anon_sym_f64] = ACTIONS(2882), + [anon_sym_bool] = ACTIONS(2882), + [anon_sym_str] = ACTIONS(2882), + [anon_sym_char] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_DOT_DOT] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_gen] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_impl] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2882), + [anon_sym_loop] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_mod] = ACTIONS(2882), + [anon_sym_pub] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_trait] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_union] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_extern] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2882), + [anon_sym_move] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2882), + [sym_integer_literal] = ACTIONS(2880), + [aux_sym_string_literal_token1] = ACTIONS(2880), + [sym_char_literal] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2882), + [anon_sym_false] = ACTIONS(2882), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2882), + [sym_super] = ACTIONS(2882), + [sym_crate] = ACTIONS(2882), + [sym_metavariable] = ACTIONS(2880), + [sym__raw_string_literal_start] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), + }, + [STATE(740)] = { + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym_closure_expression] = STATE(3287), + [sym_closure_parameters] = STATE(219), + [sym__pattern] = STATE(2955), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [anon_sym_move] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), + }, + [STATE(741)] = { + [sym_empty_statement] = STATE(1113), + [sym_macro_definition] = STATE(1113), + [sym_attribute_item] = STATE(1113), + [sym_inner_attribute_item] = STATE(1113), + [sym_mod_item] = STATE(1113), + [sym_foreign_mod_item] = STATE(1113), + [sym_struct_item] = STATE(1113), + [sym_union_item] = STATE(1113), + [sym_enum_item] = STATE(1113), + [sym_extern_crate_declaration] = STATE(1113), + [sym_const_item] = STATE(1113), + [sym_static_item] = STATE(1113), + [sym_type_item] = STATE(1113), + [sym_function_item] = STATE(1113), + [sym_function_signature_item] = STATE(1113), + [sym_function_modifiers] = STATE(3779), + [sym_impl_item] = STATE(1113), + [sym_trait_item] = STATE(1113), + [sym_associated_type] = STATE(1113), + [sym_let_declaration] = STATE(1113), + [sym_use_declaration] = STATE(1113), + [sym_extern_modifier] = STATE(2273), + [sym_visibility_modifier] = STATE(2022), + [sym_bracketed_type] = STATE(3731), + [sym_generic_type_with_turbofish] = STATE(3800), + [sym_macro_invocation] = STATE(1113), + [sym_scoped_identifier] = STATE(3194), + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), + [aux_sym_declaration_list_repeat1] = STATE(637), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2524), + [anon_sym_i8] = ACTIONS(2524), + [anon_sym_u16] = ACTIONS(2524), + [anon_sym_i16] = ACTIONS(2524), + [anon_sym_u32] = ACTIONS(2524), + [anon_sym_i32] = ACTIONS(2524), + [anon_sym_u64] = ACTIONS(2524), + [anon_sym_i64] = ACTIONS(2524), + [anon_sym_u128] = ACTIONS(2524), + [anon_sym_i128] = ACTIONS(2524), + [anon_sym_isize] = ACTIONS(2524), + [anon_sym_usize] = ACTIONS(2524), + [anon_sym_f32] = ACTIONS(2524), + [anon_sym_f64] = ACTIONS(2524), + [anon_sym_bool] = ACTIONS(2524), + [anon_sym_str] = ACTIONS(2524), + [anon_sym_char] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2534), + [anon_sym_fn] = ACTIONS(2536), + [anon_sym_gen] = ACTIONS(2538), + [anon_sym_impl] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_mod] = ACTIONS(2544), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2550), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2558), + [anon_sym_extern] = ACTIONS(2560), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), + [sym_self] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), + [sym_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2566), + }, + [STATE(742)] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_macro_rules_BANG] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_u8] = ACTIONS(2888), + [anon_sym_i8] = ACTIONS(2888), + [anon_sym_u16] = ACTIONS(2888), + [anon_sym_i16] = ACTIONS(2888), + [anon_sym_u32] = ACTIONS(2888), + [anon_sym_i32] = ACTIONS(2888), + [anon_sym_u64] = ACTIONS(2888), + [anon_sym_i64] = ACTIONS(2888), + [anon_sym_u128] = ACTIONS(2888), + [anon_sym_i128] = ACTIONS(2888), + [anon_sym_isize] = ACTIONS(2888), + [anon_sym_usize] = ACTIONS(2888), + [anon_sym_f32] = ACTIONS(2888), + [anon_sym_f64] = ACTIONS(2888), + [anon_sym_bool] = ACTIONS(2888), + [anon_sym_str] = ACTIONS(2888), + [anon_sym_char] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_DOT_DOT] = ACTIONS(2886), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2888), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_const] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_enum] = ACTIONS(2888), + [anon_sym_fn] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_gen] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_impl] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_loop] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2888), + [anon_sym_mod] = ACTIONS(2888), + [anon_sym_pub] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2888), + [anon_sym_trait] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_union] = ACTIONS(2888), + [anon_sym_unsafe] = ACTIONS(2888), + [anon_sym_use] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_extern] = ACTIONS(2888), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_move] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [sym_integer_literal] = ACTIONS(2886), + [aux_sym_string_literal_token1] = ACTIONS(2886), + [sym_char_literal] = ACTIONS(2886), + [anon_sym_true] = ACTIONS(2888), + [anon_sym_false] = ACTIONS(2888), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2888), + [sym_super] = ACTIONS(2888), + [sym_crate] = ACTIONS(2888), + [sym_metavariable] = ACTIONS(2886), + [sym__raw_string_literal_start] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + }, + [STATE(743)] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_macro_rules_BANG] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_u8] = ACTIONS(2892), + [anon_sym_i8] = ACTIONS(2892), + [anon_sym_u16] = ACTIONS(2892), + [anon_sym_i16] = ACTIONS(2892), + [anon_sym_u32] = ACTIONS(2892), + [anon_sym_i32] = ACTIONS(2892), + [anon_sym_u64] = ACTIONS(2892), + [anon_sym_i64] = ACTIONS(2892), + [anon_sym_u128] = ACTIONS(2892), + [anon_sym_i128] = ACTIONS(2892), + [anon_sym_isize] = ACTIONS(2892), + [anon_sym_usize] = ACTIONS(2892), + [anon_sym_f32] = ACTIONS(2892), + [anon_sym_f64] = ACTIONS(2892), + [anon_sym_bool] = ACTIONS(2892), + [anon_sym_str] = ACTIONS(2892), + [anon_sym_char] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2890), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2892), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_const] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_enum] = ACTIONS(2892), + [anon_sym_fn] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_gen] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_impl] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_loop] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2892), + [anon_sym_mod] = ACTIONS(2892), + [anon_sym_pub] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2892), + [anon_sym_trait] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_union] = ACTIONS(2892), + [anon_sym_unsafe] = ACTIONS(2892), + [anon_sym_use] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_extern] = ACTIONS(2892), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_move] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [sym_integer_literal] = ACTIONS(2890), + [aux_sym_string_literal_token1] = ACTIONS(2890), + [sym_char_literal] = ACTIONS(2890), + [anon_sym_true] = ACTIONS(2892), + [anon_sym_false] = ACTIONS(2892), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2892), + [sym_super] = ACTIONS(2892), + [sym_crate] = ACTIONS(2892), + [sym_metavariable] = ACTIONS(2890), + [sym__raw_string_literal_start] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + }, + [STATE(744)] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_macro_rules_BANG] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_u8] = ACTIONS(2896), + [anon_sym_i8] = ACTIONS(2896), + [anon_sym_u16] = ACTIONS(2896), + [anon_sym_i16] = ACTIONS(2896), + [anon_sym_u32] = ACTIONS(2896), + [anon_sym_i32] = ACTIONS(2896), + [anon_sym_u64] = ACTIONS(2896), + [anon_sym_i64] = ACTIONS(2896), + [anon_sym_u128] = ACTIONS(2896), + [anon_sym_i128] = ACTIONS(2896), + [anon_sym_isize] = ACTIONS(2896), + [anon_sym_usize] = ACTIONS(2896), + [anon_sym_f32] = ACTIONS(2896), + [anon_sym_f64] = ACTIONS(2896), + [anon_sym_bool] = ACTIONS(2896), + [anon_sym_str] = ACTIONS(2896), + [anon_sym_char] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_DOT_DOT] = ACTIONS(2894), + [anon_sym_COLON_COLON] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2896), + [anon_sym_fn] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_gen] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_impl] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_loop] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2896), + [anon_sym_mod] = ACTIONS(2896), + [anon_sym_pub] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2896), + [anon_sym_trait] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_unsafe] = ACTIONS(2896), + [anon_sym_use] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_extern] = ACTIONS(2896), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_move] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [sym_integer_literal] = ACTIONS(2894), + [aux_sym_string_literal_token1] = ACTIONS(2894), + [sym_char_literal] = ACTIONS(2894), + [anon_sym_true] = ACTIONS(2896), + [anon_sym_false] = ACTIONS(2896), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2896), + [sym_super] = ACTIONS(2896), + [sym_crate] = ACTIONS(2896), + [sym_metavariable] = ACTIONS(2894), + [sym__raw_string_literal_start] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + }, + [STATE(745)] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_macro_rules_BANG] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_u8] = ACTIONS(2900), + [anon_sym_i8] = ACTIONS(2900), + [anon_sym_u16] = ACTIONS(2900), + [anon_sym_i16] = ACTIONS(2900), + [anon_sym_u32] = ACTIONS(2900), + [anon_sym_i32] = ACTIONS(2900), + [anon_sym_u64] = ACTIONS(2900), + [anon_sym_i64] = ACTIONS(2900), + [anon_sym_u128] = ACTIONS(2900), + [anon_sym_i128] = ACTIONS(2900), + [anon_sym_isize] = ACTIONS(2900), + [anon_sym_usize] = ACTIONS(2900), + [anon_sym_f32] = ACTIONS(2900), + [anon_sym_f64] = ACTIONS(2900), + [anon_sym_bool] = ACTIONS(2900), + [anon_sym_str] = ACTIONS(2900), + [anon_sym_char] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_DOT_DOT] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_fn] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_gen] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_impl] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_loop] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2900), + [anon_sym_mod] = ACTIONS(2900), + [anon_sym_pub] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_trait] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_unsafe] = ACTIONS(2900), + [anon_sym_use] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_move] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [sym_integer_literal] = ACTIONS(2898), + [aux_sym_string_literal_token1] = ACTIONS(2898), + [sym_char_literal] = ACTIONS(2898), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2900), + [sym_super] = ACTIONS(2900), + [sym_crate] = ACTIONS(2900), + [sym_metavariable] = ACTIONS(2898), + [sym__raw_string_literal_start] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + }, + [STATE(746)] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_macro_rules_BANG] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_u8] = ACTIONS(2904), + [anon_sym_i8] = ACTIONS(2904), + [anon_sym_u16] = ACTIONS(2904), + [anon_sym_i16] = ACTIONS(2904), + [anon_sym_u32] = ACTIONS(2904), + [anon_sym_i32] = ACTIONS(2904), + [anon_sym_u64] = ACTIONS(2904), + [anon_sym_i64] = ACTIONS(2904), + [anon_sym_u128] = ACTIONS(2904), + [anon_sym_i128] = ACTIONS(2904), + [anon_sym_isize] = ACTIONS(2904), + [anon_sym_usize] = ACTIONS(2904), + [anon_sym_f32] = ACTIONS(2904), + [anon_sym_f64] = ACTIONS(2904), + [anon_sym_bool] = ACTIONS(2904), + [anon_sym_str] = ACTIONS(2904), + [anon_sym_char] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_DOT_DOT] = ACTIONS(2902), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2904), + [anon_sym_async] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_fn] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_gen] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_impl] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_loop] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2904), + [anon_sym_mod] = ACTIONS(2904), + [anon_sym_pub] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2904), + [anon_sym_trait] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_union] = ACTIONS(2904), + [anon_sym_unsafe] = ACTIONS(2904), + [anon_sym_use] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_extern] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_move] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [sym_integer_literal] = ACTIONS(2902), + [aux_sym_string_literal_token1] = ACTIONS(2902), + [sym_char_literal] = ACTIONS(2902), + [anon_sym_true] = ACTIONS(2904), + [anon_sym_false] = ACTIONS(2904), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2904), + [sym_super] = ACTIONS(2904), + [sym_crate] = ACTIONS(2904), + [sym_metavariable] = ACTIONS(2902), + [sym__raw_string_literal_start] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + }, + [STATE(747)] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_macro_rules_BANG] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_u8] = ACTIONS(2908), + [anon_sym_i8] = ACTIONS(2908), + [anon_sym_u16] = ACTIONS(2908), + [anon_sym_i16] = ACTIONS(2908), + [anon_sym_u32] = ACTIONS(2908), + [anon_sym_i32] = ACTIONS(2908), + [anon_sym_u64] = ACTIONS(2908), + [anon_sym_i64] = ACTIONS(2908), + [anon_sym_u128] = ACTIONS(2908), + [anon_sym_i128] = ACTIONS(2908), + [anon_sym_isize] = ACTIONS(2908), + [anon_sym_usize] = ACTIONS(2908), + [anon_sym_f32] = ACTIONS(2908), + [anon_sym_f64] = ACTIONS(2908), + [anon_sym_bool] = ACTIONS(2908), + [anon_sym_str] = ACTIONS(2908), + [anon_sym_char] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_DOT_DOT] = ACTIONS(2906), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2908), + [anon_sym_async] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_fn] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_gen] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_impl] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_loop] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2908), + [anon_sym_mod] = ACTIONS(2908), + [anon_sym_pub] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_trait] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_use] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_move] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [sym_integer_literal] = ACTIONS(2906), + [aux_sym_string_literal_token1] = ACTIONS(2906), + [sym_char_literal] = ACTIONS(2906), + [anon_sym_true] = ACTIONS(2908), + [anon_sym_false] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2908), + [sym_super] = ACTIONS(2908), [sym_crate] = ACTIONS(2908), - [sym_metavariable] = ACTIONS(2911), + [sym_metavariable] = ACTIONS(2906), + [sym__raw_string_literal_start] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), }, [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_macro_rules_BANG] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_u8] = ACTIONS(2912), + [anon_sym_i8] = ACTIONS(2912), + [anon_sym_u16] = ACTIONS(2912), + [anon_sym_i16] = ACTIONS(2912), + [anon_sym_u32] = ACTIONS(2912), + [anon_sym_i32] = ACTIONS(2912), + [anon_sym_u64] = ACTIONS(2912), + [anon_sym_i64] = ACTIONS(2912), + [anon_sym_u128] = ACTIONS(2912), + [anon_sym_i128] = ACTIONS(2912), + [anon_sym_isize] = ACTIONS(2912), + [anon_sym_usize] = ACTIONS(2912), + [anon_sym_f32] = ACTIONS(2912), + [anon_sym_f64] = ACTIONS(2912), + [anon_sym_bool] = ACTIONS(2912), + [anon_sym_str] = ACTIONS(2912), + [anon_sym_char] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_DOT_DOT] = ACTIONS(2910), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2912), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [anon_sym_fn] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_gen] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_impl] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_loop] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2912), + [anon_sym_mod] = ACTIONS(2912), + [anon_sym_pub] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2912), + [anon_sym_trait] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_union] = ACTIONS(2912), + [anon_sym_unsafe] = ACTIONS(2912), + [anon_sym_use] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2912), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_move] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [sym_integer_literal] = ACTIONS(2910), + [aux_sym_string_literal_token1] = ACTIONS(2910), + [sym_char_literal] = ACTIONS(2910), + [anon_sym_true] = ACTIONS(2912), + [anon_sym_false] = ACTIONS(2912), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2912), + [sym_super] = ACTIONS(2912), + [sym_crate] = ACTIONS(2912), + [sym_metavariable] = ACTIONS(2910), + [sym__raw_string_literal_start] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + }, + [STATE(749)] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), [ts_builtin_sym_end] = ACTIONS(2914), [sym_identifier] = ACTIONS(2916), [anon_sym_SEMI] = ACTIONS(2914), @@ -92054,9 +92387,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2914), [sym_float_literal] = ACTIONS(2914), }, - [STATE(749)] = { - [sym_line_comment] = STATE(749), - [sym_block_comment] = STATE(749), + [STATE(750)] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), [ts_builtin_sym_end] = ACTIONS(2918), [sym_identifier] = ACTIONS(2920), [anon_sym_SEMI] = ACTIONS(2918), @@ -92135,9 +92468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2918), [sym_float_literal] = ACTIONS(2918), }, - [STATE(750)] = { - [sym_line_comment] = STATE(750), - [sym_block_comment] = STATE(750), + [STATE(751)] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), [ts_builtin_sym_end] = ACTIONS(2922), [sym_identifier] = ACTIONS(2924), [anon_sym_SEMI] = ACTIONS(2922), @@ -92216,9 +92549,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2922), [sym_float_literal] = ACTIONS(2922), }, - [STATE(751)] = { - [sym_line_comment] = STATE(751), - [sym_block_comment] = STATE(751), + [STATE(752)] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2926), [sym_identifier] = ACTIONS(2928), [anon_sym_SEMI] = ACTIONS(2926), @@ -92297,9 +92630,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2926), [sym_float_literal] = ACTIONS(2926), }, - [STATE(752)] = { - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [STATE(753)] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2930), [sym_identifier] = ACTIONS(2932), [anon_sym_SEMI] = ACTIONS(2930), @@ -92378,9 +92711,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2930), [sym_float_literal] = ACTIONS(2930), }, - [STATE(753)] = { - [sym_line_comment] = STATE(753), - [sym_block_comment] = STATE(753), + [STATE(754)] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_SEMI] = ACTIONS(2934), @@ -92459,9 +92792,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2934), [sym_float_literal] = ACTIONS(2934), }, - [STATE(754)] = { - [sym_line_comment] = STATE(754), - [sym_block_comment] = STATE(754), + [STATE(755)] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2938), [sym_identifier] = ACTIONS(2940), [anon_sym_SEMI] = ACTIONS(2938), @@ -92540,9 +92873,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2938), [sym_float_literal] = ACTIONS(2938), }, - [STATE(755)] = { - [sym_line_comment] = STATE(755), - [sym_block_comment] = STATE(755), + [STATE(756)] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2942), [sym_identifier] = ACTIONS(2944), [anon_sym_SEMI] = ACTIONS(2942), @@ -92621,9 +92954,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2942), [sym_float_literal] = ACTIONS(2942), }, - [STATE(756)] = { - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), + [STATE(757)] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2946), [sym_identifier] = ACTIONS(2948), [anon_sym_SEMI] = ACTIONS(2946), @@ -92702,9 +93035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2946), [sym_float_literal] = ACTIONS(2946), }, - [STATE(757)] = { - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), + [STATE(758)] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2950), [sym_identifier] = ACTIONS(2952), [anon_sym_SEMI] = ACTIONS(2950), @@ -92783,9 +93116,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2950), [sym_float_literal] = ACTIONS(2950), }, - [STATE(758)] = { - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), + [STATE(759)] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2954), [sym_identifier] = ACTIONS(2956), [anon_sym_SEMI] = ACTIONS(2954), @@ -92864,9 +93197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2954), [sym_float_literal] = ACTIONS(2954), }, - [STATE(759)] = { - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), + [STATE(760)] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2958), [sym_identifier] = ACTIONS(2960), [anon_sym_SEMI] = ACTIONS(2958), @@ -92945,9 +93278,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2958), [sym_float_literal] = ACTIONS(2958), }, - [STATE(760)] = { - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), + [STATE(761)] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2962), [sym_identifier] = ACTIONS(2964), [anon_sym_SEMI] = ACTIONS(2962), @@ -93026,9 +93359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2962), [sym_float_literal] = ACTIONS(2962), }, - [STATE(761)] = { - [sym_line_comment] = STATE(761), - [sym_block_comment] = STATE(761), + [STATE(762)] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2966), [sym_identifier] = ACTIONS(2968), [anon_sym_SEMI] = ACTIONS(2966), @@ -93107,9 +93440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2966), [sym_float_literal] = ACTIONS(2966), }, - [STATE(762)] = { - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), + [STATE(763)] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2970), [sym_identifier] = ACTIONS(2972), [anon_sym_SEMI] = ACTIONS(2970), @@ -93188,9 +93521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2970), [sym_float_literal] = ACTIONS(2970), }, - [STATE(763)] = { - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), + [STATE(764)] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2974), [sym_identifier] = ACTIONS(2976), [anon_sym_SEMI] = ACTIONS(2974), @@ -93269,9 +93602,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2974), [sym_float_literal] = ACTIONS(2974), }, - [STATE(764)] = { - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), + [STATE(765)] = { + [sym_attribute_item] = STATE(1419), + [sym_inner_attribute_item] = STATE(1419), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_match_pattern] = STATE(3590), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3030), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), + [aux_sym_match_arm_repeat1] = STATE(1072), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), + }, + [STATE(766)] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(2978), [sym_identifier] = ACTIONS(2980), [anon_sym_SEMI] = ACTIONS(2978), @@ -93350,9 +93764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2978), [sym_float_literal] = ACTIONS(2978), }, - [STATE(765)] = { - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), + [STATE(767)] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(2982), [sym_identifier] = ACTIONS(2984), [anon_sym_SEMI] = ACTIONS(2982), @@ -93431,9 +93845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2982), [sym_float_literal] = ACTIONS(2982), }, - [STATE(766)] = { - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), + [STATE(768)] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(2986), @@ -93512,9 +93926,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2986), [sym_float_literal] = ACTIONS(2986), }, - [STATE(767)] = { - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), + [STATE(769)] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(2990), [sym_identifier] = ACTIONS(2992), [anon_sym_SEMI] = ACTIONS(2990), @@ -93593,9 +94007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2990), [sym_float_literal] = ACTIONS(2990), }, - [STATE(768)] = { - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), + [STATE(770)] = { + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), [ts_builtin_sym_end] = ACTIONS(2994), [sym_identifier] = ACTIONS(2996), [anon_sym_SEMI] = ACTIONS(2994), @@ -93674,9 +94088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2994), [sym_float_literal] = ACTIONS(2994), }, - [STATE(769)] = { - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), + [STATE(771)] = { + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), [ts_builtin_sym_end] = ACTIONS(2998), [sym_identifier] = ACTIONS(3000), [anon_sym_SEMI] = ACTIONS(2998), @@ -93755,9 +94169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2998), [sym_float_literal] = ACTIONS(2998), }, - [STATE(770)] = { - [sym_line_comment] = STATE(770), - [sym_block_comment] = STATE(770), + [STATE(772)] = { + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), [ts_builtin_sym_end] = ACTIONS(3002), [sym_identifier] = ACTIONS(3004), [anon_sym_SEMI] = ACTIONS(3002), @@ -93836,9 +94250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3002), [sym_float_literal] = ACTIONS(3002), }, - [STATE(771)] = { - [sym_line_comment] = STATE(771), - [sym_block_comment] = STATE(771), + [STATE(773)] = { + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), [ts_builtin_sym_end] = ACTIONS(3006), [sym_identifier] = ACTIONS(3008), [anon_sym_SEMI] = ACTIONS(3006), @@ -93917,9 +94331,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3006), [sym_float_literal] = ACTIONS(3006), }, - [STATE(772)] = { - [sym_line_comment] = STATE(772), - [sym_block_comment] = STATE(772), + [STATE(774)] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), [ts_builtin_sym_end] = ACTIONS(3010), [sym_identifier] = ACTIONS(3012), [anon_sym_SEMI] = ACTIONS(3010), @@ -93998,9 +94412,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3010), [sym_float_literal] = ACTIONS(3010), }, - [STATE(773)] = { - [sym_line_comment] = STATE(773), - [sym_block_comment] = STATE(773), + [STATE(775)] = { + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), [ts_builtin_sym_end] = ACTIONS(3014), [sym_identifier] = ACTIONS(3016), [anon_sym_SEMI] = ACTIONS(3014), @@ -94079,9 +94493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3014), [sym_float_literal] = ACTIONS(3014), }, - [STATE(774)] = { - [sym_line_comment] = STATE(774), - [sym_block_comment] = STATE(774), + [STATE(776)] = { + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), [ts_builtin_sym_end] = ACTIONS(3018), [sym_identifier] = ACTIONS(3020), [anon_sym_SEMI] = ACTIONS(3018), @@ -94160,9 +94574,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3018), [sym_float_literal] = ACTIONS(3018), }, - [STATE(775)] = { - [sym_line_comment] = STATE(775), - [sym_block_comment] = STATE(775), + [STATE(777)] = { + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), [ts_builtin_sym_end] = ACTIONS(3022), [sym_identifier] = ACTIONS(3024), [anon_sym_SEMI] = ACTIONS(3022), @@ -94241,9 +94655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3022), [sym_float_literal] = ACTIONS(3022), }, - [STATE(776)] = { - [sym_line_comment] = STATE(776), - [sym_block_comment] = STATE(776), + [STATE(778)] = { + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), [ts_builtin_sym_end] = ACTIONS(3026), [sym_identifier] = ACTIONS(3028), [anon_sym_SEMI] = ACTIONS(3026), @@ -94322,9 +94736,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3026), [sym_float_literal] = ACTIONS(3026), }, - [STATE(777)] = { - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), + [STATE(779)] = { + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), [ts_builtin_sym_end] = ACTIONS(3030), [sym_identifier] = ACTIONS(3032), [anon_sym_SEMI] = ACTIONS(3030), @@ -94403,9 +94817,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3030), [sym_float_literal] = ACTIONS(3030), }, - [STATE(778)] = { - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [STATE(780)] = { + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), [ts_builtin_sym_end] = ACTIONS(3034), [sym_identifier] = ACTIONS(3036), [anon_sym_SEMI] = ACTIONS(3034), @@ -94484,9 +94898,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3034), [sym_float_literal] = ACTIONS(3034), }, - [STATE(779)] = { - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), + [STATE(781)] = { + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), [ts_builtin_sym_end] = ACTIONS(3038), [sym_identifier] = ACTIONS(3040), [anon_sym_SEMI] = ACTIONS(3038), @@ -94565,9 +94979,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3038), [sym_float_literal] = ACTIONS(3038), }, - [STATE(780)] = { - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), + [STATE(782)] = { + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), [ts_builtin_sym_end] = ACTIONS(3042), [sym_identifier] = ACTIONS(3044), [anon_sym_SEMI] = ACTIONS(3042), @@ -94646,9 +95060,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3042), [sym_float_literal] = ACTIONS(3042), }, - [STATE(781)] = { - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), + [STATE(783)] = { + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), [ts_builtin_sym_end] = ACTIONS(3046), [sym_identifier] = ACTIONS(3048), [anon_sym_SEMI] = ACTIONS(3046), @@ -94727,20139 +95141,20529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3046), [sym_float_literal] = ACTIONS(3046), }, - [STATE(782)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(794), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), - }, - [STATE(783)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_const_parameter] = STATE(3034), - [sym_type_parameter] = STATE(3034), - [sym_lifetime_parameter] = STATE(3034), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(2505), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), - [sym_line_comment] = STATE(783), - [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(2117), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(3072), - }, [STATE(784)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym_closure_expression] = STATE(3258), - [sym_closure_parameters] = STATE(245), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_macro_rules_BANG] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_u8] = ACTIONS(3052), + [anon_sym_i8] = ACTIONS(3052), + [anon_sym_u16] = ACTIONS(3052), + [anon_sym_i16] = ACTIONS(3052), + [anon_sym_u32] = ACTIONS(3052), + [anon_sym_i32] = ACTIONS(3052), + [anon_sym_u64] = ACTIONS(3052), + [anon_sym_i64] = ACTIONS(3052), + [anon_sym_u128] = ACTIONS(3052), + [anon_sym_i128] = ACTIONS(3052), + [anon_sym_isize] = ACTIONS(3052), + [anon_sym_usize] = ACTIONS(3052), + [anon_sym_f32] = ACTIONS(3052), + [anon_sym_f64] = ACTIONS(3052), + [anon_sym_bool] = ACTIONS(3052), + [anon_sym_str] = ACTIONS(3052), + [anon_sym_char] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_POUND] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_gen] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_impl] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_loop] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_mod] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_trait] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_use] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_extern] = ACTIONS(3052), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_move] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [aux_sym_string_literal_token1] = ACTIONS(3050), + [sym_char_literal] = ACTIONS(3050), + [anon_sym_true] = ACTIONS(3052), + [anon_sym_false] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_crate] = ACTIONS(3052), + [sym_metavariable] = ACTIONS(3050), + [sym__raw_string_literal_start] = ACTIONS(3050), + [sym_float_literal] = ACTIONS(3050), }, [STATE(785)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(3054), + [anon_sym_macro_rules_BANG] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_u8] = ACTIONS(3056), + [anon_sym_i8] = ACTIONS(3056), + [anon_sym_u16] = ACTIONS(3056), + [anon_sym_i16] = ACTIONS(3056), + [anon_sym_u32] = ACTIONS(3056), + [anon_sym_i32] = ACTIONS(3056), + [anon_sym_u64] = ACTIONS(3056), + [anon_sym_i64] = ACTIONS(3056), + [anon_sym_u128] = ACTIONS(3056), + [anon_sym_i128] = ACTIONS(3056), + [anon_sym_isize] = ACTIONS(3056), + [anon_sym_usize] = ACTIONS(3056), + [anon_sym_f32] = ACTIONS(3056), + [anon_sym_f64] = ACTIONS(3056), + [anon_sym_bool] = ACTIONS(3056), + [anon_sym_str] = ACTIONS(3056), + [anon_sym_char] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3054), + [anon_sym_BANG] = ACTIONS(3054), [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_DOT_DOT] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3054), + [anon_sym_POUND] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_async] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_default] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_gen] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_impl] = ACTIONS(3056), + [anon_sym_let] = ACTIONS(3056), + [anon_sym_loop] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_pub] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_trait] = ACTIONS(3056), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_use] = ACTIONS(3056), + [anon_sym_while] = ACTIONS(3056), + [anon_sym_extern] = ACTIONS(3056), + [anon_sym_yield] = ACTIONS(3056), + [anon_sym_move] = ACTIONS(3056), + [anon_sym_try] = ACTIONS(3056), + [sym_integer_literal] = ACTIONS(3054), + [aux_sym_string_literal_token1] = ACTIONS(3054), + [sym_char_literal] = ACTIONS(3054), + [anon_sym_true] = ACTIONS(3056), + [anon_sym_false] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3056), + [sym_super] = ACTIONS(3056), + [sym_crate] = ACTIONS(3056), + [sym_metavariable] = ACTIONS(3054), + [sym__raw_string_literal_start] = ACTIONS(3054), + [sym_float_literal] = ACTIONS(3054), }, [STATE(786)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3058), + [anon_sym_macro_rules_BANG] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_u8] = ACTIONS(3060), + [anon_sym_i8] = ACTIONS(3060), + [anon_sym_u16] = ACTIONS(3060), + [anon_sym_i16] = ACTIONS(3060), + [anon_sym_u32] = ACTIONS(3060), + [anon_sym_i32] = ACTIONS(3060), + [anon_sym_u64] = ACTIONS(3060), + [anon_sym_i64] = ACTIONS(3060), + [anon_sym_u128] = ACTIONS(3060), + [anon_sym_i128] = ACTIONS(3060), + [anon_sym_isize] = ACTIONS(3060), + [anon_sym_usize] = ACTIONS(3060), + [anon_sym_f32] = ACTIONS(3060), + [anon_sym_f64] = ACTIONS(3060), + [anon_sym_bool] = ACTIONS(3060), + [anon_sym_str] = ACTIONS(3060), + [anon_sym_char] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_DOT_DOT] = ACTIONS(3058), + [anon_sym_COLON_COLON] = ACTIONS(3058), [anon_sym_POUND] = ACTIONS(3058), [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_default] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_gen] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_impl] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_loop] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_mod] = ACTIONS(3060), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_trait] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_use] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_extern] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_move] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [sym_integer_literal] = ACTIONS(3058), + [aux_sym_string_literal_token1] = ACTIONS(3058), + [sym_char_literal] = ACTIONS(3058), + [anon_sym_true] = ACTIONS(3060), + [anon_sym_false] = ACTIONS(3060), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_crate] = ACTIONS(3060), + [sym_metavariable] = ACTIONS(3058), + [sym__raw_string_literal_start] = ACTIONS(3058), + [sym_float_literal] = ACTIONS(3058), }, [STATE(787)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3064), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_macro_rules_BANG] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_u8] = ACTIONS(3064), + [anon_sym_i8] = ACTIONS(3064), + [anon_sym_u16] = ACTIONS(3064), + [anon_sym_i16] = ACTIONS(3064), + [anon_sym_u32] = ACTIONS(3064), + [anon_sym_i32] = ACTIONS(3064), + [anon_sym_u64] = ACTIONS(3064), + [anon_sym_i64] = ACTIONS(3064), + [anon_sym_u128] = ACTIONS(3064), + [anon_sym_i128] = ACTIONS(3064), + [anon_sym_isize] = ACTIONS(3064), + [anon_sym_usize] = ACTIONS(3064), + [anon_sym_f32] = ACTIONS(3064), + [anon_sym_f64] = ACTIONS(3064), + [anon_sym_bool] = ACTIONS(3064), + [anon_sym_str] = ACTIONS(3064), + [anon_sym_char] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_DOT_DOT] = ACTIONS(3062), + [anon_sym_COLON_COLON] = ACTIONS(3062), + [anon_sym_POUND] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3064), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_gen] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_impl] = ACTIONS(3064), + [anon_sym_let] = ACTIONS(3064), + [anon_sym_loop] = ACTIONS(3064), + [anon_sym_match] = ACTIONS(3064), + [anon_sym_mod] = ACTIONS(3064), + [anon_sym_pub] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_trait] = ACTIONS(3064), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3064), + [anon_sym_while] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(3064), + [anon_sym_yield] = ACTIONS(3064), + [anon_sym_move] = ACTIONS(3064), + [anon_sym_try] = ACTIONS(3064), + [sym_integer_literal] = ACTIONS(3062), + [aux_sym_string_literal_token1] = ACTIONS(3062), + [sym_char_literal] = ACTIONS(3062), + [anon_sym_true] = ACTIONS(3064), + [anon_sym_false] = ACTIONS(3064), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3064), + [sym_super] = ACTIONS(3064), [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [sym_metavariable] = ACTIONS(3062), + [sym__raw_string_literal_start] = ACTIONS(3062), + [sym_float_literal] = ACTIONS(3062), }, [STATE(788)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym__type] = STATE(2707), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(804), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(789)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_const_parameter] = STATE(2901), + [sym_type_parameter] = STATE(2901), + [sym_lifetime_parameter] = STATE(2901), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2983), + [sym_bracketed_type] = STATE(3749), + [sym_qualified_type] = STATE(3595), + [sym_lifetime] = STATE(2578), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(2147), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(3088), }, [STATE(790)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1020), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(791)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(3053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1020), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(797), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(792)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2697), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1020), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(793)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1020), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3092), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(794)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1025), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1020), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(795)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2708), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1020), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2642), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1020), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(802), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(797)] = { - [sym_attribute_item] = STATE(1115), - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym_visibility_modifier] = STATE(1036), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2839), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [aux_sym_enum_variant_list_repeat1] = STATE(1079), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(3064), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(798)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2648), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2711), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3100), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2813), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3102), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(1561), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2621), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2620), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(802)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(1053), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3110), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(1095), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2624), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2798), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3116), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [aux_sym_enum_variant_list_repeat1] = STATE(1095), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(3080), + [sym_metavariable] = ACTIONS(1647), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_parameter] = STATE(3218), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3118), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(3122), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3124), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(806)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3126), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(808)] = { - [sym_parameter] = STATE(3181), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2928), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(809)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_parameter] = STATE(3025), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2692), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(3122), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3124), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(810)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2647), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(811)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3136), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(812)] = { - [sym_parameter] = STATE(3066), - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2504), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3124), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3126), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(814)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(3136), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(815)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2512), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2559), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2799), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3140), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3148), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3150), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(818)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_parameter] = STATE(3025), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2173), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2552), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3142), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(3122), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3124), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3182), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2171), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2838), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2228), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(822)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2184), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3477), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3260), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2533), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2180), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3023), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2167), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2199), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3319), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3456), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2769), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2182), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3138), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2608), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(3156), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3108), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3451), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2972), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2597), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2205), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(3158), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2923), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2735), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3160), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(833)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3444), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3206), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(834)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2509), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3075), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(3146), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2944), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3228), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(3148), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3317), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3024), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2517), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2955), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2176), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2946), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2588), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(3162), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(2990), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3060), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3089), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2189), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3657), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3380), - [sym_macro_invocation] = STATE(3065), - [sym_scoped_identifier] = STATE(2239), - [sym_scoped_type_identifier] = STATE(3064), - [sym_const_block] = STATE(3065), - [sym__pattern] = STATE(3094), - [sym_generic_pattern] = STATE(3065), - [sym_tuple_pattern] = STATE(3065), - [sym_slice_pattern] = STATE(3065), - [sym_tuple_struct_pattern] = STATE(3065), - [sym_struct_pattern] = STATE(3065), - [sym_remaining_field_pattern] = STATE(3065), - [sym_mut_pattern] = STATE(3065), - [sym_range_pattern] = STATE(3065), - [sym_ref_pattern] = STATE(3065), - [sym_captured_pattern] = STATE(3065), - [sym_reference_pattern] = STATE(3065), - [sym_or_pattern] = STATE(3065), - [sym__literal_pattern] = STATE(2394), - [sym_negative_literal] = STATE(2465), - [sym_string_literal] = STATE(2465), - [sym_raw_string_literal] = STATE(2465), - [sym_boolean_literal] = STATE(2465), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3140), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_u8] = ACTIONS(1665), - [anon_sym_i8] = ACTIONS(1665), - [anon_sym_u16] = ACTIONS(1665), - [anon_sym_i16] = ACTIONS(1665), - [anon_sym_u32] = ACTIONS(1665), - [anon_sym_i32] = ACTIONS(1665), - [anon_sym_u64] = ACTIONS(1665), - [anon_sym_i64] = ACTIONS(1665), - [anon_sym_u128] = ACTIONS(1665), - [anon_sym_i128] = ACTIONS(1665), - [anon_sym_isize] = ACTIONS(1665), - [anon_sym_usize] = ACTIONS(1665), - [anon_sym_f32] = ACTIONS(1665), - [anon_sym_f64] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_str] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_gen] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_ref] = ACTIONS(1687), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1693), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1701), - [sym_float_literal] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(3164), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3413), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3092), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3436), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3059), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3441), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(2222), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3442), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(3142), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), - [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(3443), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_bracketed_type] = STATE(3693), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3420), + [sym_macro_invocation] = STATE(2959), + [sym_scoped_identifier] = STATE(2267), + [sym_scoped_type_identifier] = STATE(3000), + [sym_const_block] = STATE(2959), + [sym__pattern] = STATE(2950), + [sym_generic_pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2959), + [sym_slice_pattern] = STATE(2959), + [sym_tuple_struct_pattern] = STATE(2959), + [sym_struct_pattern] = STATE(2959), + [sym_remaining_field_pattern] = STATE(2959), + [sym_mut_pattern] = STATE(2959), + [sym_range_pattern] = STATE(2959), + [sym_ref_pattern] = STATE(2959), + [sym_captured_pattern] = STATE(2959), + [sym_reference_pattern] = STATE(2959), + [sym_or_pattern] = STATE(2959), + [sym__literal_pattern] = STATE(2453), + [sym_negative_literal] = STATE(2417), + [sym_string_literal] = STATE(2417), + [sym_raw_string_literal] = STATE(2417), + [sym_boolean_literal] = STATE(2417), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_u8] = ACTIONS(1679), + [anon_sym_i8] = ACTIONS(1679), + [anon_sym_u16] = ACTIONS(1679), + [anon_sym_i16] = ACTIONS(1679), + [anon_sym_u32] = ACTIONS(1679), + [anon_sym_i32] = ACTIONS(1679), + [anon_sym_u64] = ACTIONS(1679), + [anon_sym_i64] = ACTIONS(1679), + [anon_sym_u128] = ACTIONS(1679), + [anon_sym_i128] = ACTIONS(1679), + [anon_sym_isize] = ACTIONS(1679), + [anon_sym_usize] = ACTIONS(1679), + [anon_sym_f32] = ACTIONS(1679), + [anon_sym_f64] = ACTIONS(1679), + [anon_sym_bool] = ACTIONS(1679), + [anon_sym_str] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1699), + [anon_sym_gen] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1703), + [sym_integer_literal] = ACTIONS(1705), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1715), + [sym_float_literal] = ACTIONS(1705), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3757), - [sym_generic_type] = STATE(3513), - [sym_generic_type_with_turbofish] = STATE(3368), - [sym_macro_invocation] = STATE(2170), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), [sym_scoped_identifier] = STATE(2032), - [sym_scoped_type_identifier] = STATE(3123), - [sym_const_block] = STATE(2170), - [sym__pattern] = STATE(2178), - [sym_generic_pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(2170), - [sym_slice_pattern] = STATE(2170), - [sym_tuple_struct_pattern] = STATE(2170), - [sym_struct_pattern] = STATE(2170), - [sym_remaining_field_pattern] = STATE(2170), - [sym_mut_pattern] = STATE(2170), - [sym_range_pattern] = STATE(2170), - [sym_ref_pattern] = STATE(2170), - [sym_captured_pattern] = STATE(2170), - [sym_reference_pattern] = STATE(2170), - [sym_or_pattern] = STATE(2170), - [sym__literal_pattern] = STATE(2087), - [sym_negative_literal] = STATE(2096), - [sym_string_literal] = STATE(2096), - [sym_raw_string_literal] = STATE(2096), - [sym_boolean_literal] = STATE(2096), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3447), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_gen] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_ref] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1259), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1261), - [anon_sym_false] = ACTIONS(1261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1808), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(849)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3468), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3180), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(850)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3474), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3190), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(851)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3475), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3222), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(852)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3476), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(853)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_bracketed_type] = STATE(3783), + [sym_generic_type] = STATE(3787), + [sym_generic_type_with_turbofish] = STATE(3487), + [sym_macro_invocation] = STATE(2186), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3103), + [sym_const_block] = STATE(2186), + [sym__pattern] = STATE(3138), + [sym_generic_pattern] = STATE(2186), + [sym_tuple_pattern] = STATE(2186), + [sym_slice_pattern] = STATE(2186), + [sym_tuple_struct_pattern] = STATE(2186), + [sym_struct_pattern] = STATE(2186), + [sym_remaining_field_pattern] = STATE(2186), + [sym_mut_pattern] = STATE(2186), + [sym_range_pattern] = STATE(2186), + [sym_ref_pattern] = STATE(2186), + [sym_captured_pattern] = STATE(2186), + [sym_reference_pattern] = STATE(2186), + [sym_or_pattern] = STATE(2186), + [sym__literal_pattern] = STATE(2101), + [sym_negative_literal] = STATE(2102), + [sym_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3234), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_identifier] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_u8] = ACTIONS(1733), + [anon_sym_i8] = ACTIONS(1733), + [anon_sym_u16] = ACTIONS(1733), + [anon_sym_i16] = ACTIONS(1733), + [anon_sym_u32] = ACTIONS(1733), + [anon_sym_i32] = ACTIONS(1733), + [anon_sym_u64] = ACTIONS(1733), + [anon_sym_i64] = ACTIONS(1733), + [anon_sym_u128] = ACTIONS(1733), + [anon_sym_i128] = ACTIONS(1733), + [anon_sym_isize] = ACTIONS(1733), + [anon_sym_usize] = ACTIONS(1733), + [anon_sym_f32] = ACTIONS(1733), + [anon_sym_f64] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_str] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1389), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_COLON_COLON] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_gen] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_ref] = ACTIONS(1169), + [sym_mutable_specifier] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1177), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1745), + [sym_metavariable] = ACTIONS(1747), + [sym__raw_string_literal_start] = ACTIONS(1187), + [sym_float_literal] = ACTIONS(1175), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1472), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3236), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [sym_mutable_specifier] = ACTIONS(3196), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(959), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2445), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2439), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2251), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3206), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3212), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(1042), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2262), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1826), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [sym_mutable_specifier] = ACTIONS(3244), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3355), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(3208), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(3252), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2287), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(975), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2453), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2450), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2254), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2700), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(852), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_higher_ranked_trait_bound] = STATE(2295), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2335), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2335), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(2085), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3260), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [sym_mutable_specifier] = ACTIONS(3262), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(865)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_type_parameters] = STATE(980), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2475), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2499), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2278), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(866)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_type_parameters] = STATE(941), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2431), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2236), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3268), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [sym_block_comment] = STATE(866), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(867)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_type_parameters] = STATE(939), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2483), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2495), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2279), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(868)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2700), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3272), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(869)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_type_parameters] = STATE(965), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2504), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2491), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2274), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(870)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2722), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_type_parameters] = STATE(950), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2482), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2485), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2234), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(871)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2240), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2242), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2242), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2807), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2983), + [sym_bracketed_type] = STATE(3749), + [sym_qualified_type] = STATE(3595), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(873)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1442), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [sym_mutable_specifier] = ACTIONS(3284), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3774), - [sym_higher_ranked_trait_bound] = STATE(2313), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2276), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2276), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2053), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2771), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [sym_mutable_specifier] = ACTIONS(3280), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3288), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3712), - [sym_qualified_type] = STATE(3744), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3345), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1805), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(857), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(3284), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [sym_mutable_specifier] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [sym_mutable_specifier] = ACTIONS(3296), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(851), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3351), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [sym_mutable_specifier] = ACTIONS(3288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3298), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(881)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_higher_ranked_trait_bound] = STATE(2295), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2303), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2303), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1194), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1459), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1087), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(855), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [sym_mutable_specifier] = ACTIONS(3304), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_higher_ranked_trait_bound] = STATE(2269), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2270), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2270), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2421), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2404), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3231), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1426), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(1426), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(1426), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3020), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3302), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3304), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1430), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3498), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1430), + [sym_tuple_type] = STATE(1430), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(1201), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1430), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3424), + [sym_scoped_type_identifier] = STATE(1082), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3310), + [anon_sym_i8] = ACTIONS(3310), + [anon_sym_u16] = ACTIONS(3310), + [anon_sym_i16] = ACTIONS(3310), + [anon_sym_u32] = ACTIONS(3310), + [anon_sym_i32] = ACTIONS(3310), + [anon_sym_u64] = ACTIONS(3310), + [anon_sym_i64] = ACTIONS(3310), + [anon_sym_u128] = ACTIONS(3310), + [anon_sym_i128] = ACTIONS(3310), + [anon_sym_isize] = ACTIONS(3310), + [anon_sym_usize] = ACTIONS(3310), + [anon_sym_f32] = ACTIONS(3310), + [anon_sym_f64] = ACTIONS(3310), + [anon_sym_bool] = ACTIONS(3310), + [anon_sym_str] = ACTIONS(3310), + [anon_sym_char] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3314), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(3314), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3316), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2841), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3386), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1465), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1833), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3303), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1771), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2652), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1834), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(895)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1777), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(896)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2269), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3088), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(897)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1778), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(898)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2549), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(899)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1427), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(900)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2472), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(901)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2487), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1536), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(902)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2406), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1785), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(903)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1786), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(904)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1788), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(905)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2790), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2870), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(906)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1714), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1428), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(907)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1717), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1717), - [sym_tuple_type] = STATE(1717), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1666), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1717), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1600), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1519), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3314), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(908)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1436), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(909)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2409), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1792), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(910)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2282), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(911)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2538), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(912)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2623), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(913)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3049), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(914)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1753), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3548), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1753), - [sym_tuple_type] = STATE(1753), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1660), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1753), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3404), - [sym_scoped_type_identifier] = STATE(1597), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2534), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3310), - [anon_sym_i8] = ACTIONS(3310), - [anon_sym_u16] = ACTIONS(3310), - [anon_sym_i16] = ACTIONS(3310), - [anon_sym_u32] = ACTIONS(3310), - [anon_sym_i32] = ACTIONS(3310), - [anon_sym_u64] = ACTIONS(3310), - [anon_sym_i64] = ACTIONS(3310), - [anon_sym_u128] = ACTIONS(3310), - [anon_sym_i128] = ACTIONS(3310), - [anon_sym_isize] = ACTIONS(3310), - [anon_sym_usize] = ACTIONS(3310), - [anon_sym_f32] = ACTIONS(3310), - [anon_sym_f64] = ACTIONS(3310), - [anon_sym_bool] = ACTIONS(3310), - [anon_sym_str] = ACTIONS(3310), - [anon_sym_char] = ACTIONS(3310), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3316), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3318), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(915)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2695), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2423), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(916)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2281), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2433), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(917)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2451), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(918)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2807), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(919)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2484), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(920)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3121), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2941), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(921)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1484), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(922)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(923)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1738), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3542), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1738), + [sym_tuple_type] = STATE(1738), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1738), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3440), + [sym_scoped_type_identifier] = STATE(1615), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3322), + [anon_sym_i8] = ACTIONS(3322), + [anon_sym_u16] = ACTIONS(3322), + [anon_sym_i16] = ACTIONS(3322), + [anon_sym_u32] = ACTIONS(3322), + [anon_sym_i32] = ACTIONS(3322), + [anon_sym_u64] = ACTIONS(3322), + [anon_sym_i64] = ACTIONS(3322), + [anon_sym_u128] = ACTIONS(3322), + [anon_sym_i128] = ACTIONS(3322), + [anon_sym_isize] = ACTIONS(3322), + [anon_sym_usize] = ACTIONS(3322), + [anon_sym_f32] = ACTIONS(3322), + [anon_sym_f64] = ACTIONS(3322), + [anon_sym_bool] = ACTIONS(3322), + [anon_sym_str] = ACTIONS(3322), + [anon_sym_char] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_gen] = ACTIONS(3328), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3330), }, [STATE(924)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1475), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1485), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(925)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1486), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(926)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1745), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(1745), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(1745), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(927)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3101), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(928)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2312), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2840), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2777), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(930)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1481), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3696), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1481), - [sym_tuple_type] = STATE(1481), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(1129), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1481), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3386), - [sym_scoped_type_identifier] = STATE(1086), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1773), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3542), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1773), + [sym_tuple_type] = STATE(1773), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(1659), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1773), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3440), + [sym_scoped_type_identifier] = STATE(1600), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3294), - [anon_sym_i8] = ACTIONS(3294), - [anon_sym_u16] = ACTIONS(3294), - [anon_sym_i16] = ACTIONS(3294), - [anon_sym_u32] = ACTIONS(3294), - [anon_sym_i32] = ACTIONS(3294), - [anon_sym_u64] = ACTIONS(3294), - [anon_sym_i64] = ACTIONS(3294), - [anon_sym_u128] = ACTIONS(3294), - [anon_sym_i128] = ACTIONS(3294), - [anon_sym_isize] = ACTIONS(3294), - [anon_sym_usize] = ACTIONS(3294), - [anon_sym_f32] = ACTIONS(3294), - [anon_sym_f64] = ACTIONS(3294), - [anon_sym_bool] = ACTIONS(3294), - [anon_sym_str] = ACTIONS(3294), - [anon_sym_char] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_gen] = ACTIONS(3298), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(3298), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3300), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3322), + [anon_sym_i8] = ACTIONS(3322), + [anon_sym_u16] = ACTIONS(3322), + [anon_sym_i16] = ACTIONS(3322), + [anon_sym_u32] = ACTIONS(3322), + [anon_sym_i32] = ACTIONS(3322), + [anon_sym_u64] = ACTIONS(3322), + [anon_sym_i64] = ACTIONS(3322), + [anon_sym_u128] = ACTIONS(3322), + [anon_sym_i128] = ACTIONS(3322), + [anon_sym_isize] = ACTIONS(3322), + [anon_sym_usize] = ACTIONS(3322), + [anon_sym_f32] = ACTIONS(3322), + [anon_sym_f64] = ACTIONS(3322), + [anon_sym_bool] = ACTIONS(3322), + [anon_sym_str] = ACTIONS(3322), + [anon_sym_char] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3328), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3330), }, [STATE(931)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(932)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1435), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(933)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2721), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(934)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2786), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(935)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1811), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2691), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(936)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1751), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(937)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1812), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2087), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3604), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2087), + [sym_tuple_type] = STATE(2087), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2030), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2087), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2264), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(938)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1758), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2795), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(939)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2406), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2439), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2232), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, - [STATE(940)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3118), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [STATE(940)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3121), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(941)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2385), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2388), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2226), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(942)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(943)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2088), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2671), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2798), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(946)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2084), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(947)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2725), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1775), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3009), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2961), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2440), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2447), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2244), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3334), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3344), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2401), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3602), - [sym_removed_trait_bound] = STATE(1704), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3663), - [sym_lifetime] = STATE(3548), - [sym_array_type] = STATE(1704), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1704), - [sym_tuple_type] = STATE(1704), - [sym_unit_type] = STATE(1704), - [sym_generic_type] = STATE(1679), - [sym_generic_type_with_turbofish] = STATE(3654), - [sym_bounded_type] = STATE(1704), - [sym_use_bounds] = STATE(3548), - [sym_reference_type] = STATE(1704), - [sym_pointer_type] = STATE(1704), - [sym_never_type] = STATE(1704), - [sym_abstract_type] = STATE(1704), - [sym_dynamic_type] = STATE(1704), - [sym_macro_invocation] = STATE(1704), - [sym_scoped_identifier] = STATE(3400), - [sym_scoped_type_identifier] = STATE(1598), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_QMARK] = ACTIONS(3202), - [anon_sym_u8] = ACTIONS(3204), - [anon_sym_i8] = ACTIONS(3204), - [anon_sym_u16] = ACTIONS(3204), - [anon_sym_i16] = ACTIONS(3204), - [anon_sym_u32] = ACTIONS(3204), - [anon_sym_i32] = ACTIONS(3204), - [anon_sym_u64] = ACTIONS(3204), - [anon_sym_i64] = ACTIONS(3204), - [anon_sym_u128] = ACTIONS(3204), - [anon_sym_i128] = ACTIONS(3204), - [anon_sym_isize] = ACTIONS(3204), - [anon_sym_usize] = ACTIONS(3204), - [anon_sym_f32] = ACTIONS(3204), - [anon_sym_f64] = ACTIONS(3204), - [anon_sym_bool] = ACTIONS(3204), - [anon_sym_str] = ACTIONS(3204), - [anon_sym_char] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_fn] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3216), - [anon_sym_impl] = ACTIONS(3218), - [anon_sym_union] = ACTIONS(3216), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3220), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_crate] = ACTIONS(3224), - [sym_metavariable] = ACTIONS(3226), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1458), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2077), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3604), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2077), + [sym_tuple_type] = STATE(2077), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2077), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2277), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2824), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1504), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3043), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2745), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1505), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2447), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2253), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2310), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3401), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2064), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3402), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2519), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2476), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(963)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3087), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2296), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2446), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2497), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2276), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(2054), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2586), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2865), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2477), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3109), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2420), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2064), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2653), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2487), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2516), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2925), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2523), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2085), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(2085), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3084), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2656), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2428), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2422), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2456), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2256), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2430), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3119), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2626), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2629), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3014), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2434), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2502), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2254), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1507), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3105), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2063), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3249), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2009), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2082), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2066), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2771), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2067), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2068), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2087), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3773), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2087), + [sym_tuple_type] = STATE(2087), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2030), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2087), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2026), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2284), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2055), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2056), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2416), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2530), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2309), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2670), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2059), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2464), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2466), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2918), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2467), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2529), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2644), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2672), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3143), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2916), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2925), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2647), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2675), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2648), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2046), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2931), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2047), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1004)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2088), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1005)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2084), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1006)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2461), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2290), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1007)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2466), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1008)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2229), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2492), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1009)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2509), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1010)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2216), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2986), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1627), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1011)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2683), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1441), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(1012)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2471), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2663), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2493), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1014)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2494), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1015)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2498), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1016)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2500), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1017)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2298), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1018)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2688), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2666), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1019)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2667), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1020)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2973), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1021)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2072), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1022)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2399), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2490), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1023)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1445), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3498), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1445), + [sym_tuple_type] = STATE(1445), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(1136), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1445), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3424), + [sym_scoped_type_identifier] = STATE(1092), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3310), + [anon_sym_i8] = ACTIONS(3310), + [anon_sym_u16] = ACTIONS(3310), + [anon_sym_i16] = ACTIONS(3310), + [anon_sym_u32] = ACTIONS(3310), + [anon_sym_i32] = ACTIONS(3310), + [anon_sym_u64] = ACTIONS(3310), + [anon_sym_i64] = ACTIONS(3310), + [anon_sym_u128] = ACTIONS(3310), + [anon_sym_i128] = ACTIONS(3310), + [anon_sym_isize] = ACTIONS(3310), + [anon_sym_usize] = ACTIONS(3310), + [anon_sym_f32] = ACTIONS(3310), + [anon_sym_f64] = ACTIONS(3310), + [anon_sym_bool] = ACTIONS(3310), + [anon_sym_str] = ACTIONS(3310), + [anon_sym_char] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_gen] = ACTIONS(3314), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(3314), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3316), }, [STATE(1024)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2264), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2405), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1025)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2596), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1026)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2965), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1027)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2696), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3052), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1028)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2271), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2674), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1029)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2277), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1030)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2285), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3067), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1031)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1506), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2316), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1032)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2887), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1878), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(1033)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3074), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2408), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1034)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2987), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1488), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(1035)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3149), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1471), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(1036)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2646), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1037)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2606), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3146), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1038)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1526), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3488), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1039)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2845), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2402), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1040)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1421), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2409), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1041)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1444), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3558), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3355), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3604), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1641), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3604), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1635), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1042)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2395), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2232), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1825), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(1043)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1826), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(3542), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(3542), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(1044)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2777), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(2085), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(2085), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1045)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2056), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3734), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2056), - [sym_tuple_type] = STATE(2056), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2026), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2056), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2010), + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1472), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(3498), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(3498), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(1046)] = { - [sym_function_modifiers] = STATE(3733), - [sym_removed_trait_bound] = STATE(1449), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(1463), - [sym_bracketed_type] = STATE(3646), - [sym_lifetime] = STATE(3696), - [sym_array_type] = STATE(1449), - [sym_for_lifetimes] = STATE(1605), - [sym_function_type] = STATE(1449), - [sym_tuple_type] = STATE(1449), - [sym_unit_type] = STATE(1449), - [sym_generic_type] = STATE(1119), - [sym_generic_type_with_turbofish] = STATE(3634), - [sym_bounded_type] = STATE(1449), - [sym_use_bounds] = STATE(3696), - [sym_reference_type] = STATE(1449), - [sym_pointer_type] = STATE(1449), - [sym_never_type] = STATE(1449), - [sym_abstract_type] = STATE(1449), - [sym_dynamic_type] = STATE(1449), - [sym_macro_invocation] = STATE(1449), - [sym_scoped_identifier] = STATE(3308), - [sym_scoped_type_identifier] = STATE(1085), + [sym_function_modifiers] = STATE(3639), + [sym_removed_trait_bound] = STATE(1724), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1766), + [sym_bracketed_type] = STATE(3699), + [sym_lifetime] = STATE(1766), + [sym_array_type] = STATE(1724), + [sym_for_lifetimes] = STATE(1632), + [sym_function_type] = STATE(1724), + [sym_tuple_type] = STATE(1724), + [sym_unit_type] = STATE(1724), + [sym_generic_type] = STATE(1669), + [sym_generic_type_with_turbofish] = STATE(3690), + [sym_bounded_type] = STATE(1724), + [sym_use_bounds] = STATE(1766), + [sym_reference_type] = STATE(1724), + [sym_pointer_type] = STATE(1724), + [sym_never_type] = STATE(1724), + [sym_abstract_type] = STATE(1724), + [sym_dynamic_type] = STATE(1724), + [sym_macro_invocation] = STATE(1724), + [sym_scoped_identifier] = STATE(3436), + [sym_scoped_type_identifier] = STATE(1607), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_QMARK] = ACTIONS(3160), - [anon_sym_u8] = ACTIONS(3162), - [anon_sym_i8] = ACTIONS(3162), - [anon_sym_u16] = ACTIONS(3162), - [anon_sym_i16] = ACTIONS(3162), - [anon_sym_u32] = ACTIONS(3162), - [anon_sym_i32] = ACTIONS(3162), - [anon_sym_u64] = ACTIONS(3162), - [anon_sym_i64] = ACTIONS(3162), - [anon_sym_u128] = ACTIONS(3162), - [anon_sym_i128] = ACTIONS(3162), - [anon_sym_isize] = ACTIONS(3162), - [anon_sym_usize] = ACTIONS(3162), - [anon_sym_f32] = ACTIONS(3162), - [anon_sym_f64] = ACTIONS(3162), - [anon_sym_bool] = ACTIONS(3162), - [anon_sym_str] = ACTIONS(3162), - [anon_sym_char] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_fn] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(3174), - [anon_sym_impl] = ACTIONS(3176), - [anon_sym_union] = ACTIONS(3174), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(3178), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_crate] = ACTIONS(3182), - [sym_metavariable] = ACTIONS(3184), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3224), + [anon_sym_u8] = ACTIONS(3226), + [anon_sym_i8] = ACTIONS(3226), + [anon_sym_u16] = ACTIONS(3226), + [anon_sym_i16] = ACTIONS(3226), + [anon_sym_u32] = ACTIONS(3226), + [anon_sym_i32] = ACTIONS(3226), + [anon_sym_u64] = ACTIONS(3226), + [anon_sym_i64] = ACTIONS(3226), + [anon_sym_u128] = ACTIONS(3226), + [anon_sym_i128] = ACTIONS(3226), + [anon_sym_isize] = ACTIONS(3226), + [anon_sym_usize] = ACTIONS(3226), + [anon_sym_f32] = ACTIONS(3226), + [anon_sym_f64] = ACTIONS(3226), + [anon_sym_bool] = ACTIONS(3226), + [anon_sym_str] = ACTIONS(3226), + [anon_sym_char] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3238), + [anon_sym_impl] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(3366), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_crate] = ACTIONS(3246), + [sym_metavariable] = ACTIONS(3248), }, [STATE(1047)] = { - [sym_function_modifiers] = STATE(3774), - [sym_removed_trait_bound] = STATE(2048), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(2662), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3734), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1634), - [sym_function_type] = STATE(2048), - [sym_tuple_type] = STATE(2048), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2024), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2048), - [sym_use_bounds] = STATE(3734), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2007), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3094), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1048)] = { - [sym_function_modifiers] = STATE(3766), - [sym_removed_trait_bound] = STATE(2064), - [sym_extern_modifier] = STATE(2459), - [sym__type] = STATE(3473), - [sym_bracketed_type] = STATE(3712), - [sym_lifetime] = STATE(3473), - [sym_array_type] = STATE(2048), - [sym_for_lifetimes] = STATE(1607), - [sym_function_type] = STATE(2064), - [sym_tuple_type] = STATE(2064), - [sym_unit_type] = STATE(2048), - [sym_generic_type] = STATE(2019), - [sym_generic_type_with_turbofish] = STATE(3557), - [sym_bounded_type] = STATE(2064), - [sym_use_bounds] = STATE(3473), - [sym_reference_type] = STATE(2048), - [sym_pointer_type] = STATE(2048), - [sym_never_type] = STATE(2048), - [sym_abstract_type] = STATE(2048), - [sym_dynamic_type] = STATE(2048), - [sym_macro_invocation] = STATE(2048), - [sym_scoped_identifier] = STATE(3378), - [sym_scoped_type_identifier] = STATE(2237), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2293), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2278), - [sym_identifier] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_async] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1623), - [anon_sym_impl] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1249), - [anon_sym_dyn] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1631), - [sym_super] = ACTIONS(1631), - [sym_crate] = ACTIONS(1631), - [sym_metavariable] = ACTIONS(1633), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1049)] = { - [sym_attribute_item] = STATE(1050), + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3127), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_enum_variant_list_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(3360), - [anon_sym_i8] = ACTIONS(3360), - [anon_sym_u16] = ACTIONS(3360), - [anon_sym_i16] = ACTIONS(3360), - [anon_sym_u32] = ACTIONS(3360), - [anon_sym_i32] = ACTIONS(3360), - [anon_sym_u64] = ACTIONS(3360), - [anon_sym_i64] = ACTIONS(3360), - [anon_sym_u128] = ACTIONS(3360), - [anon_sym_i128] = ACTIONS(3360), - [anon_sym_isize] = ACTIONS(3360), - [anon_sym_usize] = ACTIONS(3360), - [anon_sym_f32] = ACTIONS(3360), - [anon_sym_f64] = ACTIONS(3360), - [anon_sym_bool] = ACTIONS(3360), - [anon_sym_str] = ACTIONS(3360), - [anon_sym_char] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_default] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_gen] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_loop] = ACTIONS(3360), - [anon_sym_match] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_union] = ACTIONS(3360), - [anon_sym_unsafe] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_move] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [sym_integer_literal] = ACTIONS(759), - [aux_sym_string_literal_token1] = ACTIONS(759), - [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_crate] = ACTIONS(3360), - [sym_metavariable] = ACTIONS(759), - [sym__raw_string_literal_start] = ACTIONS(759), - [sym_float_literal] = ACTIONS(759), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1050)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [sym_identifier] = ACTIONS(3362), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_RBRACK] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_u8] = ACTIONS(3362), - [anon_sym_i8] = ACTIONS(3362), - [anon_sym_u16] = ACTIONS(3362), - [anon_sym_i16] = ACTIONS(3362), - [anon_sym_u32] = ACTIONS(3362), - [anon_sym_i32] = ACTIONS(3362), - [anon_sym_u64] = ACTIONS(3362), - [anon_sym_i64] = ACTIONS(3362), - [anon_sym_u128] = ACTIONS(3362), - [anon_sym_i128] = ACTIONS(3362), - [anon_sym_isize] = ACTIONS(3362), - [anon_sym_usize] = ACTIONS(3362), - [anon_sym_f32] = ACTIONS(3362), - [anon_sym_f64] = ACTIONS(3362), - [anon_sym_bool] = ACTIONS(3362), - [anon_sym_str] = ACTIONS(3362), - [anon_sym_char] = ACTIONS(3362), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_PIPE] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_DOT_DOT] = ACTIONS(3364), - [anon_sym_COMMA] = ACTIONS(3364), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_POUND] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3362), - [anon_sym_async] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_gen] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_loop] = ACTIONS(3362), - [anon_sym_match] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_unsafe] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_yield] = ACTIONS(3362), - [anon_sym_move] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [sym_integer_literal] = ACTIONS(3364), - [aux_sym_string_literal_token1] = ACTIONS(3364), - [sym_char_literal] = ACTIONS(3364), - [anon_sym_true] = ACTIONS(3362), - [anon_sym_false] = ACTIONS(3362), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3362), - [sym_super] = ACTIONS(3362), - [sym_crate] = ACTIONS(3362), - [sym_metavariable] = ACTIONS(3364), - [sym__raw_string_literal_start] = ACTIONS(3364), - [sym_float_literal] = ACTIONS(3364), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1051)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2077), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(3773), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2077), + [sym_tuple_type] = STATE(2077), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2077), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2024), [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_RBRACK] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_u8] = ACTIONS(2614), - [anon_sym_i8] = ACTIONS(2614), - [anon_sym_u16] = ACTIONS(2614), - [anon_sym_i16] = ACTIONS(2614), - [anon_sym_u32] = ACTIONS(2614), - [anon_sym_i32] = ACTIONS(2614), - [anon_sym_u64] = ACTIONS(2614), - [anon_sym_i64] = ACTIONS(2614), - [anon_sym_u128] = ACTIONS(2614), - [anon_sym_i128] = ACTIONS(2614), - [anon_sym_isize] = ACTIONS(2614), - [anon_sym_usize] = ACTIONS(2614), - [anon_sym_f32] = ACTIONS(2614), - [anon_sym_f64] = ACTIONS(2614), - [anon_sym_bool] = ACTIONS(2614), - [anon_sym_str] = ACTIONS(2614), - [anon_sym_char] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_COMMA] = ACTIONS(2612), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_gen] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_move] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [sym_integer_literal] = ACTIONS(2612), - [aux_sym_string_literal_token1] = ACTIONS(2612), - [sym_char_literal] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_crate] = ACTIONS(2614), - [sym_metavariable] = ACTIONS(2612), - [sym__raw_string_literal_start] = ACTIONS(2612), - [sym_float_literal] = ACTIONS(2612), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), }, [STATE(1052)] = { + [sym_function_modifiers] = STATE(3770), + [sym_removed_trait_bound] = STATE(1509), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(1478), + [sym_bracketed_type] = STATE(3682), + [sym_lifetime] = STATE(1478), + [sym_array_type] = STATE(1509), + [sym_for_lifetimes] = STATE(1648), + [sym_function_type] = STATE(1509), + [sym_tuple_type] = STATE(1509), + [sym_unit_type] = STATE(1509), + [sym_generic_type] = STATE(1126), + [sym_generic_type_with_turbofish] = STATE(3670), + [sym_bounded_type] = STATE(1509), + [sym_use_bounds] = STATE(1478), + [sym_reference_type] = STATE(1509), + [sym_pointer_type] = STATE(1509), + [sym_never_type] = STATE(1509), + [sym_abstract_type] = STATE(1509), + [sym_dynamic_type] = STATE(1509), + [sym_macro_invocation] = STATE(1509), + [sym_scoped_identifier] = STATE(3345), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_u8] = ACTIONS(1593), - [anon_sym_i8] = ACTIONS(1593), - [anon_sym_u16] = ACTIONS(1593), - [anon_sym_i16] = ACTIONS(1593), - [anon_sym_u32] = ACTIONS(1593), - [anon_sym_i32] = ACTIONS(1593), - [anon_sym_u64] = ACTIONS(1593), - [anon_sym_i64] = ACTIONS(1593), - [anon_sym_u128] = ACTIONS(1593), - [anon_sym_i128] = ACTIONS(1593), - [anon_sym_isize] = ACTIONS(1593), - [anon_sym_usize] = ACTIONS(1593), - [anon_sym_f32] = ACTIONS(1593), - [anon_sym_f64] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_str] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym__] = ACTIONS(1593), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_COLON_COLON] = ACTIONS(1595), - [anon_sym_DASH_GT] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_gen] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_loop] = ACTIONS(1593), - [anon_sym_match] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_unsafe] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_yield] = ACTIONS(1593), - [anon_sym_move] = ACTIONS(1593), - [anon_sym_try] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [aux_sym_string_literal_token1] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1595), - [sym__raw_string_literal_start] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(3178), + [anon_sym_i8] = ACTIONS(3178), + [anon_sym_u16] = ACTIONS(3178), + [anon_sym_i16] = ACTIONS(3178), + [anon_sym_u32] = ACTIONS(3178), + [anon_sym_i32] = ACTIONS(3178), + [anon_sym_u64] = ACTIONS(3178), + [anon_sym_i64] = ACTIONS(3178), + [anon_sym_u128] = ACTIONS(3178), + [anon_sym_i128] = ACTIONS(3178), + [anon_sym_isize] = ACTIONS(3178), + [anon_sym_usize] = ACTIONS(3178), + [anon_sym_f32] = ACTIONS(3178), + [anon_sym_f64] = ACTIONS(3178), + [anon_sym_bool] = ACTIONS(3178), + [anon_sym_str] = ACTIONS(3178), + [anon_sym_char] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3372), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(3190), + [anon_sym_impl] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(3374), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_crate] = ACTIONS(3198), + [sym_metavariable] = ACTIONS(3200), }, [STATE(1053)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2947), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [sym_identifier] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_u8] = ACTIONS(3366), - [anon_sym_i8] = ACTIONS(3366), - [anon_sym_u16] = ACTIONS(3366), - [anon_sym_i16] = ACTIONS(3366), - [anon_sym_u32] = ACTIONS(3366), - [anon_sym_i32] = ACTIONS(3366), - [anon_sym_u64] = ACTIONS(3366), - [anon_sym_i64] = ACTIONS(3366), - [anon_sym_u128] = ACTIONS(3366), - [anon_sym_i128] = ACTIONS(3366), - [anon_sym_isize] = ACTIONS(3366), - [anon_sym_usize] = ACTIONS(3366), - [anon_sym_f32] = ACTIONS(3366), - [anon_sym_f64] = ACTIONS(3366), - [anon_sym_bool] = ACTIONS(3366), - [anon_sym_str] = ACTIONS(3366), - [anon_sym_char] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_PIPE] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym__] = ACTIONS(3366), - [anon_sym_DOT_DOT] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3368), - [anon_sym_DASH_GT] = ACTIONS(3368), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_gen] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_loop] = ACTIONS(3366), - [anon_sym_match] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_union] = ACTIONS(3366), - [anon_sym_unsafe] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_move] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [sym_integer_literal] = ACTIONS(3368), - [aux_sym_string_literal_token1] = ACTIONS(3368), - [sym_char_literal] = ACTIONS(3368), - [anon_sym_true] = ACTIONS(3366), - [anon_sym_false] = ACTIONS(3366), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_crate] = ACTIONS(3366), - [sym_metavariable] = ACTIONS(3368), - [sym__raw_string_literal_start] = ACTIONS(3368), - [sym_float_literal] = ACTIONS(3368), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1054)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2594), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1055)] = { + [sym_function_modifiers] = STATE(3810), + [sym_removed_trait_bound] = STATE(2063), + [sym_extern_modifier] = STATE(2435), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3749), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2063), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2063), + [sym_tuple_type] = STATE(2063), + [sym_unit_type] = STATE(2063), + [sym_generic_type] = STATE(2045), + [sym_generic_type_with_turbofish] = STATE(3741), + [sym_bounded_type] = STATE(2063), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2063), + [sym_pointer_type] = STATE(2063), + [sym_never_type] = STATE(2063), + [sym_abstract_type] = STATE(2063), + [sym_dynamic_type] = STATE(2063), + [sym_macro_invocation] = STATE(2063), + [sym_scoped_identifier] = STATE(3212), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(1055), + [sym_block_comment] = STATE(1055), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_u8] = ACTIONS(1623), + [anon_sym_i8] = ACTIONS(1623), + [anon_sym_u16] = ACTIONS(1623), + [anon_sym_i16] = ACTIONS(1623), + [anon_sym_u32] = ACTIONS(1623), + [anon_sym_i32] = ACTIONS(1623), + [anon_sym_u64] = ACTIONS(1623), + [anon_sym_i64] = ACTIONS(1623), + [anon_sym_u128] = ACTIONS(1623), + [anon_sym_i128] = ACTIONS(1623), + [anon_sym_isize] = ACTIONS(1623), + [anon_sym_usize] = ACTIONS(1623), + [anon_sym_f32] = ACTIONS(1623), + [anon_sym_f64] = ACTIONS(1623), + [anon_sym_bool] = ACTIONS(1623), + [anon_sym_str] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1629), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_async] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_fn] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_gen] = ACTIONS(1637), + [anon_sym_impl] = ACTIONS(1163), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_unsafe] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1167), + [anon_sym_dyn] = ACTIONS(1171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + }, + [STATE(1056)] = { + [sym_attribute_item] = STATE(1057), + [sym_line_comment] = STATE(1056), + [sym_block_comment] = STATE(1056), + [aux_sym_enum_variant_list_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_RBRACK] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_u8] = ACTIONS(3376), + [anon_sym_i8] = ACTIONS(3376), + [anon_sym_u16] = ACTIONS(3376), + [anon_sym_i16] = ACTIONS(3376), + [anon_sym_u32] = ACTIONS(3376), + [anon_sym_i32] = ACTIONS(3376), + [anon_sym_u64] = ACTIONS(3376), + [anon_sym_i64] = ACTIONS(3376), + [anon_sym_u128] = ACTIONS(3376), + [anon_sym_i128] = ACTIONS(3376), + [anon_sym_isize] = ACTIONS(3376), + [anon_sym_usize] = ACTIONS(3376), + [anon_sym_f32] = ACTIONS(3376), + [anon_sym_f64] = ACTIONS(3376), + [anon_sym_bool] = ACTIONS(3376), + [anon_sym_str] = ACTIONS(3376), + [anon_sym_char] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(757), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_COMMA] = ACTIONS(757), + [anon_sym_COLON_COLON] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(783), + [anon_sym_SQUOTE] = ACTIONS(3376), + [anon_sym_async] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_gen] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_loop] = ACTIONS(3376), + [anon_sym_match] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_unsafe] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_yield] = ACTIONS(3376), + [anon_sym_move] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [sym_integer_literal] = ACTIONS(757), + [aux_sym_string_literal_token1] = ACTIONS(757), + [sym_char_literal] = ACTIONS(757), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3376), + [sym_super] = ACTIONS(3376), + [sym_crate] = ACTIONS(3376), + [sym_metavariable] = ACTIONS(757), + [sym__raw_string_literal_start] = ACTIONS(757), + [sym_float_literal] = ACTIONS(757), + }, + [STATE(1057)] = { + [sym_line_comment] = STATE(1057), + [sym_block_comment] = STATE(1057), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_RBRACK] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_u8] = ACTIONS(3378), + [anon_sym_i8] = ACTIONS(3378), + [anon_sym_u16] = ACTIONS(3378), + [anon_sym_i16] = ACTIONS(3378), + [anon_sym_u32] = ACTIONS(3378), + [anon_sym_i32] = ACTIONS(3378), + [anon_sym_u64] = ACTIONS(3378), + [anon_sym_i64] = ACTIONS(3378), + [anon_sym_u128] = ACTIONS(3378), + [anon_sym_i128] = ACTIONS(3378), + [anon_sym_isize] = ACTIONS(3378), + [anon_sym_usize] = ACTIONS(3378), + [anon_sym_f32] = ACTIONS(3378), + [anon_sym_f64] = ACTIONS(3378), + [anon_sym_bool] = ACTIONS(3378), + [anon_sym_str] = ACTIONS(3378), + [anon_sym_char] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(3380), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3380), + [anon_sym_POUND] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_gen] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_loop] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_move] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [sym_integer_literal] = ACTIONS(3380), + [aux_sym_string_literal_token1] = ACTIONS(3380), + [sym_char_literal] = ACTIONS(3380), + [anon_sym_true] = ACTIONS(3378), + [anon_sym_false] = ACTIONS(3378), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3378), + [sym_super] = ACTIONS(3378), + [sym_crate] = ACTIONS(3378), + [sym_metavariable] = ACTIONS(3380), + [sym__raw_string_literal_start] = ACTIONS(3380), + [sym_float_literal] = ACTIONS(3380), + }, + [STATE(1058)] = { + [sym_line_comment] = STATE(1058), + [sym_block_comment] = STATE(1058), + [sym_identifier] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_RBRACK] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2226), + [anon_sym_u8] = ACTIONS(2228), + [anon_sym_i8] = ACTIONS(2228), + [anon_sym_u16] = ACTIONS(2228), + [anon_sym_i16] = ACTIONS(2228), + [anon_sym_u32] = ACTIONS(2228), + [anon_sym_i32] = ACTIONS(2228), + [anon_sym_u64] = ACTIONS(2228), + [anon_sym_i64] = ACTIONS(2228), + [anon_sym_u128] = ACTIONS(2228), + [anon_sym_i128] = ACTIONS(2228), + [anon_sym_isize] = ACTIONS(2228), + [anon_sym_usize] = ACTIONS(2228), + [anon_sym_f32] = ACTIONS(2228), + [anon_sym_f64] = ACTIONS(2228), + [anon_sym_bool] = ACTIONS(2228), + [anon_sym_str] = ACTIONS(2228), + [anon_sym_char] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_COLON_COLON] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_async] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_gen] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_union] = ACTIONS(2228), + [anon_sym_unsafe] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_yield] = ACTIONS(2228), + [anon_sym_move] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [sym_integer_literal] = ACTIONS(2226), + [aux_sym_string_literal_token1] = ACTIONS(2226), + [sym_char_literal] = ACTIONS(2226), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2228), + [sym_super] = ACTIONS(2228), + [sym_crate] = ACTIONS(2228), + [sym_metavariable] = ACTIONS(2226), + [sym__raw_string_literal_start] = ACTIONS(2226), + [sym_float_literal] = ACTIONS(2226), + }, + [STATE(1059)] = { + [sym_line_comment] = STATE(1059), + [sym_block_comment] = STATE(1059), + [sym_identifier] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_u8] = ACTIONS(3382), + [anon_sym_i8] = ACTIONS(3382), + [anon_sym_u16] = ACTIONS(3382), + [anon_sym_i16] = ACTIONS(3382), + [anon_sym_u32] = ACTIONS(3382), + [anon_sym_i32] = ACTIONS(3382), + [anon_sym_u64] = ACTIONS(3382), + [anon_sym_i64] = ACTIONS(3382), + [anon_sym_u128] = ACTIONS(3382), + [anon_sym_i128] = ACTIONS(3382), + [anon_sym_isize] = ACTIONS(3382), + [anon_sym_usize] = ACTIONS(3382), + [anon_sym_f32] = ACTIONS(3382), + [anon_sym_f64] = ACTIONS(3382), + [anon_sym_bool] = ACTIONS(3382), + [anon_sym_str] = ACTIONS(3382), + [anon_sym_char] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_PIPE] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym__] = ACTIONS(3382), + [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3384), + [anon_sym_DASH_GT] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_async] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_gen] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_loop] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_yield] = ACTIONS(3382), + [anon_sym_move] = ACTIONS(3382), + [anon_sym_try] = ACTIONS(3382), + [sym_integer_literal] = ACTIONS(3384), + [aux_sym_string_literal_token1] = ACTIONS(3384), + [sym_char_literal] = ACTIONS(3384), + [anon_sym_true] = ACTIONS(3382), + [anon_sym_false] = ACTIONS(3382), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3382), + [sym_super] = ACTIONS(3382), + [sym_crate] = ACTIONS(3382), + [sym_metavariable] = ACTIONS(3384), + [sym__raw_string_literal_start] = ACTIONS(3384), + [sym_float_literal] = ACTIONS(3384), + }, + [STATE(1060)] = { + [sym_line_comment] = STATE(1060), + [sym_block_comment] = STATE(1060), + [sym_identifier] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym__] = ACTIONS(1603), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_DASH_GT] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_async] = ACTIONS(1603), + [anon_sym_break] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1603), + [anon_sym_continue] = ACTIONS(1603), + [anon_sym_default] = ACTIONS(1603), + [anon_sym_for] = ACTIONS(1603), + [anon_sym_gen] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1603), + [anon_sym_loop] = ACTIONS(1603), + [anon_sym_match] = ACTIONS(1603), + [anon_sym_return] = ACTIONS(1603), + [anon_sym_static] = ACTIONS(1603), + [anon_sym_union] = ACTIONS(1603), + [anon_sym_unsafe] = ACTIONS(1603), + [anon_sym_while] = ACTIONS(1603), + [anon_sym_yield] = ACTIONS(1603), + [anon_sym_move] = ACTIONS(1603), + [anon_sym_try] = ACTIONS(1603), + [sym_integer_literal] = ACTIONS(1605), + [aux_sym_string_literal_token1] = ACTIONS(1605), + [sym_char_literal] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1603), + [anon_sym_false] = ACTIONS(1603), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1603), + [sym_super] = ACTIONS(1603), + [sym_crate] = ACTIONS(1603), + [sym_metavariable] = ACTIONS(1605), + [sym__raw_string_literal_start] = ACTIONS(1605), + [sym_float_literal] = ACTIONS(1605), }, }; @@ -114869,10 +115673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(1087), 18, + ACTIONS(1195), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -114891,7 +115695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3370), 42, + ACTIONS(3386), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114939,10 +115743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1055), 2, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 18, + ACTIONS(2226), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -114961,7 +115765,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2614), 40, + ACTIONS(2228), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115007,10 +115811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1056), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 20, + ACTIONS(3390), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115031,7 +115835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3372), 36, + ACTIONS(3388), 36, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115075,50 +115879,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1127), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1177), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1187), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(3376), 1, + ACTIONS(3392), 1, sym_identifier, - ACTIONS(3386), 1, + ACTIONS(3402), 1, sym_metavariable, - STATE(2136), 1, + STATE(2146), 1, sym_scoped_identifier, - STATE(2208), 1, + STATE(2218), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1179), 2, anon_sym_true, anon_sym_false, - STATE(1057), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1175), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3380), 3, + ACTIONS(3396), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3384), 3, + ACTIONS(3400), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2102), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3378), 7, + ACTIONS(3394), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115126,7 +115930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3382), 20, + ACTIONS(3398), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115154,50 +115958,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1127), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1177), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1187), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(3388), 1, + ACTIONS(3404), 1, sym_identifier, - ACTIONS(3398), 1, + ACTIONS(3414), 1, sym_metavariable, - STATE(2116), 1, + STATE(2154), 1, sym_scoped_identifier, - STATE(2163), 1, + STATE(2224), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1179), 2, anon_sym_true, anon_sym_false, - STATE(1058), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1175), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3392), 3, + ACTIONS(3408), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3396), 3, + ACTIONS(3412), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2102), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3390), 7, + ACTIONS(3406), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115205,7 +116009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3394), 20, + ACTIONS(3410), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115233,50 +116037,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1127), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1177), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1187), 1, sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(3400), 1, + ACTIONS(3416), 1, sym_identifier, - ACTIONS(3410), 1, + ACTIONS(3426), 1, sym_metavariable, - STATE(2109), 1, + STATE(2135), 1, sym_scoped_identifier, - STATE(2177), 1, + STATE(2215), 1, sym__literal_pattern, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1261), 2, + ACTIONS(1179), 2, anon_sym_true, anon_sym_false, - STATE(1059), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, + ACTIONS(1175), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3404), 3, + ACTIONS(3420), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3408), 3, + ACTIONS(3424), 3, sym_self, sym_super, sym_crate, - STATE(2096), 4, + STATE(2102), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3402), 7, + ACTIONS(3418), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -115284,7 +116088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3406), 20, + ACTIONS(3422), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115305,29 +116109,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [519] = 12, + [519] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3434), 1, anon_sym_BANG, - ACTIONS(3418), 1, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3422), 1, - anon_sym_move, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1060), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1132), 1, + sym_type_arguments, + STATE(1138), 1, + sym_parameters, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3432), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115338,17 +116140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(3428), 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, @@ -115361,38 +116165,37 @@ 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, - [598] = 11, + [596] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(3432), 1, + anon_sym_LPAREN, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1125), 1, + ACTIONS(3444), 1, + anon_sym_BANG, + STATE(1132), 1, sym_type_arguments, - STATE(1131), 1, + STATE(1138), 1, sym_parameters, - STATE(1061), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 17, + ACTIONS(3442), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115410,7 +116213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 27, + ACTIONS(3440), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115438,27 +116241,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [675] = 11, + [673] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3432), 1, - anon_sym_COLON_COLON, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3440), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3450), 1, anon_sym_BANG, - STATE(1125), 1, - sym_type_arguments, - STATE(1131), 1, - sym_parameters, - STATE(1062), 2, + ACTIONS(3452), 1, + anon_sym_COLON_COLON, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3456), 1, + anon_sym_move, + STATE(1513), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 17, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115469,19 +116274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 27, + ACTIONS(3446), 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, @@ -115494,14 +116297,15 @@ 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, [752] = 11, @@ -115509,22 +116313,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3434), 1, anon_sym_BANG, - ACTIONS(3432), 1, + ACTIONS(3436), 1, anon_sym_COLON_COLON, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_LT2, - STATE(1125), 1, + STATE(1132), 1, sym_type_arguments, - STATE(1131), 1, + STATE(1138), 1, sym_parameters, - STATE(1063), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 17, + ACTIONS(3460), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115542,7 +116346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3442), 27, + ACTIONS(3458), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115570,21 +116374,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [829] = 7, + [829] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1071), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1441), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1443), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [893] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3450), 1, + ACTIONS(3466), 1, anon_sym_POUND, - STATE(1412), 2, + STATE(1419), 2, sym_attribute_item, sym_inner_attribute_item, - STATE(1064), 3, + STATE(1072), 3, sym_line_comment, sym_block_comment, aux_sym_match_arm_repeat1, - ACTIONS(3448), 14, + ACTIONS(3464), 14, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -115599,7 +116462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3446), 31, + ACTIONS(3462), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115631,15 +116494,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [897] = 5, + [961] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 9, + ACTIONS(1051), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115649,7 +116512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1425), 40, + ACTIONS(1049), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115690,15 +116553,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [961] = 5, + [1025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 9, + ACTIONS(1055), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115708,7 +116571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1041), 40, + ACTIONS(1053), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115749,15 +116612,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1025] = 5, + [1089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 9, + ACTIONS(1549), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115767,7 +116630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1437), 40, + ACTIONS(1551), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115808,15 +116671,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1089] = 5, + [1153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 9, + ACTIONS(1449), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115826,7 +116689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1479), 40, + ACTIONS(1451), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115867,15 +116730,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1153] = 5, + [1217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 9, + ACTIONS(1493), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115885,7 +116748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1421), 40, + ACTIONS(1495), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115926,15 +116789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1217] = 5, + [1281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 9, + ACTIONS(1433), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115944,7 +116807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1471), 40, + ACTIONS(1435), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115985,15 +116848,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1281] = 5, + [1345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1071), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 9, + ACTIONS(1437), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116003,7 +116866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1433), 40, + ACTIONS(1439), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116044,25 +116907,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1345] = 10, + [1409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + STATE(1080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1445), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1447), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1473] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(3457), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - STATE(1125), 1, + STATE(1132), 1, sym_type_arguments, - STATE(1131), 1, + STATE(1138), 1, sym_parameters, - STATE(1072), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3471), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116080,7 +117002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3453), 27, + ACTIONS(3469), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -116108,25 +117030,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1419] = 5, + [1547] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1133), 1, + sym_type_arguments, + STATE(1139), 1, + sym_parameters, + STATE(1082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3477), 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(3475), 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, + [1618] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 9, + ACTIONS(2278), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1429), 40, + ACTIONS(2280), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116150,7 +117134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -116167,25 +117150,66 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1483] = 5, + [1681] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3372), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, + anon_sym_STAR, + ACTIONS(3489), 1, + anon_sym_AMP, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3495), 1, + anon_sym_for, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2587), 1, + sym_where_predicate, + STATE(2842), 1, + sym_scoped_type_identifier, + STATE(3085), 1, + sym_generic_type, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3631), 1, + sym_bracketed_type, + STATE(3778), 1, + sym_generic_type_with_turbofish, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 9, + ACTIONS(3481), 3, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1037), 40, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3493), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(3226), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3487), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116203,38 +117227,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1547] = 5, + [1782] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(3505), 1, + anon_sym_BANG, + ACTIONS(3507), 1, + anon_sym_COLON_COLON, + STATE(1085), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3503), 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(3501), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [1849] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(2934), 9, + ACTIONS(2046), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116244,7 +117305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2936), 39, + ACTIONS(2048), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116284,66 +117345,147 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1610] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [1912] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, + ACTIONS(3430), 1, anon_sym_LPAREN, - ACTIONS(3465), 1, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1133), 1, + sym_type_arguments, + STATE(1139), 1, + sym_parameters, + STATE(1087), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 17, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3469), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3471), 1, + 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), 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, + [1983] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3517), 1, + anon_sym_BANG, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2400), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1076), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3461), 3, + ACTIONS(3515), 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(3513), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2050] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1886), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 17, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116361,66 +117503,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1711] = 24, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2113] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(3302), 1, + ACTIONS(3372), 1, anon_sym_SQUOTE, - ACTIONS(3459), 1, + ACTIONS(3479), 1, sym_identifier, - ACTIONS(3463), 1, + ACTIONS(3483), 1, anon_sym_LPAREN, - ACTIONS(3465), 1, + ACTIONS(3485), 1, anon_sym_STAR, - ACTIONS(3469), 1, + ACTIONS(3489), 1, anon_sym_AMP, - ACTIONS(3471), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3475), 1, + ACTIONS(3495), 1, anon_sym_for, - ACTIONS(3479), 1, + ACTIONS(3499), 1, sym_metavariable, - STATE(2577), 1, + STATE(2587), 1, sym_where_predicate, - STATE(2833), 1, + STATE(2842), 1, sym_scoped_type_identifier, - STATE(3139), 1, + STATE(3085), 1, sym_generic_type, - STATE(3588), 1, + STATE(3507), 1, sym_scoped_identifier, - STATE(3594), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(3738), 1, + STATE(3778), 1, sym_generic_type_with_turbofish, - STATE(1077), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 3, + ACTIONS(3493), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3477), 3, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - ACTIONS(3481), 3, + ACTIONS(3521), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - STATE(3405), 6, + STATE(3226), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3467), 17, + ACTIONS(3487), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116438,19 +117602,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1812] = 7, + [2214] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_BANG, - ACTIONS(3489), 1, - anon_sym_COLON_COLON, - STATE(1078), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1133), 1, + sym_type_arguments, + STATE(1139), 1, + sym_parameters, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3525), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116468,9 +117636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 29, + ACTIONS(3523), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -116497,80 +117664,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1879] = 7, + [2285] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3491), 1, - anon_sym_POUND, - STATE(1115), 1, - sym_attribute_item, - STATE(1079), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(759), 11, + ACTIONS(3430), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3360), 34, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1946] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(1080), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1133), 1, + sym_type_arguments, + STATE(1139), 1, + sym_parameters, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 17, + ACTIONS(3529), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116588,9 +117698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3494), 29, + ACTIONS(3527), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -116617,16 +117726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2013] = 5, + [2356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2620), 9, + ACTIONS(2728), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116636,7 +117744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2622), 39, + ACTIONS(2730), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116676,75 +117784,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2076] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_BANG, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - STATE(1082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3504), 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(3502), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [2143] = 5, + [2419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 9, + ACTIONS(2990), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116754,7 +117802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(2992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116794,19 +117842,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2206] = 7, + [2482] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3531), 1, + anon_sym_POUND, + STATE(1122), 1, + sym_attribute_item, + STATE(1095), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat1, + ACTIONS(757), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(3516), 1, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1084), 2, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3376), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2549] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3538), 1, + anon_sym_BANG, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3512), 17, + ACTIONS(3536), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116824,7 +117932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3510), 29, + ACTIONS(3534), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116854,85 +117962,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2273] = 9, + [2616] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3372), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, - STATE(1132), 1, - sym_parameters, - STATE(1085), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3520), 17, - anon_sym_PLUS, + ACTIONS(3485), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3489), 1, 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(3518), 27, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3495), 1, + anon_sym_for, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2410), 1, + sym_where_predicate, + STATE(2842), 1, + sym_scoped_type_identifier, + STATE(3085), 1, + sym_generic_type, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3631), 1, + sym_bracketed_type, + STATE(3778), 1, + sym_generic_type_with_turbofish, + STATE(1097), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3493), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3542), 3, 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, - [2344] = 9, + anon_sym_EQ, + STATE(3226), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3487), 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, + [2717] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, - STATE(1132), 1, - sym_parameters, - STATE(1086), 2, + ACTIONS(3548), 1, + anon_sym_BANG, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, + ACTIONS(3546), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116950,8 +118069,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 27, + ACTIONS(3544), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -116978,42 +118098,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2415] = 9, + anon_sym_LT2, + [2784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, - STATE(1132), 1, - sym_parameters, - STATE(1087), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, + ACTIONS(3548), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 27, + ACTIONS(3550), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -117030,168 +118143,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2486] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [2846] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3530), 3, - anon_sym_SEMI, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(3552), 1, anon_sym_LBRACE, - anon_sym_EQ, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [2587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2412), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, + ACTIONS(3554), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2414), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2650] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, - STATE(1132), 1, - sym_parameters, - STATE(1090), 2, + STATE(1525), 1, + sym_field_initializer_list, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117202,19 +118183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 27, + ACTIONS(1483), 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, @@ -117227,83 +118206,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_SQUOTE, anon_sym_as, anon_sym_else, - [2721] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2736), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2738), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2784] = 5, + [2916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3505), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117320,7 +118242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 31, + ACTIONS(3507), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117352,22 +118274,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2846] = 5, + [2978] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + ACTIONS(3452), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, + anon_sym_BANG, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3448), 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, @@ -117377,13 +118309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 31, + anon_sym_as, + ACTIONS(3446), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -117404,20 +118334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2908] = 5, + [3046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3517), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117434,7 +118359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 31, + ACTIONS(3519), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117466,17 +118391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2970] = 6, + [3108] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3540), 1, + ACTIONS(3564), 1, anon_sym_RBRACE, - STATE(1095), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 15, + ACTIONS(3562), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -117492,7 +118417,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3536), 31, + ACTIONS(3560), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117524,17 +118449,74 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3034] = 6, + [3172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3546), 1, + STATE(1105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3568), 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(3566), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3234] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3574), 1, anon_sym_RBRACE, - STATE(1096), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3544), 15, + ACTIONS(3572), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -117550,7 +118532,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3542), 31, + ACTIONS(3570), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117582,72 +118564,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3098] = 5, + [3298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3506), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3508), 31, - 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, - [3160] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 13, + ACTIONS(3578), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117661,7 +118586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3548), 34, + ACTIONS(3576), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117696,15 +118621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3222] = 5, + [3360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 13, + ACTIONS(3582), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117718,7 +118643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3552), 34, + ACTIONS(3580), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117753,29 +118678,22 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3284] = 9, + [3422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1100), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3538), 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, @@ -117785,12 +118703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(3540), 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, @@ -117812,134 +118731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [3354] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, - anon_sym_BANG, - STATE(1101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3414), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3412), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [3422] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 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(3564), 34, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, + anon_sym_as, + anon_sym_else, [3484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 13, + ACTIONS(3586), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117953,7 +118757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3568), 34, + ACTIONS(3584), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117995,22 +118799,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, + ACTIONS(3452), 1, anon_sym_COLON_COLON, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(3560), 1, + ACTIONS(3556), 1, anon_sym_BANG, - ACTIONS(3572), 1, + ACTIONS(3588), 1, anon_sym_move, - STATE(412), 1, + STATE(406), 1, sym_block, - STATE(3532), 1, + STATE(3702), 1, sym_label, - STATE(1104), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118026,7 +118830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(3446), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -118056,12 +118860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(1105), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3548), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118078,7 +118882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 29, + ACTIONS(3550), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118113,10 +118917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 7, + ACTIONS(3594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118124,7 +118928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3576), 39, + ACTIONS(3592), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118169,12 +118973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, + ACTIONS(3596), 1, anon_sym_LBRACE, - STATE(1107), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3517), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118191,7 +118995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 29, + ACTIONS(3519), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118226,10 +119030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, + ACTIONS(3600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118245,7 +119049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3582), 31, + ACTIONS(3598), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118282,10 +119086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118301,7 +119105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 31, + ACTIONS(3602), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118338,12 +119142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, + ACTIONS(3606), 1, anon_sym_LBRACE, - STATE(1110), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3505), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118360,7 +119164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 29, + ACTIONS(3507), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118395,10 +119199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 15, + ACTIONS(3572), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -118414,7 +119218,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3536), 31, + ACTIONS(3570), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118451,10 +119255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, + ACTIONS(1599), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118470,7 +119274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1587), 31, + ACTIONS(1601), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118507,10 +119311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3544), 15, + ACTIONS(3562), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -118526,7 +119330,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3542), 31, + ACTIONS(3560), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118563,10 +119367,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2590), 7, + ACTIONS(2986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118574,7 +119378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2592), 39, + ACTIONS(2988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118619,10 +119423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 12, + ACTIONS(3380), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -118635,7 +119439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(3362), 34, + ACTIONS(3378), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118677,51 +119481,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1681), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1707), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1715), 1, sym__raw_string_literal_start, - ACTIONS(3380), 1, + ACTIONS(3408), 1, anon_sym_if, - ACTIONS(3592), 1, + ACTIONS(3608), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(3600), 1, + ACTIONS(3616), 1, sym_metavariable, - STATE(2686), 1, + STATE(2865), 1, sym_scoped_identifier, - STATE(2950), 1, + STATE(3163), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3627), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3644), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1709), 2, anon_sym_true, anon_sym_false, - ACTIONS(3378), 2, + ACTIONS(3406), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1116), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1705), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3598), 3, + ACTIONS(3614), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2417), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3594), 20, + ACTIONS(3610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118747,12 +119551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3618), 1, anon_sym_COLON_COLON, - STATE(1117), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118768,7 +119572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118804,12 +119608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - STATE(1118), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118825,7 +119629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118861,12 +119665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3622), 1, anon_sym_COLON_COLON, - STATE(1119), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118882,7 +119686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(3509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118918,10 +119722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(2512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118929,7 +119733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(2514), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118974,10 +119778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118985,7 +119789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 39, + ACTIONS(2570), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119032,51 +119836,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1681), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1707), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1715), 1, sym__raw_string_literal_start, - ACTIONS(3404), 1, + ACTIONS(3396), 1, anon_sym_if, - ACTIONS(3596), 1, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(3608), 1, + ACTIONS(3624), 1, sym_identifier, - ACTIONS(3614), 1, + ACTIONS(3630), 1, sym_metavariable, - STATE(2801), 1, + STATE(2778), 1, sym_scoped_identifier, - STATE(3086), 1, + STATE(3022), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3627), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3644), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1709), 2, anon_sym_true, anon_sym_false, - ACTIONS(3402), 2, + ACTIONS(3394), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1122), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1705), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3612), 3, + ACTIONS(3628), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2417), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3610), 20, + ACTIONS(3626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119102,10 +119906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119121,7 +119925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 31, + ACTIONS(3632), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119160,51 +119964,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1681), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1707), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1715), 1, sym__raw_string_literal_start, - ACTIONS(3392), 1, + ACTIONS(3420), 1, anon_sym_if, - ACTIONS(3596), 1, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(3620), 1, + ACTIONS(3636), 1, sym_identifier, - ACTIONS(3626), 1, + ACTIONS(3642), 1, sym_metavariable, - STATE(2811), 1, + STATE(2834), 1, sym_scoped_identifier, - STATE(3100), 1, + STATE(3117), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3627), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3644), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1709), 2, anon_sym_true, anon_sym_false, - ACTIONS(3390), 2, + ACTIONS(3418), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1124), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1705), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3624), 3, + ACTIONS(3640), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2417), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3622), 20, + ACTIONS(3638), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119230,10 +120034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119249,7 +120053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 31, + ACTIONS(3644), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119286,10 +120090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, + ACTIONS(3650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119305,7 +120109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3632), 31, + ACTIONS(3648), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119342,10 +120146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3388), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119361,7 +120165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 31, + ACTIONS(3390), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119398,12 +120202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3640), 1, + ACTIONS(3656), 1, anon_sym_DASH_GT, - STATE(1128), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(3654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119419,7 +120223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 30, + ACTIONS(3652), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119455,12 +120259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3622), 1, anon_sym_COLON_COLON, - STATE(1129), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119476,7 +120280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 30, + ACTIONS(3527), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119512,12 +120316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3622), 1, anon_sym_COLON_COLON, - STATE(1130), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119533,7 +120337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(3523), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119569,12 +120373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3646), 1, + ACTIONS(3662), 1, anon_sym_DASH_GT, - STATE(1131), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(3660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119590,7 +120394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 30, + ACTIONS(3658), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119626,12 +120430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3652), 1, + ACTIONS(3668), 1, anon_sym_DASH_GT, - STATE(1132), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119647,7 +120451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3648), 30, + ACTIONS(3664), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119683,10 +120487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119694,7 +120498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(2578), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119739,14 +120543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3654), 1, + ACTIONS(3670), 1, anon_sym_else, - STATE(1539), 1, + STATE(1493), 1, sym_else_clause, - STATE(1134), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119762,7 +120566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1393), 29, + ACTIONS(1427), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119797,10 +120601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 7, + ACTIONS(2592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119808,7 +120612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2314), 39, + ACTIONS(2594), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119853,10 +120657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, + ACTIONS(2596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119864,7 +120668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2322), 39, + ACTIONS(2598), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119909,10 +120713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 7, + ACTIONS(2612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119920,7 +120724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2350), 39, + ACTIONS(2614), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119965,10 +120769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(2656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119976,7 +120780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2398), 39, + ACTIONS(2658), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120021,10 +120825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(2694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120032,7 +120836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 39, + ACTIONS(2696), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120077,10 +120881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2408), 7, + ACTIONS(2708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120088,7 +120892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2410), 39, + ACTIONS(2710), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120133,10 +120937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 7, + ACTIONS(2724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120144,7 +120948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2450), 39, + ACTIONS(2726), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120189,10 +120993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2456), 7, + ACTIONS(2808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120200,7 +121004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2458), 39, + ACTIONS(2810), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120245,10 +121049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2460), 7, + ACTIONS(2860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120256,7 +121060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2462), 39, + ACTIONS(2862), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120301,10 +121105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2464), 7, + ACTIONS(2864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120312,7 +121116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2466), 39, + ACTIONS(2866), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120357,10 +121161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2472), 7, + ACTIONS(2868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120368,7 +121172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2474), 39, + ACTIONS(2870), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120413,10 +121217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 7, + ACTIONS(2880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120424,7 +121228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(2882), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120469,10 +121273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120480,7 +121284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 39, + ACTIONS(2888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120525,10 +121329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, + ACTIONS(2890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120536,7 +121340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2528), 39, + ACTIONS(2892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120581,10 +121385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2548), 7, + ACTIONS(2492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120592,7 +121396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2550), 39, + ACTIONS(2494), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120637,10 +121441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 7, + ACTIONS(2496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120648,7 +121452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2554), 39, + ACTIONS(2498), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120693,10 +121497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3546), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120714,7 +121518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 29, + ACTIONS(3544), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120749,10 +121553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120768,7 +121572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 31, + ACTIONS(3672), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120805,12 +121609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3664), 1, + ACTIONS(3680), 1, anon_sym_DASH_GT, - STATE(1153), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120826,7 +121630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 30, + ACTIONS(3676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120862,12 +121666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3670), 1, + ACTIONS(3686), 1, anon_sym_DASH_GT, - STATE(1154), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(3684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120883,7 +121687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 30, + ACTIONS(3682), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120919,12 +121723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3676), 1, + ACTIONS(3692), 1, anon_sym_DASH_GT, - STATE(1155), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120940,7 +121744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 30, + ACTIONS(3688), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120976,10 +121780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2640), 7, + ACTIONS(2234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120987,7 +121791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2642), 39, + ACTIONS(2236), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121032,10 +121836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2644), 7, + ACTIONS(2238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121043,7 +121847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2646), 39, + ACTIONS(2240), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121088,10 +121892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2648), 7, + ACTIONS(2242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121099,7 +121903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2650), 39, + ACTIONS(2244), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121144,10 +121948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2652), 7, + ACTIONS(2246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121155,7 +121959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2654), 39, + ACTIONS(2248), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121200,10 +122004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2660), 7, + ACTIONS(2250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121211,7 +122015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2662), 39, + ACTIONS(2252), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121256,10 +122060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 7, + ACTIONS(2254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121267,7 +122071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2690), 39, + ACTIONS(2256), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121312,10 +122116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 7, + ACTIONS(2258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121323,7 +122127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2694), 39, + ACTIONS(2260), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121368,10 +122172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 7, + ACTIONS(2262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121379,7 +122183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2698), 39, + ACTIONS(2264), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121424,10 +122228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121435,7 +122239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2702), 39, + ACTIONS(2268), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121480,10 +122284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121491,7 +122295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2706), 39, + ACTIONS(2272), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121536,10 +122340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 7, + ACTIONS(2282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121547,7 +122351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2742), 39, + ACTIONS(2284), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121592,10 +122396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 7, + ACTIONS(2286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121603,7 +122407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2746), 39, + ACTIONS(2288), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121648,10 +122452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121659,7 +122463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2750), 39, + ACTIONS(2292), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121704,10 +122508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121715,7 +122519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2754), 39, + ACTIONS(2296), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121760,10 +122564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 7, + ACTIONS(2298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121771,7 +122575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2758), 39, + ACTIONS(2300), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121816,10 +122620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2760), 7, + ACTIONS(2302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121827,7 +122631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2762), 39, + ACTIONS(2304), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121872,10 +122676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 7, + ACTIONS(2306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121883,7 +122687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2766), 39, + ACTIONS(2308), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121928,10 +122732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 7, + ACTIONS(2310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121939,7 +122743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2770), 39, + ACTIONS(2312), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121984,10 +122788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121995,7 +122799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2774), 39, + ACTIONS(2316), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122040,10 +122844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2776), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122051,7 +122855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2778), 39, + ACTIONS(2320), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122096,10 +122900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122107,7 +122911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2782), 39, + ACTIONS(2328), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122152,10 +122956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2784), 7, + ACTIONS(2346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122163,7 +122967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2786), 39, + ACTIONS(2348), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122208,10 +123012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 7, + ACTIONS(2350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122219,7 +123023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2790), 39, + ACTIONS(2352), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122264,10 +123068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2792), 7, + ACTIONS(2354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122275,7 +123079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2794), 39, + ACTIONS(2356), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122320,10 +123124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2796), 7, + ACTIONS(2358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122331,7 +123135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2798), 39, + ACTIONS(2360), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122376,10 +123180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 7, + ACTIONS(2362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122387,7 +123191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2802), 39, + ACTIONS(2364), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122432,10 +123236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 7, + ACTIONS(2366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122443,7 +123247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2818), 39, + ACTIONS(2368), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122488,10 +123292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122499,7 +123303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2458), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122544,10 +123348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 7, + ACTIONS(2460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122555,7 +123359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2462), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122600,10 +123404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(2464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122611,7 +123415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(2466), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122656,10 +123460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2994), 7, + ACTIONS(2468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122667,7 +123471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2996), 39, + ACTIONS(2470), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122712,10 +123516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122723,7 +123527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2474), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122768,10 +123572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122779,7 +123583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2478), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122824,10 +123628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 7, + ACTIONS(2488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122835,7 +123639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3044), 39, + ACTIONS(2490), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122880,10 +123684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 7, + ACTIONS(2572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122891,7 +123695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2274), 39, + ACTIONS(2574), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122936,10 +123740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122947,7 +123751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(2582), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122992,10 +123796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 15, + ACTIONS(3696), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123011,7 +123815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 31, + ACTIONS(3694), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123048,10 +123852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 15, + ACTIONS(3700), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123067,7 +123871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3682), 31, + ACTIONS(3698), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123104,12 +123908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3606), 1, + ACTIONS(3622), 1, anon_sym_COLON_COLON, - STATE(1194), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123125,7 +123929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 30, + ACTIONS(3475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123161,12 +123965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, + ACTIONS(3706), 1, anon_sym_DASH_GT, - STATE(1195), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, + ACTIONS(3704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123182,7 +123986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3686), 30, + ACTIONS(3702), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123218,10 +124022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(2600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123229,7 +124033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 39, + ACTIONS(2602), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123274,10 +124078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123285,7 +124089,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 39, + ACTIONS(1840), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9426] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2632), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2634), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9487] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1206), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2636), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2638), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9548] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1207), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2640), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2642), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123325,15 +124297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9426] = 5, + [9609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123341,7 +124313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2646), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123381,15 +124353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9487] = 5, + [9670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 7, + ACTIONS(2648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123397,7 +124369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2250), 39, + ACTIONS(2650), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123437,15 +124409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9548] = 5, + [9731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 7, + ACTIONS(2652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123453,7 +124425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2254), 39, + ACTIONS(2654), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123493,15 +124465,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9609] = 5, + [9792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2256), 7, + ACTIONS(2660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123509,7 +124481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2258), 39, + ACTIONS(2662), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123549,15 +124521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9670] = 5, + [9853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2264), 7, + ACTIONS(2664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123565,7 +124537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2266), 39, + ACTIONS(2666), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123605,15 +124577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9731] = 5, + [9914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2268), 7, + ACTIONS(2674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123621,7 +124593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2270), 39, + ACTIONS(2676), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123661,15 +124633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9792] = 5, + [9975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2276), 7, + ACTIONS(2678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123677,7 +124649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2278), 39, + ACTIONS(2680), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123717,15 +124689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9853] = 5, + [10036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2280), 7, + ACTIONS(2682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123733,7 +124705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2282), 39, + ACTIONS(2684), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123773,15 +124745,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9914] = 5, + [10097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2288), 7, + ACTIONS(2686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123789,7 +124761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2290), 39, + ACTIONS(2688), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123829,15 +124801,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9975] = 5, + [10158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(2690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123845,7 +124817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2374), 39, + ACTIONS(2692), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123885,15 +124857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10036] = 5, + [10219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123901,7 +124873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 39, + ACTIONS(2700), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123941,15 +124913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10097] = 5, + [10280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123957,7 +124929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2390), 39, + ACTIONS(2706), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123997,15 +124969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10158] = 5, + [10341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124013,7 +124985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 39, + ACTIONS(2722), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124053,15 +125025,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10219] = 5, + [10402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(2732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124069,7 +125041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(2734), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124109,15 +125081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10280] = 5, + [10463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 7, + ACTIONS(2736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124125,7 +125097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2588), 39, + ACTIONS(2738), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124165,15 +125137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10341] = 5, + [10524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2604), 7, + ACTIONS(2740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124181,7 +125153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2606), 39, + ACTIONS(2742), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124221,15 +125193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10402] = 5, + [10585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2632), 7, + ACTIONS(2748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124237,7 +125209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2634), 39, + ACTIONS(2750), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124277,15 +125249,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10463] = 5, + [10646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 7, + ACTIONS(2752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124293,7 +125265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2826), 39, + ACTIONS(2754), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124333,15 +125305,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10524] = 5, + [10707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124349,7 +125321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2758), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124389,15 +125361,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10585] = 5, + [10768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124405,7 +125377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2762), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124445,15 +125417,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10646] = 5, + [10829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(2764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124461,7 +125433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1836), 39, + ACTIONS(2766), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124501,15 +125473,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10707] = 5, + [10890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124517,7 +125489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2770), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124557,15 +125529,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10768] = 5, + [10951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124573,7 +125545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2774), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124613,15 +125585,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10829] = 5, + [11012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124629,7 +125601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2778), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124669,15 +125641,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10890] = 5, + [11073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(2780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124685,7 +125657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(2782), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124725,15 +125697,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10951] = 5, + [11134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(2784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124741,7 +125713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2064), 39, + ACTIONS(2786), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124781,15 +125753,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11012] = 5, + [11195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(2788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124797,7 +125769,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 39, + ACTIONS(2790), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11256] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2792), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2794), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11317] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1236), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2796), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2798), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124837,15 +125921,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11073] = 5, + [11378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(2800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124853,7 +125937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 39, + ACTIONS(2802), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124893,15 +125977,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11134] = 5, + [11439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(2804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124909,7 +125993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 39, + ACTIONS(2806), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124949,15 +126033,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11195] = 5, + [11500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124965,7 +126049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 39, + ACTIONS(2814), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125005,15 +126089,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11256] = 5, + [11561] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(2816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125021,7 +126105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 39, + ACTIONS(2818), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125061,15 +126145,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11317] = 5, + [11622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(2820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125077,7 +126161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 39, + ACTIONS(2822), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125117,15 +126201,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11378] = 5, + [11683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(2824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125133,7 +126217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 39, + ACTIONS(2826), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125173,15 +126257,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11439] = 5, + [11744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125189,7 +126273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 39, + ACTIONS(2830), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125229,15 +126313,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11500] = 5, + [11805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(2832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125245,7 +126329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 39, + ACTIONS(2834), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125285,15 +126369,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11561] = 5, + [11866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(2836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125301,7 +126385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 39, + ACTIONS(2838), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125341,15 +126425,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11622] = 5, + [11927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(2840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125357,7 +126441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 39, + ACTIONS(2842), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125397,15 +126481,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11683] = 5, + [11988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(2844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125413,7 +126497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 39, + ACTIONS(2846), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125453,15 +126537,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11744] = 5, + [12049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(2848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125469,7 +126553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 39, + ACTIONS(2850), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125509,15 +126593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11805] = 5, + [12110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125525,7 +126609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 39, + ACTIONS(2854), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125565,15 +126649,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11866] = 5, + [12171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(2856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125581,7 +126665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 39, + ACTIONS(2858), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125621,15 +126705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11927] = 5, + [12232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(2872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125637,7 +126721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 39, + ACTIONS(2874), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125677,15 +126761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11988] = 5, + [12293] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(2876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125693,7 +126777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 39, + ACTIONS(2878), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125733,71 +126817,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12049] = 5, + [12354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(3710), 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(3708), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2160), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12110] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(3714), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3712), 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, + [12476] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125805,7 +126945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(2896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125845,15 +126985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12171] = 5, + [12537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(2898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125861,7 +127001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(2900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125901,15 +127041,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12232] = 5, + [12598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 7, + ACTIONS(2902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125917,7 +127057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2246), 39, + ACTIONS(2904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125957,15 +127097,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12293] = 5, + [12659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 7, + ACTIONS(2906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125973,7 +127113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2262), 39, + ACTIONS(2908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126013,127 +127153,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12354] = 5, + [12720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3692), 31, + ACTIONS(2910), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12415] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1247), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3698), 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(3696), 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, - [12476] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2912), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2284), 7, + ACTIONS(2914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126141,7 +127225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2286), 39, + ACTIONS(2916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126181,15 +127265,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12537] = 5, + [12842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 7, + ACTIONS(2918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126197,7 +127281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2294), 39, + ACTIONS(2920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126237,15 +127321,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12598] = 5, + [12903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 7, + ACTIONS(2922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126253,7 +127337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2298), 39, + ACTIONS(2924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126293,15 +127377,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12659] = 5, + [12964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126309,7 +127393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2302), 39, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126349,15 +127433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12720] = 5, + [13025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 7, + ACTIONS(2930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126365,7 +127449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2306), 39, + ACTIONS(2932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126405,15 +127489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12781] = 5, + [13086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 7, + ACTIONS(2934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126421,7 +127505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2310), 39, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126461,15 +127545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12842] = 5, + [13147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 7, + ACTIONS(2938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126477,7 +127561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2318), 39, + ACTIONS(2940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126517,15 +127601,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12903] = 5, + [13208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 7, + ACTIONS(2942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126533,7 +127617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2326), 39, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126573,15 +127657,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12964] = 5, + [13269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126589,7 +127673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2330), 39, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126629,15 +127713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13025] = 5, + [13330] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 7, + ACTIONS(2950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126645,7 +127729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2334), 39, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126685,15 +127769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13086] = 5, + [13391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126701,7 +127785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2338), 39, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126741,15 +127825,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13147] = 5, + [13452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126757,7 +127841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2342), 39, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126797,15 +127881,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13208] = 5, + [13513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 7, + ACTIONS(2962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126813,7 +127897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2346), 39, + ACTIONS(2964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126853,15 +127937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13269] = 5, + [13574] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 7, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126869,7 +127953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2354), 39, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126909,15 +127993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13330] = 5, + [13635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 7, + ACTIONS(2970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126925,7 +128009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2358), 39, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126965,15 +128049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13391] = 5, + [13696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 7, + ACTIONS(2982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126981,7 +128065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2362), 39, + ACTIONS(2984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127021,15 +128105,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13452] = 5, + [13757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(2994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127037,7 +128121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2366), 39, + ACTIONS(2996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127077,15 +128161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13513] = 5, + [13818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(2998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127093,7 +128177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2370), 39, + ACTIONS(3000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127133,15 +128217,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13574] = 5, + [13879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(3002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127149,7 +128233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2378), 39, + ACTIONS(3004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127189,15 +128273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13635] = 5, + [13940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(3006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127205,7 +128289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 39, + ACTIONS(3008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127245,15 +128329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13696] = 5, + [14001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, + ACTIONS(3010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127261,7 +128345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2406), 39, + ACTIONS(3012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127301,15 +128385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13757] = 5, + [14062] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2416), 7, + ACTIONS(3014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127317,7 +128401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2418), 39, + ACTIONS(3016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127357,15 +128441,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13818] = 5, + [14123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 7, + ACTIONS(3018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127373,7 +128457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2422), 39, + ACTIONS(3020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127413,15 +128497,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13879] = 5, + [14184] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + ACTIONS(3716), 1, + anon_sym_LBRACE, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 7, + ACTIONS(3538), 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(3540), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [14247] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1284), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127429,7 +128570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2426), 39, + ACTIONS(3032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127469,15 +128610,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13940] = 5, + [14308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(3046), 7, + ACTIONS(3034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127485,7 +128626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3048), 39, + ACTIONS(3036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127525,15 +128666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14001] = 5, + [14369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(3038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127541,7 +128682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2434), 39, + ACTIONS(3040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127581,15 +128722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14062] = 5, + [14430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(3042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127597,7 +128738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2438), 39, + ACTIONS(3044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127637,15 +128778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14123] = 5, + [14491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 7, + ACTIONS(3046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127653,7 +128794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2442), 39, + ACTIONS(3048), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127693,72 +128834,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14184] = 6, + [14552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, - anon_sym_LBRACE, - STATE(1276), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3500), 29, + ACTIONS(3050), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [14247] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3052), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(3054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127766,7 +128906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2454), 39, + ACTIONS(3056), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127806,15 +128946,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14308] = 5, + [14674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2468), 7, + ACTIONS(3058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127822,7 +128962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2470), 39, + ACTIONS(3060), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127862,15 +129002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14369] = 5, + [14735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127878,7 +129018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 39, + ACTIONS(2610), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127918,15 +129058,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14430] = 5, + [14796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127934,7 +129074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(1904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127974,15 +129114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14491] = 5, + [14857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(2500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127990,7 +129130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 39, + ACTIONS(2502), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128030,15 +129170,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14552] = 5, + [14918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128046,7 +129186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2490), 39, + ACTIONS(1876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128086,15 +129226,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14613] = 5, + [14979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128102,7 +129242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2494), 39, + ACTIONS(2276), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128142,15 +129282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14674] = 5, + [15040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128158,7 +129298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2498), 39, + ACTIONS(2324), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128198,15 +129338,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14735] = 5, + [15101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128214,7 +129354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2502), 39, + ACTIONS(2332), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128254,15 +129394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14796] = 5, + [15162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(2334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128270,7 +129410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2510), 39, + ACTIONS(2336), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128310,15 +129450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14857] = 5, + [15223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(2338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128326,7 +129466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2520), 39, + ACTIONS(2340), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128366,15 +129506,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14918] = 5, + [15284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(2342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128382,7 +129522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 39, + ACTIONS(2344), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128422,15 +129562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14979] = 5, + [15345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2534), 7, + ACTIONS(2480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128438,7 +129578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2536), 39, + ACTIONS(2482), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128478,15 +129618,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15040] = 5, + [15406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 7, + ACTIONS(2484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128494,7 +129634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2540), 39, + ACTIONS(2486), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128534,15 +129674,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15101] = 5, + [15467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2556), 7, + ACTIONS(2504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128550,7 +129690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2558), 39, + ACTIONS(2506), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128590,15 +129730,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15162] = 5, + [15528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2562), 7, + ACTIONS(2508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128606,7 +129746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2564), 39, + ACTIONS(2510), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128646,127 +129786,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15223] = 5, + [15589] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2566), 7, + ACTIONS(3720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3718), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2568), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15284] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(3724), 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(3722), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2576), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15345] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2578), 7, + ACTIONS(2588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128774,7 +129914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2580), 39, + ACTIONS(2590), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128814,15 +129954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15406] = 5, + [15772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2582), 7, + ACTIONS(2604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128830,7 +129970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2584), 39, + ACTIONS(2606), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128870,15 +130010,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15467] = 5, + [15833] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 7, + ACTIONS(2616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128886,7 +130026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2610), 39, + ACTIONS(2618), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128926,15 +130066,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15528] = 5, + [15894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128942,7 +130082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2618), 39, + ACTIONS(2622), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128982,127 +130122,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15589] = 5, + [15955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - 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(3702), 31, + ACTIONS(2624), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15650] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2626), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - 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(3706), 31, + ACTIONS(2628), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15711] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2630), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(2668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129110,7 +130250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2626), 39, + ACTIONS(2670), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129150,15 +130290,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15772] = 5, + [16138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2628), 7, + ACTIONS(2712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129166,7 +130306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2630), 39, + ACTIONS(2714), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129206,15 +130346,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15833] = 5, + [16199] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 7, + ACTIONS(2716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129222,7 +130362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2638), 39, + ACTIONS(2718), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129262,15 +130402,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15894] = 5, + [16260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2656), 7, + ACTIONS(2744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129278,7 +130418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2658), 39, + ACTIONS(2746), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129318,15 +130458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15955] = 5, + [16321] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2664), 7, + ACTIONS(2974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129334,7 +130474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2666), 39, + ACTIONS(2976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129374,15 +130514,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16016] = 5, + [16382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 7, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129390,7 +130530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2670), 39, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129430,15 +130570,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16077] = 5, + [16443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 7, + ACTIONS(3022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129446,7 +130586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2674), 39, + ACTIONS(3024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129486,15 +130626,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16138] = 5, + [16504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129502,7 +130642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2678), 39, + ACTIONS(1844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129542,15 +130682,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16199] = 5, + [16565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129558,7 +130698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2682), 39, + ACTIONS(1848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129598,15 +130738,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16260] = 5, + [16626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129614,7 +130754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2686), 39, + ACTIONS(1852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129654,15 +130794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16321] = 5, + [16687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2708), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129670,7 +130810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2710), 39, + ACTIONS(1856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129710,15 +130850,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16382] = 5, + [16748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2712), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129726,7 +130866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2714), 39, + ACTIONS(1860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129766,15 +130906,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16443] = 5, + [16809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2716), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129782,7 +130922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2718), 39, + ACTIONS(1864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129822,15 +130962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16504] = 5, + [16870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129838,7 +130978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2722), 39, + ACTIONS(1868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129878,15 +131018,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16565] = 5, + [16931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129894,7 +131034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2726), 39, + ACTIONS(1872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129934,15 +131074,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16626] = 5, + [16992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129950,7 +131090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2730), 39, + ACTIONS(1880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129990,15 +131130,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16687] = 5, + [17053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130006,7 +131146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2734), 39, + ACTIONS(1884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130046,15 +131186,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16748] = 5, + [17114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130062,7 +131202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2806), 39, + ACTIONS(1892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130102,15 +131242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16809] = 5, + [17175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130118,7 +131258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2810), 39, + ACTIONS(1896), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130158,15 +131298,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16870] = 5, + [17236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130174,7 +131314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2814), 39, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130214,15 +131354,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16931] = 5, + [17297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2820), 7, + ACTIONS(3062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130230,7 +131370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2822), 39, + ACTIONS(3064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130270,15 +131410,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16992] = 5, + [17358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130286,7 +131426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(1908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130326,15 +131466,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17053] = 5, + [17419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130342,7 +131482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(1912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130382,15 +131522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17114] = 5, + [17480] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130398,7 +131538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(1916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130438,15 +131578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17175] = 5, + [17541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2942), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130454,7 +131594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2944), 39, + ACTIONS(1920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130494,15 +131634,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17236] = 5, + [17602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2946), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130510,7 +131650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(1924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130550,15 +131690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17297] = 5, + [17663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2950), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130566,7 +131706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2952), 39, + ACTIONS(1928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130606,15 +131746,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17358] = 5, + [17724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2954), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130622,7 +131762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2956), 39, + ACTIONS(1932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130662,15 +131802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17419] = 5, + [17785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2958), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130678,7 +131818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(1936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130718,15 +131858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17480] = 5, + [17846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130734,7 +131874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2964), 39, + ACTIONS(1940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130774,15 +131914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17541] = 5, + [17907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130790,7 +131930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2968), 39, + ACTIONS(1944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130830,15 +131970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17602] = 5, + [17968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130846,7 +131986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(1948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130886,15 +132026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17663] = 5, + [18029] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130902,7 +132042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(1952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130942,15 +132082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17724] = 5, + [18090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130958,7 +132098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(1956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130998,15 +132138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17785] = 5, + [18151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131014,7 +132154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(1960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131054,15 +132194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17846] = 5, + [18212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131070,7 +132210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(1964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131110,15 +132250,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17907] = 5, + [18273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131126,7 +132266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(1968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131166,15 +132306,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17968] = 5, + [18334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131182,7 +132322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(1972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131222,15 +132362,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18029] = 5, + [18395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131238,7 +132378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(1976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131278,15 +132418,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18090] = 5, + [18456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(3018), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131294,7 +132434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3020), 39, + ACTIONS(1980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131334,15 +132474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18151] = 5, + [18517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131350,7 +132490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(1984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131390,15 +132530,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18212] = 5, + [18578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131406,7 +132546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(1988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131446,15 +132586,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18273] = 5, + [18639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131462,7 +132602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(1992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131502,15 +132642,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18334] = 5, + [18700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3038), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131518,7 +132658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3040), 39, + ACTIONS(1996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131558,15 +132698,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18395] = 5, + [18761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131574,7 +132714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 39, + ACTIONS(2000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131614,15 +132754,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18456] = 5, + [18822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2428), 7, + ACTIONS(3728), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3726), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18883] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1360), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3732), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3730), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18944] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131630,7 +132882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2430), 39, + ACTIONS(2004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131670,15 +132922,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18517] = 5, + [19005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131686,7 +132938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 39, + ACTIONS(2008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131726,15 +132978,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18578] = 5, + [19066] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131742,7 +132994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 39, + ACTIONS(2012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131782,15 +133034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18639] = 5, + [19127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131798,7 +133050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(2016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131838,15 +133090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18700] = 5, + [19188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131854,7 +133106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(2020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131894,15 +133146,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18761] = 5, + [19249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131910,7 +133162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(2024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131950,127 +133202,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18822] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1352), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3710), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18883] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1353), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3714), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18944] = 5, + [19310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132078,7 +133218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(2028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132118,15 +133258,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19005] = 5, + [19371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132134,7 +133274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132174,15 +133314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19066] = 5, + [19432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132190,7 +133330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(2036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132230,15 +133370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19127] = 5, + [19493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132246,7 +133386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(2040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132286,15 +133426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19188] = 5, + [19554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132302,7 +133442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(2044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132342,15 +133482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19249] = 5, + [19615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132358,7 +133498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(2052), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132398,15 +133538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19310] = 5, + [19676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(2054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132414,7 +133554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(2056), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132454,15 +133594,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19371] = 5, + [19737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132470,7 +133610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(2060), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132510,15 +133650,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19432] = 5, + [19798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132526,7 +133666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132566,15 +133706,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19493] = 5, + [19859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132582,7 +133722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2068), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132622,15 +133762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19554] = 5, + [19920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2070), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132638,7 +133778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2072), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132678,15 +133818,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19615] = 5, + [19981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132694,7 +133834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2076), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132734,15 +133874,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19676] = 5, + [20042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132750,7 +133890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2080), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132790,15 +133930,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19737] = 5, + [20103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132806,7 +133946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2084), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132846,15 +133986,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19798] = 5, + [20164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(1910), 7, + ACTIONS(2086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132862,7 +134002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1912), 39, + ACTIONS(2088), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132902,15 +134042,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19859] = 5, + [20225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(2090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132918,7 +134058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(2092), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132958,15 +134098,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19920] = 5, + [20286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132974,7 +134114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2096), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133014,15 +134154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19981] = 5, + [20347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(2098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133030,7 +134170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(2100), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133070,15 +134210,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20042] = 5, + [20408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(2102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133086,7 +134226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(2104), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133126,15 +134266,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20103] = 5, + [20469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133142,7 +134282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(2108), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133182,15 +134322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20164] = 5, + [20530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(2110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133198,7 +134338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(2112), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133238,15 +134378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20225] = 5, + [20591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133254,7 +134394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(2116), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133294,15 +134434,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20286] = 5, + [20652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133310,7 +134450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(2120), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133350,15 +134490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20347] = 5, + [20713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133366,7 +134506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2124), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133406,15 +134546,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20408] = 5, + [20774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133422,7 +134562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(2128), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133462,15 +134602,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20469] = 5, + [20835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133478,7 +134618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(2132), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133518,15 +134658,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20530] = 5, + [20896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133534,7 +134674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(2136), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133574,15 +134714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20591] = 5, + [20957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133590,7 +134730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(2140), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133630,15 +134770,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20652] = 5, + [21018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(2142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133646,7 +134786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 39, + ACTIONS(2144), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133686,15 +134826,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20713] = 5, + [21079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(2146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133702,7 +134842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(2148), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133742,15 +134882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20774] = 5, + [21140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(2150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133758,7 +134898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(2152), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133798,15 +134938,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20835] = 5, + [21201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(2154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133814,7 +134954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(2156), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133854,15 +134994,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20896] = 5, + [21262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133870,7 +135010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 39, + ACTIONS(2160), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133910,15 +135050,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20957] = 5, + [21323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(2162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133926,7 +135066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(2164), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133966,15 +135106,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21018] = 5, + [21384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133982,7 +135122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(2168), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134022,15 +135162,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21079] = 5, + [21445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134038,7 +135178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(2172), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134078,15 +135218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21140] = 5, + [21506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134094,7 +135234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(2176), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134134,15 +135274,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21201] = 5, + [21567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(2178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134150,7 +135290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(2180), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134190,15 +135330,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21262] = 5, + [21628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(2182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134206,7 +135346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(2184), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134246,15 +135386,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21323] = 5, + [21689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(2186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134262,7 +135402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 39, + ACTIONS(2188), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134302,15 +135442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21384] = 5, + [21750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(2190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134318,7 +135458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(2192), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134358,15 +135498,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21445] = 5, + [21811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(2194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134374,7 +135514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 39, + ACTIONS(2196), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134414,15 +135554,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21506] = 5, + [21872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(2198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134430,7 +135570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 39, + ACTIONS(2200), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134470,15 +135610,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21567] = 5, + [21933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134486,7 +135626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(2204), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134526,15 +135666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21628] = 5, + [21994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2034), 7, + ACTIONS(2206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134542,7 +135682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 39, + ACTIONS(2208), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134582,15 +135722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21689] = 5, + [22055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2038), 7, + ACTIONS(2210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134598,7 +135738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 39, + ACTIONS(2212), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134638,15 +135778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21750] = 5, + [22116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2042), 7, + ACTIONS(2214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134654,7 +135794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 39, + ACTIONS(2216), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134694,15 +135834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21811] = 5, + [22177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 7, + ACTIONS(2218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134710,7 +135850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 39, + ACTIONS(2220), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134750,15 +135890,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21872] = 5, + [22238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2050), 7, + ACTIONS(2222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134766,7 +135906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 39, + ACTIONS(2224), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134806,23 +135946,86 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21933] = 5, + [22299] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1492), 1, + sym_label, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(3736), 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(3734), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [22364] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1417), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2226), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2056), 39, + ACTIONS(2228), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134843,42 +136046,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, anon_sym_use, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21994] = 5, + [22425] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2600), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2060), 39, + ACTIONS(2602), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134896,37 +136102,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22486] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1419), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3740), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3738), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [22055] = 5, + [22547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(2226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134934,7 +136188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 39, + ACTIONS(2228), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134974,23 +136228,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22116] = 5, + [22608] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3744), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2072), 39, + ACTIONS(3742), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135008,45 +136270,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [22177] = 5, + [22669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2226), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2076), 39, + ACTIONS(2228), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135064,37 +136326,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [22238] = 5, + [22730] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + ACTIONS(3748), 1, + anon_sym_LPAREN, + STATE(1533), 1, + sym_arguments, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, + ACTIONS(3750), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3746), 29, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22795] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, + anon_sym_LBRACE, + ACTIONS(3450), 1, + anon_sym_BANG, + ACTIONS(3452), 1, + anon_sym_COLON_COLON, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_move, + STATE(493), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(1424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3448), 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(3446), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [22870] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3754), 1, + anon_sym_COLON_COLON, + STATE(1425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1481), 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(1483), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22933] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135102,7 +136534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2080), 39, + ACTIONS(3028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135142,19 +136574,290 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22299] = 7, + [22994] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1427), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3758), 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(3756), 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, + [23054] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3762), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3760), 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, + [23114] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1429), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1443), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1441), 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, + [23174] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1430), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3477), 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(3475), 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, + [23234] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3766), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3764), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1428), 1, - sym_label, - STATE(1409), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135170,7 +136873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 29, + ACTIONS(3768), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135198,357 +136901,128 @@ 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, - [22364] = 5, + [23354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3774), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(2614), 34, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22425] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1411), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2114), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2116), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22486] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1412), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3724), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3772), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + 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_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3722), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22547] = 5, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3778), 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_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3726), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22608] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1414), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(3776), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2614), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22669] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1415), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2612), 15, - sym__raw_string_literal_start, - sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + 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_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2614), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22730] = 7, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23474] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3732), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_arguments, - STATE(1416), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135564,8 +137038,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 29, + ACTIONS(3780), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -135594,29 +137069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22795] = 12, + [23534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3736), 1, - anon_sym_move, - STATE(484), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(1417), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135632,9 +137093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 24, + ACTIONS(3784), 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, @@ -135656,18 +137121,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, - [22870] = 6, + anon_sym_else, + [23594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3738), 1, - anon_sym_COLON_COLON, - STATE(1418), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135683,7 +137148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3788), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135714,85 +137179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22933] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1419), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2444), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2446), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22994] = 12, + [23654] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - ACTIONS(3744), 1, - anon_sym_move, - STATE(1779), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(1420), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135808,10 +137203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(3792), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135831,16 +137230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [23068] = 5, + anon_sym_else, + [23714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(1053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135856,7 +137258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3746), 30, + ACTIONS(1055), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135887,15 +137289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23128] = 5, + [23774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135911,7 +137313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3750), 30, + ACTIONS(3796), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135942,15 +137344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23188] = 5, + [23834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(3802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135966,7 +137368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3754), 30, + ACTIONS(3800), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135997,15 +137399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23248] = 5, + [23894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(907), 15, + ACTIONS(3806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136021,7 +137423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(909), 30, + ACTIONS(3804), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136052,15 +137454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23308] = 5, + [23954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136076,7 +137478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3758), 30, + ACTIONS(3808), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136107,15 +137509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23368] = 5, + [24014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136131,7 +137533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3762), 30, + ACTIONS(3812), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136162,15 +137564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23428] = 5, + [24074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136186,7 +137588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3766), 30, + ACTIONS(3527), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136217,15 +137619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23488] = 5, + [24134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136241,7 +137643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 30, + ACTIONS(1461), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136272,15 +137674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23548] = 5, + [24194] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136296,7 +137698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 30, + ACTIONS(1453), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136327,18 +137729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23608] = 6, + [24254] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1430), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136354,12 +137753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 28, + ACTIONS(3816), 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, @@ -136381,17 +137781,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, - [23670] = 5, + [24314] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136407,7 +137808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 30, + ACTIONS(3523), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136438,15 +137839,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23730] = 5, + [24374] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(3372), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_LPAREN, + ACTIONS(3485), 1, + anon_sym_STAR, + ACTIONS(3489), 1, + anon_sym_AMP, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3495), 1, + anon_sym_for, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2587), 1, + sym_where_predicate, + STATE(2842), 1, + sym_scoped_type_identifier, + STATE(3085), 1, + sym_generic_type, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3631), 1, + sym_bracketed_type, + STATE(3778), 1, + sym_generic_type_with_turbofish, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3493), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(3226), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3487), 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, + [24470] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136462,7 +137936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 30, + ACTIONS(983), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136493,15 +137967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23790] = 5, + [24530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136517,7 +137991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 30, + ACTIONS(3820), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136548,21 +138022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23850] = 8, + [24590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1434), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 14, + ACTIONS(1475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136576,14 +138044,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 28, + ACTIONS(1473), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136606,15 +138077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23916] = 5, + [24650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(1495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136630,7 +138101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 30, + ACTIONS(1493), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136661,15 +138132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23976] = 5, + [24710] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 15, + ACTIONS(3826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136685,7 +138156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1515), 30, + ACTIONS(3824), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136716,15 +138187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24036] = 5, + [24770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(1503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136740,7 +138211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 30, + ACTIONS(1501), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136771,21 +138242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24096] = 8, + [24830] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1438), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 14, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136799,14 +138264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3806), 28, + ACTIONS(1465), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136829,15 +138297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24162] = 5, + [24890] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + ACTIONS(3450), 1, + anon_sym_BANG, + ACTIONS(3452), 1, + anon_sym_COLON_COLON, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136853,13 +138325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 30, + ACTIONS(3446), 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, @@ -136881,18 +138352,20 @@ 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, - [24222] = 5, + [24954] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + ACTIONS(3830), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136908,13 +138381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 30, + ACTIONS(3828), 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, @@ -136936,18 +138408,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, - [24282] = 5, + [25016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1425), 15, + ACTIONS(1531), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136963,7 +138434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1423), 30, + ACTIONS(1529), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136994,15 +138465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24342] = 5, + [25076] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137018,7 +138489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 30, + ACTIONS(1483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137049,15 +138520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24402] = 5, + [25136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3836), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137073,7 +138544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 30, + ACTIONS(3834), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137104,15 +138575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24462] = 5, + [25196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137128,7 +138599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 30, + ACTIONS(3838), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137159,15 +138630,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24522] = 5, + [25256] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3846), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137181,17 +138660,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(3830), 30, + ACTIONS(3842), 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, @@ -137212,17 +138688,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, - [24582] = 5, + [25324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1547), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137238,7 +138713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 30, + ACTIONS(1545), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137269,21 +138744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24642] = 8, + [25384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - STATE(1447), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 14, + ACTIONS(1551), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137297,14 +138766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3834), 28, + ACTIONS(1549), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -137327,15 +138799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24708] = 5, + [25444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137351,7 +138823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 30, + ACTIONS(1437), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137382,15 +138854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24768] = 5, + [25504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137406,7 +138878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 30, + ACTIONS(1489), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137437,15 +138909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24828] = 5, + [25564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137461,7 +138933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3842), 30, + ACTIONS(3854), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137492,15 +138964,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24888] = 5, + [25624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 15, + ACTIONS(3860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137516,7 +138988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1535), 30, + ACTIONS(3858), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137547,15 +139019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24948] = 5, + [25684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137571,7 +139043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 30, + ACTIONS(3862), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137602,15 +139074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25008] = 5, + [25744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137626,7 +139098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 30, + ACTIONS(3866), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137657,15 +139129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25068] = 5, + [25804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137681,7 +139153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 30, + ACTIONS(3870), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137712,15 +139184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25128] = 5, + [25864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(945), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137736,7 +139208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3846), 30, + ACTIONS(947), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137767,15 +139239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25188] = 5, + [25924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137791,7 +139263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(1445), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137822,15 +139294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25248] = 5, + [25984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137846,7 +139318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 30, + ACTIONS(1509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137877,15 +139349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25308] = 5, + [26044] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(3876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137901,7 +139373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 30, + ACTIONS(3874), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137932,15 +139404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25368] = 5, + [26104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137956,7 +139428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 30, + ACTIONS(3878), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137987,15 +139459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25428] = 5, + [26164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138011,7 +139483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 30, + ACTIONS(3882), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138042,15 +139514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25488] = 5, + [26224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138066,7 +139538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 30, + ACTIONS(3886), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138097,15 +139569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25548] = 5, + [26284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138121,7 +139593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 30, + ACTIONS(1483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138152,15 +139624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25608] = 5, + [26344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138176,7 +139648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 30, + ACTIONS(3890), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138207,15 +139679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25668] = 5, + [26404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138231,7 +139703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(3894), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138262,15 +139734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25728] = 5, + [26464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138286,7 +139758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 30, + ACTIONS(3898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138317,15 +139789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25788] = 5, + [26524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138341,7 +139813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 30, + ACTIONS(3902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138372,15 +139844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25848] = 5, + [26584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(1041), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138396,7 +139868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1043), 30, + ACTIONS(3906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138427,15 +139899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25908] = 5, + [26644] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138451,7 +139923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1435), 30, + ACTIONS(1051), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138482,15 +139954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25968] = 5, + [26704] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138506,7 +139978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3878), 30, + ACTIONS(3910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138537,15 +140009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26028] = 5, + [26764] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + ACTIONS(3914), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138561,13 +140036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 30, + ACTIONS(3828), 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, @@ -138589,18 +140063,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, - [26088] = 5, + [26826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138616,7 +140089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, + ACTIONS(3828), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138647,15 +140120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26148] = 5, + [26886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138671,7 +140144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3916), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138702,15 +140175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26208] = 5, + [26946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(3922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138726,7 +140199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 30, + ACTIONS(3920), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138757,15 +140230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26268] = 5, + [27006] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(1527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138781,7 +140254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 30, + ACTIONS(1525), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138812,15 +140285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26328] = 5, + [27066] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138836,7 +140309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, + ACTIONS(913), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138867,15 +140340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26388] = 5, + [27126] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138891,7 +140364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 30, + ACTIONS(3924), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138922,15 +140395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26448] = 5, + [27186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3930), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138946,7 +140419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, + ACTIONS(3928), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138977,15 +140450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26508] = 5, + [27246] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139001,7 +140474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3932), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139032,15 +140505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26568] = 5, + [27306] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(3938), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139054,17 +140533,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(1507), 30, + ACTIONS(3936), 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, @@ -139087,15 +140563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26628] = 5, + [27372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139111,7 +140587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139142,15 +140618,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26688] = 5, + [27432] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3942), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139164,17 +140646,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(3522), 30, + ACTIONS(3940), 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, @@ -139197,88 +140676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26748] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(3302), 1, - anon_sym_SQUOTE, - ACTIONS(3459), 1, - sym_identifier, - ACTIONS(3463), 1, - anon_sym_LPAREN, - ACTIONS(3465), 1, - anon_sym_STAR, - ACTIONS(3469), 1, - anon_sym_AMP, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3475), 1, - anon_sym_for, - ACTIONS(3479), 1, - sym_metavariable, - STATE(2577), 1, - sym_where_predicate, - STATE(2833), 1, - sym_scoped_type_identifier, - STATE(3139), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(1482), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3473), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - STATE(3405), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3467), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [26844] = 5, + [27498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139294,7 +140700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 30, + ACTIONS(3944), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139325,15 +140731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26904] = 5, + [27558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, + ACTIONS(1555), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139349,7 +140755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(921), 30, + ACTIONS(1553), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139380,15 +140786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26964] = 5, + [27618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139404,7 +140810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(3948), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139435,15 +140841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27024] = 5, + [27678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139459,7 +140865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, + ACTIONS(1449), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139490,15 +140896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27084] = 5, + [27738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139514,7 +140920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3952), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139545,18 +140951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27144] = 6, + [27798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1488), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139572,12 +140975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 28, + ACTIONS(3956), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139599,17 +141003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27206] = 5, + [27858] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139625,7 +141030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3960), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139656,15 +141061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27266] = 5, + [27918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139680,7 +141085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3964), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139711,15 +141116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27326] = 5, + [27978] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139735,7 +141140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 30, + ACTIONS(3509), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139766,15 +141171,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27386] = 5, + [28038] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(3970), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139788,17 +141199,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(3912), 30, + ACTIONS(3968), 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, @@ -139821,15 +141229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27446] = 5, + [28104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(1471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139845,7 +141253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 30, + ACTIONS(1469), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139876,15 +141284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27506] = 5, + [28164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(1543), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139900,7 +141308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3916), 30, + ACTIONS(1541), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139931,23 +141339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27566] = 9, + [28224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1495), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139961,14 +141361,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(3920), 27, + ACTIONS(1485), 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, @@ -139989,16 +141392,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, - [27634] = 5, + [28284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140014,7 +141418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1465), 30, + ACTIONS(1513), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140045,15 +141449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27694] = 5, + [28344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140069,7 +141473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 30, + ACTIONS(1505), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140100,15 +141504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27754] = 5, + [28404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1421), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140124,7 +141528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1419), 30, + ACTIONS(1483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140155,15 +141559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27814] = 5, + [28464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 15, + ACTIONS(1535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140179,7 +141583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1473), 30, + ACTIONS(1533), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140210,15 +141614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27874] = 5, + [28524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140234,7 +141638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 30, + ACTIONS(3972), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140265,15 +141669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27934] = 5, + [28584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(3978), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140289,7 +141693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 30, + ACTIONS(3976), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140320,15 +141724,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27994] = 5, + [28644] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3980), 1, + anon_sym_BANG, + ACTIONS(3982), 1, + anon_sym_COLON_COLON, + ACTIONS(3984), 1, + anon_sym_move, + STATE(1799), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140344,14 +141762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 30, - anon_sym_SEMI, + ACTIONS(3446), 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, @@ -140371,19 +141785,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, - [28054] = 5, + [28718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140399,7 +141810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 30, + ACTIONS(1433), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140430,15 +141841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28114] = 5, + [28778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(1521), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140454,7 +141865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 30, + ACTIONS(1519), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140485,15 +141896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28174] = 5, + [28838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1505), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3948), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140509,7 +141920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3946), 30, + ACTIONS(1483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140540,15 +141951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28234] = 5, + [28898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140564,7 +141975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 30, + ACTIONS(977), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140595,15 +142006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28294] = 5, + [28958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140619,7 +142030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 30, + ACTIONS(3986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140650,19 +142061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28354] = 7, + [29018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - STATE(1508), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140678,12 +142085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 28, + ACTIONS(1483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -140705,17 +142113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28418] = 5, + [29078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140731,7 +142140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3990), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140762,15 +142171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28478] = 5, + [29138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140786,7 +142195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 30, + ACTIONS(3994), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140817,15 +142226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28538] = 5, + [29198] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140841,7 +142250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3998), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140872,15 +142281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28598] = 5, + [29258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140896,7 +142305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 30, + ACTIONS(4002), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140927,15 +142336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28658] = 5, + [29318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140951,7 +142360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(913), 30, + ACTIONS(4006), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140982,15 +142391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28718] = 5, + [29378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141006,7 +142415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 30, + ACTIONS(4010), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141037,15 +142446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28778] = 5, + [29438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141061,7 +142470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(4014), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141092,15 +142501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28838] = 5, + [29498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(3750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141116,7 +142525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 30, + ACTIONS(3746), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141147,15 +142556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28898] = 5, + [29558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141171,7 +142580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3974), 30, + ACTIONS(4018), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141202,15 +142611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28958] = 5, + [29618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141226,7 +142635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 30, + ACTIONS(4022), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141257,15 +142666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29018] = 5, + [29678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(4028), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141281,7 +142690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3982), 30, + ACTIONS(4026), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141312,15 +142721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29078] = 5, + [29738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141336,7 +142745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 30, + ACTIONS(4030), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141367,15 +142776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29138] = 5, + [29798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, + ACTIONS(4036), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141391,7 +142800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3990), 30, + ACTIONS(4034), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141422,15 +142831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29198] = 5, + [29858] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3996), 15, + ACTIONS(4040), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141446,7 +142855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3994), 30, + ACTIONS(4038), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141477,15 +142886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29258] = 5, + [29918] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(4042), 1, + anon_sym_COLON_COLON, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141501,13 +142914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3998), 30, + ACTIONS(1483), 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, @@ -141529,18 +142941,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, - [29318] = 5, + [29982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141556,7 +142967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 30, + ACTIONS(1483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141587,15 +142998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29378] = 5, + [30042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(1037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141611,7 +143022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4002), 30, + ACTIONS(1039), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141642,15 +143053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29438] = 5, + [30102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141666,7 +143077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 30, + ACTIONS(4044), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141697,15 +143108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29498] = 5, + [30162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141721,7 +143132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 30, + ACTIONS(4048), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141752,15 +143163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29558] = 5, + [30222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(4054), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141776,7 +143187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 30, + ACTIONS(4052), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141807,15 +143218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29618] = 5, + [30282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(4058), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141831,7 +143242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 30, + ACTIONS(4056), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141862,15 +143273,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29678] = 5, + [30342] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, + ACTIONS(4062), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141884,17 +143301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4022), 30, + ACTIONS(4060), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141917,19 +143331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29738] = 7, + [30408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, - anon_sym_BANG, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - STATE(1531), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4066), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141945,12 +143355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(4064), 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, @@ -141972,17 +143383,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29802] = 5, + [30468] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + ACTIONS(1157), 1, + anon_sym_fn, + ACTIONS(1167), 1, + anon_sym_extern, + ACTIONS(3258), 1, + anon_sym_for, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4072), 1, + anon_sym_default, + STATE(1616), 1, + sym_for_lifetimes, + STATE(2023), 1, + sym_scoped_type_identifier, + STATE(2037), 1, + sym_generic_type, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2435), 1, + sym_extern_modifier, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3631), 1, + sym_bracketed_type, + STATE(3778), 1, + sym_generic_type_with_turbofish, + STATE(3810), 1, + sym_function_modifiers, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1550), 2, + sym_line_comment, + sym_block_comment, + STATE(2075), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1151), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 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, + [30567] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3452), 1, + anon_sym_COLON_COLON, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141998,13 +143486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 30, + ACTIONS(3446), 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, @@ -142026,18 +143513,101 @@ 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, - [29862] = 5, + [30628] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + anon_sym_extern, + ACTIONS(3188), 1, + anon_sym_fn, + ACTIONS(4074), 1, + sym_identifier, + ACTIONS(4078), 1, + anon_sym_COLON_COLON, + ACTIONS(4080), 1, + anon_sym_default, + ACTIONS(4082), 1, + anon_sym_for, + ACTIONS(4088), 1, + sym_metavariable, + STATE(1091), 1, + sym_scoped_type_identifier, + STATE(1137), 1, + sym_generic_type, + STATE(1648), 1, + sym_for_lifetimes, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2435), 1, + sym_extern_modifier, + STATE(3649), 1, + sym_scoped_identifier, + STATE(3684), 1, + sym_generic_type_with_turbofish, + STATE(3696), 1, + sym_bracketed_type, + STATE(3770), 1, + sym_function_modifiers, + ACTIONS(4084), 2, + anon_sym_gen, + anon_sym_union, + STATE(1449), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1151), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(4086), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4076), 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, + [30727] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + ACTIONS(3450), 1, + anon_sym_BANG, + ACTIONS(3456), 1, + anon_sym_move, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + STATE(1513), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(915), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142053,14 +143623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(917), 30, - anon_sym_SEMI, + ACTIONS(3446), 24, 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, @@ -142080,74 +143646,167 @@ 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, - [29922] = 5, + [30796] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + ACTIONS(1167), 1, + anon_sym_extern, + ACTIONS(3236), 1, + anon_sym_fn, + ACTIONS(4092), 1, + sym_identifier, + ACTIONS(4096), 1, + anon_sym_COLON_COLON, + ACTIONS(4098), 1, + anon_sym_default, + ACTIONS(4100), 1, + anon_sym_for, + ACTIONS(4106), 1, + sym_metavariable, + STATE(1610), 1, + sym_scoped_type_identifier, + STATE(1632), 1, + sym_for_lifetimes, + STATE(1703), 1, + sym_generic_type, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2435), 1, + sym_extern_modifier, + STATE(3639), 1, + sym_function_modifiers, + STATE(3675), 1, + sym_scoped_identifier, + STATE(3694), 1, + sym_generic_type_with_turbofish, + STATE(3700), 1, + sym_bracketed_type, + ACTIONS(4102), 2, + anon_sym_gen, + anon_sym_union, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 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, + STATE(1742), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1151), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(4104), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4094), 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, + [30895] = 25, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4028), 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, - [29982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + ACTIONS(1167), 1, + anon_sym_extern, + ACTIONS(1635), 1, + anon_sym_fn, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4108), 1, + sym_identifier, + ACTIONS(4110), 1, + anon_sym_for, + STATE(1641), 1, + sym_for_lifetimes, + STATE(2037), 1, + sym_generic_type, + STATE(2247), 1, + sym_scoped_type_identifier, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2435), 1, + sym_extern_modifier, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3558), 1, + sym_function_modifiers, + STATE(3631), 1, + sym_bracketed_type, + STATE(3778), 1, + sym_generic_type_with_turbofish, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1555), 2, + sym_line_comment, + sym_block_comment, + STATE(2075), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1151), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 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, + [30994] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4112), 1, + anon_sym_COLON_COLON, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4034), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142163,13 +143822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4032), 30, + ACTIONS(1483), 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, @@ -142191,18 +143849,29 @@ 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, - [30042] = 5, + [31055] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + ACTIONS(3450), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3456), 1, + anon_sym_move, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + STATE(1513), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142218,14 +143887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 30, - anon_sym_SEMI, + ACTIONS(3446), 23, 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, @@ -142245,19 +143910,95 @@ 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, - [30102] = 5, + [31126] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3612), 1, + anon_sym_COLON_COLON, + ACTIONS(3624), 1, + sym_identifier, + ACTIONS(3630), 1, + sym_metavariable, + STATE(2778), 1, + sym_scoped_identifier, + STATE(3022), 1, + sym__literal_pattern, + STATE(3627), 1, + sym_bracketed_type, + STATE(3644), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3628), 3, + sym_self, + sym_super, + sym_crate, + STATE(2417), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3626), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [31212] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + anon_sym_BANG, + ACTIONS(4114), 1, + anon_sym_LPAREN, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 1, + anon_sym_LT2, + STATE(1698), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(3460), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142268,19 +144009,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(4036), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3458), 20, 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, @@ -142292,53 +144030,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30162] = 8, + [31282] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - STATE(1538), 2, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 14, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3846), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(4040), 28, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142359,18 +144097,28 @@ 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, - [30228] = 5, + [31356] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + ACTIONS(3434), 1, + anon_sym_BANG, + ACTIONS(4114), 1, + anon_sym_LPAREN, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + ACTIONS(4118), 1, + anon_sym_LT2, + STATE(1698), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(3432), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142381,19 +144129,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(1511), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3428), 20, 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, @@ -142405,205 +144150,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30288] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(1621), 1, - anon_sym_fn, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4044), 1, - sym_identifier, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4050), 1, - anon_sym_for, - STATE(1607), 1, - sym_for_lifetimes, - STATE(2015), 1, - sym_generic_type, - STATE(2235), 1, - sym_scoped_type_identifier, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3766), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30387] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1239), 1, - anon_sym_fn, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3254), 1, - anon_sym_for, - ACTIONS(3471), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4052), 1, - sym_identifier, - STATE(1634), 1, - sym_for_lifetimes, - STATE(2011), 1, - sym_scoped_type_identifier, - STATE(2015), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3774), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - STATE(2060), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30486] = 10, + [31426] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3422), 1, - anon_sym_move, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1542), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3846), 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(3412), 24, + ACTIONS(3842), 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, @@ -142622,51 +144215,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, - [30555] = 11, + anon_sym_COMMA, + anon_sym_else, + [31498] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3422), 1, - anon_sym_move, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1454), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(1543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4144), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 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(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(4146), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3972), 7, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142677,49 +144287,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [30626] = 6, + [31590] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(1544), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_DOT_DOT, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 28, + ACTIONS(4146), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 17, 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, @@ -142730,49 +144354,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_EQ_EQ, - 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, - [30687] = 6, + [31680] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - STATE(1545), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3846), 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(3412), 28, + ACTIONS(3842), 25, 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, @@ -142792,65 +144417,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_as, anon_sym_else, - [30748] = 25, + [31756] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3172), 1, - anon_sym_fn, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4062), 1, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - ACTIONS(4064), 1, - anon_sym_default, - ACTIONS(4066), 1, - anon_sym_for, - ACTIONS(4072), 1, + ACTIONS(3636), 1, + sym_identifier, + ACTIONS(3642), 1, sym_metavariable, - STATE(1090), 1, - sym_scoped_type_identifier, - STATE(1130), 1, - sym_generic_type, - STATE(1605), 1, - sym_for_lifetimes, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3612), 1, + STATE(2834), 1, sym_scoped_identifier, - STATE(3648), 1, - sym_generic_type_with_turbofish, - STATE(3660), 1, + STATE(3117), 1, + sym__literal_pattern, + STATE(3627), 1, sym_bracketed_type, - STATE(3733), 1, - sym_function_modifiers, - ACTIONS(4068), 2, - anon_sym_gen, - anon_sym_union, - STATE(1483), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1546), 2, + STATE(3644), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(4070), 3, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3640), 3, sym_self, sym_super, sym_crate, - ACTIONS(4060), 17, + STATE(2417), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3638), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142868,63 +144482,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30847] = 25, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [31842] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3214), 1, - anon_sym_fn, - ACTIONS(4074), 1, - sym_identifier, - ACTIONS(4078), 1, + ACTIONS(1127), 1, + anon_sym_DASH, + ACTIONS(1177), 1, + aux_sym_string_literal_token1, + ACTIONS(1187), 1, + sym__raw_string_literal_start, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4080), 1, - anon_sym_default, - ACTIONS(4082), 1, - anon_sym_for, - ACTIONS(4088), 1, + ACTIONS(3416), 1, + sym_identifier, + ACTIONS(3426), 1, sym_metavariable, - STATE(1603), 1, - sym_scoped_type_identifier, - STATE(1638), 1, - sym_for_lifetimes, - STATE(1669), 1, - sym_generic_type, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(3602), 1, - sym_function_modifiers, - STATE(3639), 1, + STATE(2135), 1, sym_scoped_identifier, - STATE(3658), 1, - sym_generic_type_with_turbofish, - STATE(3664), 1, + STATE(2215), 1, + sym__literal_pattern, + STATE(3731), 1, sym_bracketed_type, - ACTIONS(4084), 2, - anon_sym_gen, - anon_sym_union, - STATE(1547), 2, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1179), 2, + anon_sym_true, + anon_sym_false, + STATE(1567), 2, sym_line_comment, sym_block_comment, - STATE(1720), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(4086), 3, + ACTIONS(1175), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4076), 17, + STATE(2102), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3422), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142942,116 +144549,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30946] = 11, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [31928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1548), 2, + ACTIONS(4156), 1, + anon_sym_COLON_COLON, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4154), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 9, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31016] = 17, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4152), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31988] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, anon_sym_EQ, + ACTIONS(4144), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - STATE(1549), 2, + ACTIONS(4146), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 21, + ACTIONS(3924), 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(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143062,62 +144676,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31098] = 18, + [32080] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, - anon_sym_EQ, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4161), 1, + anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - STATE(1550), 2, + ACTIONS(4146), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 20, + ACTIONS(4159), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143128,121 +144743,110 @@ 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, - [31182] = 21, + [32170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + STATE(1571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4165), 10, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3794), 1, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(3796), 1, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4163), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32228] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4112), 1, + ACTIONS(3846), 2, anon_sym_EQ, - ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1551), 2, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 17, + ACTIONS(3842), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31272] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1552), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3438), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3436), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143253,93 +144857,100 @@ static const uint16_t ts_small_parse_table[] = { 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, - [31342] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4122), 1, - anon_sym_COLON_COLON, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1553), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3444), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3442), 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_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31412] = 11, + anon_sym_COMMA, + anon_sym_else, + [32310] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_BANG, - ACTIONS(4118), 1, + ACTIONS(1127), 1, + anon_sym_DASH, + ACTIONS(1177), 1, + aux_sym_string_literal_token1, + ACTIONS(1187), 1, + sym__raw_string_literal_start, + ACTIONS(2526), 1, + anon_sym_COLON_COLON, + ACTIONS(3392), 1, + sym_identifier, + ACTIONS(3402), 1, + sym_metavariable, + STATE(2146), 1, + sym_scoped_identifier, + STATE(2218), 1, + sym__literal_pattern, + STATE(3731), 1, + sym_bracketed_type, + STATE(3800), 1, + sym_generic_type_with_turbofish, + ACTIONS(1179), 2, + anon_sym_true, + anon_sym_false, + STATE(1573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1175), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3400), 3, + sym_self, + sym_super, + sym_crate, + STATE(2102), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3398), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32396] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4114), 1, anon_sym_LPAREN, - ACTIONS(4122), 1, + ACTIONS(4116), 1, anon_sym_COLON_COLON, - ACTIONS(4124), 1, + ACTIONS(4118), 1, anon_sym_LT2, - STATE(1646), 1, + ACTIONS(4167), 1, + anon_sym_BANG, + STATE(1698), 1, sym_type_arguments, - STATE(1671), 1, + STATE(1704), 1, sym_parameters, - STATE(1554), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 17, + ACTIONS(3442), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143357,7 +144968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 20, + ACTIONS(3440), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143378,63 +144989,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31482] = 21, + [32466] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4128), 1, + ACTIONS(3846), 2, anon_sym_EQ, - ACTIONS(4090), 2, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1555), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4126), 17, + ACTIONS(3842), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143445,18 +145051,21 @@ 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, - [31572] = 5, + [32550] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, + ACTIONS(4169), 1, + anon_sym_LPAREN, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(4132), 10, - anon_sym_LPAREN, + ACTIONS(4154), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -143466,7 +145075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4130), 33, + ACTIONS(4152), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143500,58 +145109,117 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31630] = 21, + [32610] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1577), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3846), 9, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, - ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [32680] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, anon_sym_DOT_DOT, - ACTIONS(4136), 1, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4146), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1557), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 17, + ACTIONS(4172), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143569,44 +145237,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31720] = 15, + [32770] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1558), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + ACTIONS(3846), 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(3920), 25, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143632,26 +145295,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31798] = 5, + [32838] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4140), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1681), 1, + anon_sym_DASH, + ACTIONS(1707), 1, + aux_sym_string_literal_token1, + ACTIONS(1715), 1, + sym__raw_string_literal_start, + ACTIONS(3608), 1, + sym_identifier, + ACTIONS(3612), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3616), 1, sym_metavariable, - ACTIONS(4138), 33, + STATE(2865), 1, + sym_scoped_identifier, + STATE(3163), 1, + sym__literal_pattern, + STATE(3627), 1, + sym_bracketed_type, + STATE(3644), 1, + sym_generic_type_with_turbofish, + ACTIONS(1709), 2, + anon_sym_true, + anon_sym_false, + STATE(1580), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1705), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3614), 3, + sym_self, + sym_super, + sym_crate, + STATE(2417), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143669,82 +145359,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31856] = 22, + [32924] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, ACTIONS(4144), 1, + anon_sym_DOT_DOT, + ACTIONS(4178), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4146), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3958), 7, + ACTIONS(4176), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143755,165 +145429,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31948] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1561), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4146), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32006] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_LPAREN, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4150), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32066] = 21, + anon_sym_COMMA, + anon_sym_else, + [33014] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, + ACTIONS(4182), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 17, + ACTIONS(4180), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143929,25 +145494,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_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32156] = 9, + [33100] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(3552), 1, anon_sym_LBRACE, - ACTIONS(3558), 1, + ACTIONS(3554), 1, anon_sym_COLON_COLON, - ACTIONS(4161), 1, + ACTIONS(4184), 1, anon_sym_BANG, - STATE(1514), 1, + STATE(1525), 1, sym_field_initializer_list, - STATE(1564), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143963,7 +145530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(1483), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143988,193 +145555,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32222] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3400), 1, - sym_identifier, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2109), 1, - sym_scoped_identifier, - STATE(2177), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1565), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3406), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32308] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, - anon_sym_COLON_COLON, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3398), 1, - sym_metavariable, - STATE(2116), 1, - sym_scoped_identifier, - STATE(2163), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3396), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3394), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [32394] = 19, + [33166] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1567), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4163), 19, + ACTIONS(3846), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144185,67 +145610,74 @@ 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, - [32480] = 21, + [33244] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4169), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4144), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4146), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1568), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 17, + ACTIONS(4038), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144256,55 +145688,53 @@ 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, - [32570] = 19, + [33336] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, + ACTIONS(1127), 1, anon_sym_DASH, - ACTIONS(1693), 1, + ACTIONS(1177), 1, aux_sym_string_literal_token1, - ACTIONS(1701), 1, + ACTIONS(1187), 1, sym__raw_string_literal_start, - ACTIONS(3596), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(3620), 1, + ACTIONS(3404), 1, sym_identifier, - ACTIONS(3626), 1, + ACTIONS(3414), 1, sym_metavariable, - STATE(2811), 1, + STATE(2154), 1, sym_scoped_identifier, - STATE(3100), 1, + STATE(2224), 1, sym__literal_pattern, - STATE(3590), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3607), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - ACTIONS(1695), 2, + ACTIONS(1179), 2, anon_sym_true, anon_sym_false, - STATE(1569), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, + ACTIONS(1175), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3624), 3, + ACTIONS(3412), 3, sym_self, sym_super, sym_crate, - STATE(2465), 4, + STATE(2102), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3622), 20, + ACTIONS(3410), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144325,53 +145755,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32656] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [33422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3596), 1, - anon_sym_COLON_COLON, - ACTIONS(3600), 1, - sym_metavariable, - STATE(2686), 1, - sym_scoped_identifier, - STATE(2950), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1570), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3598), 3, + ACTIONS(4188), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4186), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3594), 20, + [33480] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1588), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4192), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4190), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -144389,57 +145845,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, anon_sym_gen, + anon_sym_impl, anon_sym_union, - [32742] = 19, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33538] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, + ACTIONS(4144), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - STATE(1571), 2, + ACTIONS(4146), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(401), 19, + ACTIONS(341), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144455,70 +145928,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32828] = 22, + [33628] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, + ACTIONS(377), 2, anon_sym_EQ, - ACTIONS(4090), 2, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1572), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3878), 7, + ACTIONS(375), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144529,58 +145993,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32920] = 21, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33714] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, + ACTIONS(4144), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4146), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1573), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(4194), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144598,58 +146066,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33010] = 22, + [33804] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4114), 1, - anon_sym_DOT_DOT, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4090), 2, + ACTIONS(4144), 1, + anon_sym_DOT_DOT, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4116), 2, + ACTIONS(4146), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1574), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4022), 7, + ACTIONS(3756), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144657,7 +146125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144668,111 +146136,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33102] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [33896] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1667), 1, - anon_sym_DASH, - ACTIONS(1693), 1, - aux_sym_string_literal_token1, - ACTIONS(1701), 1, - sym__raw_string_literal_start, - ACTIONS(3596), 1, + ACTIONS(4114), 1, + anon_sym_LPAREN, + ACTIONS(4118), 1, + anon_sym_LT2, + ACTIONS(4198), 1, anon_sym_COLON_COLON, - ACTIONS(3608), 1, - sym_identifier, - ACTIONS(3614), 1, - sym_metavariable, - STATE(2801), 1, - sym_scoped_identifier, - STATE(3086), 1, - sym__literal_pattern, - STATE(3590), 1, - sym_bracketed_type, - STATE(3607), 1, - sym_generic_type_with_turbofish, - ACTIONS(1695), 2, - anon_sym_true, - anon_sym_false, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1691), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3612), 3, - sym_self, - sym_super, - sym_crate, - STATE(2465), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3610), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [33188] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1576), 2, + STATE(1698), 1, + sym_type_arguments, + STATE(1704), 1, + sym_parameters, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3471), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, 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(3920), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3469), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144783,124 +146186,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33256] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_as, + [33963] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, - anon_sym_DASH, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(1269), 1, - sym__raw_string_literal_start, - ACTIONS(2184), 1, + ACTIONS(3444), 1, + anon_sym_BANG, + ACTIONS(4200), 1, anon_sym_COLON_COLON, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3386), 1, - sym_metavariable, - STATE(2136), 1, - sym_scoped_identifier, - STATE(2208), 1, - sym__literal_pattern, - STATE(3695), 1, - sym_bracketed_type, - STATE(3765), 1, - sym_generic_type_with_turbofish, - ACTIONS(1261), 2, - anon_sym_true, - anon_sym_false, - STATE(1577), 2, + STATE(1525), 1, + sym_field_initializer_list, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3384), 3, - sym_self, - sym_super, - sym_crate, - STATE(2096), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3382), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [33342] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4090), 2, + ACTIONS(1481), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, - anon_sym_SEMI, + ACTIONS(1483), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144919,48 +146246,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33416] = 12, + anon_sym_SQUOTE, + anon_sym_as, + [34026] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1579), 2, + ACTIONS(3452), 1, + anon_sym_COLON_COLON, + ACTIONS(3556), 1, + anon_sym_BANG, + ACTIONS(4202), 1, + sym_identifier, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3448), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 25, + anon_sym_as, + ACTIONS(3446), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144979,50 +146303,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [33488] = 14, + [34089] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1580), 2, + ACTIONS(4167), 1, + anon_sym_BANG, + ACTIONS(4204), 1, + anon_sym_LBRACE, + ACTIONS(4206), 1, + anon_sym_COLON_COLON, + STATE(1860), 1, + sym_field_initializer_list, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(1481), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 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(3920), 25, - anon_sym_SEMI, + ACTIONS(1483), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145041,77 +146358,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_else, - [33564] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_COLON_COLON, - STATE(1581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4155), 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(4150), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33624] = 8, + anon_sym_as, + [34154] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, + ACTIONS(3517), 1, anon_sym_BANG, - ACTIONS(4174), 1, + ACTIONS(3519), 1, anon_sym_COLON_COLON, - STATE(1514), 1, - sym_field_initializer_list, - STATE(1582), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3515), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145122,15 +146382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(3513), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145142,33 +146404,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [33687] = 9, + anon_sym_LT2, + [34214] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(4178), 1, + ACTIONS(4042), 1, anon_sym_COLON_COLON, - STATE(1823), 1, - sym_field_initializer_list, - STATE(1583), 2, + ACTIONS(4184), 1, + anon_sym_BANG, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145184,10 +146440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(1483), 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, @@ -145208,84 +146465,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33752] = 10, + [34274] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4180), 1, - anon_sym_COLON_COLON, - STATE(1646), 1, - sym_type_arguments, - STATE(1671), 1, - sym_parameters, - STATE(1584), 2, + ACTIONS(3606), 1, + anon_sym_LBRACE, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3505), 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_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3453), 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, - [33819] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(4182), 1, - sym_identifier, - STATE(1585), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -145295,12 +146492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3412), 23, - anon_sym_SEMI, + ACTIONS(3507), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145320,19 +146515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33882] = 7, + anon_sym_COLON_COLON, + anon_sym_as, + [34332] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_BANG, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(1586), 2, + ACTIONS(4114), 1, + anon_sym_LPAREN, + ACTIONS(4118), 1, + anon_sym_LT2, + STATE(1699), 1, + sym_type_arguments, + STATE(1706), 1, + sym_parameters, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 17, + ACTIONS(3477), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145350,8 +146551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3494), 22, - anon_sym_LPAREN, + ACTIONS(3475), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145372,18 +146572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [33942] = 6, + [34396] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, + ACTIONS(3716), 1, anon_sym_LBRACE, - STATE(1587), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3538), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145400,7 +146599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 24, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145425,17 +146624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34000] = 6, + [34454] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_LBRACE, - STATE(1588), 2, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3548), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145452,10 +146649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 24, + ACTIONS(3550), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145476,71 +146673,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, - [34058] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4026), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - anon_sym_BANG, - STATE(1589), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 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, - [34118] = 6, + [34510] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3700), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(1590), 2, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3548), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145557,7 +146702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 24, + ACTIONS(3550), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145582,68 +146727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34176] = 7, + [34568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3516), 1, - anon_sym_COLON_COLON, - STATE(1591), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3512), 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(3510), 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, - [34236] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1592), 2, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, + ACTIONS(3538), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145660,7 +146752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3489), 25, + ACTIONS(3540), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -145686,15 +146778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34292] = 5, + [34624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1593), 2, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3505), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145711,7 +146803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 25, + ACTIONS(3507), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -145737,37 +146829,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34348] = 7, + [34680] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_BANG, - ACTIONS(3489), 1, - anon_sym_COLON_COLON, - STATE(1594), 2, + ACTIONS(3596), 1, + anon_sym_LBRACE, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, + ACTIONS(3517), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3483), 22, + ACTIONS(3519), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145782,27 +146871,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, - anon_sym_LT2, - [34408] = 7, + [34738] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_BANG, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1595), 2, + ACTIONS(4114), 1, + anon_sym_LPAREN, + ACTIONS(4118), 1, + anon_sym_LT2, + STATE(1699), 1, + sym_type_arguments, + STATE(1706), 1, + sym_parameters, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145813,15 +146908,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(3412), 24, - anon_sym_LPAREN, + ACTIONS(3509), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145833,29 +146929,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, - [34468] = 7, + [34802] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3505), 1, anon_sym_BANG, - ACTIONS(3508), 1, + ACTIONS(3507), 1, anon_sym_COLON_COLON, - STATE(1596), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 17, + ACTIONS(3503), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145873,7 +146966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3502), 22, + ACTIONS(3501), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145896,23 +146989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [34528] = 9, + [34862] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1597), 2, + ACTIONS(3450), 1, + anon_sym_BANG, + ACTIONS(4090), 1, + anon_sym_COLON_COLON, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 17, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145923,16 +147012,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(3526), 20, + ACTIONS(3446), 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, @@ -145944,30 +147032,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_SQUOTE, anon_sym_as, - [34592] = 9, + [34922] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, + ACTIONS(4114), 1, anon_sym_LPAREN, - ACTIONS(4124), 1, + ACTIONS(4118), 1, anon_sym_LT2, - STATE(1659), 1, + STATE(1699), 1, sym_type_arguments, - STATE(1673), 1, + STATE(1706), 1, sym_parameters, - STATE(1598), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 17, + ACTIONS(3525), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145985,7 +147076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 20, + ACTIONS(3523), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146006,74 +147097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34656] = 5, + [34986] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3514), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3538), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3516), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3540), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [34712] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1600), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 17, + ACTIONS(3536), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146091,7 +147127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 20, + ACTIONS(3534), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146112,19 +147149,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34776] = 7, + anon_sym_LT2, + [35046] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, + ACTIONS(3444), 1, anon_sym_BANG, - ACTIONS(4184), 1, + ACTIONS(4208), 1, anon_sym_COLON_COLON, - STATE(1601), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146140,7 +147178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 24, + ACTIONS(1483), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -146165,17 +147203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [34836] = 6, + [35106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3590), 1, - anon_sym_LBRACE, - STATE(1602), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3517), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146192,10 +147228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 24, + ACTIONS(3519), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146216,24 +147252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34894] = 9, + [35162] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1659), 1, - sym_type_arguments, - STATE(1673), 1, - sym_parameters, - STATE(1603), 2, + ACTIONS(3548), 1, + anon_sym_BANG, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 17, + ACTIONS(3546), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146251,7 +147284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 20, + ACTIONS(3544), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -146272,35 +147306,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34958] = 5, + anon_sym_LT2, + [35222] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + ACTIONS(4114), 1, + anon_sym_LPAREN, + ACTIONS(4118), 1, + anon_sym_LT2, + STATE(1699), 1, + sym_type_arguments, + STATE(1706), 1, + sym_parameters, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3529), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 25, - anon_sym_LPAREN, + ACTIONS(3527), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146312,67 +147355,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, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [35014] = 22, + [35286] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, + ACTIONS(1167), 1, anon_sym_extern, - ACTIONS(3471), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(4048), 1, + ACTIONS(4072), 1, anon_sym_default, - ACTIONS(4186), 1, + ACTIONS(4210), 1, sym_identifier, - ACTIONS(4188), 1, + ACTIONS(4212), 1, anon_sym_fn, - STATE(2278), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2459), 1, + STATE(2435), 1, sym_extern_modifier, - STATE(2632), 1, + STATE(2873), 1, sym_scoped_type_identifier, - STATE(3478), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, + STATE(3507), 1, sym_scoped_identifier, - STATE(3594), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(3738), 1, + STATE(3778), 1, sym_generic_type_with_turbofish, - ACTIONS(3473), 2, + STATE(3787), 1, + sym_generic_type, + STATE(3812), 1, + sym_function_modifiers, + ACTIONS(3493), 2, anon_sym_gen, anon_sym_union, - STATE(1605), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, + ACTIONS(1151), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3477), 3, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - ACTIONS(4046), 17, + ACTIONS(4070), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146390,19 +147429,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35103] = 7, + [35375] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, - anon_sym_SQUOTE, - STATE(1757), 1, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4214), 1, + anon_sym_SEMI, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4220), 1, + anon_sym_COMMA, + STATE(3095), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [35470] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1492), 1, sym_label, - STATE(1606), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146418,10 +147525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 23, + ACTIONS(3734), 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, @@ -146441,85 +147548,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, anon_sym_as, - [35162] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [35527] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, + ACTIONS(4167), 1, + anon_sym_BANG, + ACTIONS(4222), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3542), 1, - sym_function_modifiers, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1607), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [35251] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1428), 1, - sym_label, - STATE(1608), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146535,10 +147578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 24, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146558,19 +147601,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35308] = 6, + [35586] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, + ACTIONS(3980), 1, + anon_sym_BANG, + ACTIONS(3982), 1, anon_sym_COLON_COLON, - STATE(1609), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146586,10 +147630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 24, + ACTIONS(3446), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146609,68 +147653,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35365] = 25, + [35645] = 25, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - STATE(418), 1, + STATE(407), 1, sym_block, - STATE(3532), 1, + STATE(3702), 1, sym_label, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1610), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146681,15 +147724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35460] = 5, + [35740] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + ACTIONS(4252), 1, + anon_sym_SQUOTE, + STATE(1803), 1, + sym_label, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, + ACTIONS(3736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146705,10 +147752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 25, + ACTIONS(3734), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146729,23 +147775,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35515] = 5, + [35799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1612), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(3505), 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, @@ -146755,10 +147801,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3702), 25, + ACTIONS(3507), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146781,21 +147826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35570] = 5, + [35854] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1613), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3712), 15, + ACTIONS(3538), 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, @@ -146805,10 +147851,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3710), 25, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146831,66 +147876,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35625] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [35909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(1625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3548), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(413), 1, - sym_block, - STATE(3532), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1614), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3550), 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, @@ -146901,19 +147918,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35720] = 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [35964] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4224), 1, - anon_sym_else, - STATE(1807), 1, - sym_else_clause, - STATE(1615), 2, + ACTIONS(3830), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146929,7 +147953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1393), 23, + ACTIONS(3828), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146953,17 +147977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35779] = 6, + [36021] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, + ACTIONS(3830), 1, anon_sym_COLON_COLON, - STATE(1616), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146979,7 +148003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 24, + ACTIONS(3828), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -147004,15 +148028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [35836] = 5, + [36078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3514), 16, + ACTIONS(3517), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147029,7 +148053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3516), 24, + ACTIONS(3519), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147054,22 +148078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35891] = 5, + [36133] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, + ACTIONS(3914), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 16, + ACTIONS(3832), 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, @@ -147079,7 +148105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 24, + ACTIONS(3828), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147102,91 +148128,183 @@ 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, - [35946] = 25, + [36190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1630), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3696), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_SEMI, - ACTIONS(4228), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4232), 1, - anon_sym_COMMA, - STATE(3017), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(3694), 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, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [36245] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1631), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3710), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4100), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3708), 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, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1619), 2, + anon_sym_COLON_COLON, + anon_sym_as, + [36300] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + anon_sym_extern, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4254), 1, + sym_identifier, + ACTIONS(4256), 1, + anon_sym_fn, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2435), 1, + sym_extern_modifier, + STATE(2703), 1, + sym_scoped_type_identifier, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3631), 1, + sym_bracketed_type, + STATE(3650), 1, + sym_function_modifiers, + STATE(3778), 1, + sym_generic_type_with_turbofish, + STATE(3787), 1, + sym_generic_type, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36041] = 7, + ACTIONS(1151), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 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, + [36389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4120), 1, - anon_sym_BANG, - ACTIONS(4234), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147202,9 +148320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3718), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -147225,16 +148344,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, - [36100] = 5, + [36444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 15, + ACTIONS(3728), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147250,7 +148370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3678), 25, + ACTIONS(3726), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -147276,89 +148396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36155] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_DOT_DOT, - STATE(1470), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1622), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4212), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36250] = 7, + [36499] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3740), 1, - anon_sym_BANG, - ACTIONS(3742), 1, - anon_sym_COLON_COLON, - STATE(1623), 2, + ACTIONS(4258), 1, + anon_sym_else, + STATE(1830), 1, + sym_else_clause, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147374,7 +148424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(1427), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147398,66 +148448,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36309] = 25, + [36558] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(871), 1, + anon_sym_RBRACK, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - STATE(1479), 1, - sym_block, - STATE(3677), 1, - sym_label, - ACTIONS(4196), 2, + ACTIONS(4260), 1, + anon_sym_SEMI, + ACTIONS(4262), 1, + anon_sym_COMMA, + STATE(3089), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1624), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147468,66 +148518,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36404] = 25, + [36653] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, + ACTIONS(933), 1, anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4236), 1, + ACTIONS(4264), 1, anon_sym_SEMI, - ACTIONS(4238), 1, + ACTIONS(4266), 1, anon_sym_COMMA, - STATE(3117), 1, + STATE(2999), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1625), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147538,66 +148588,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36499] = 25, + [36748] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - STATE(483), 1, + STATE(1446), 1, sym_block, - STATE(3740), 1, + STATE(3712), 1, sym_label, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1626), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147608,66 +148658,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36594] = 25, + [36843] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - STATE(482), 1, + STATE(1468), 1, sym_block, - STATE(3740), 1, + STATE(3712), 1, sym_label, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1627), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147678,66 +148728,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36689] = 25, + [36938] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(3914), 1, + anon_sym_COLON_COLON, + STATE(1640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3832), 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(3828), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(3420), 1, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [36995] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + anon_sym_extern, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + ACTIONS(3499), 1, + sym_metavariable, + ACTIONS(4072), 1, + anon_sym_default, + ACTIONS(4268), 1, + sym_identifier, + ACTIONS(4270), 1, + anon_sym_fn, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2435), 1, + sym_extern_modifier, + STATE(2642), 1, + sym_scoped_type_identifier, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3631), 1, + sym_bracketed_type, + STATE(3778), 1, + sym_generic_type_with_turbofish, + STATE(3787), 1, + sym_generic_type, + STATE(3793), 1, + sym_function_modifiers, + ACTIONS(3493), 2, + anon_sym_gen, + anon_sym_union, + STATE(1641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1151), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4070), 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, + [37084] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - STATE(1813), 1, + STATE(483), 1, sym_block, - STATE(3741), 1, + STATE(3776), 1, sym_label, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1628), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147748,66 +148916,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36784] = 25, + [37179] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - STATE(1818), 1, + STATE(487), 1, sym_block, - STATE(3741), 1, + STATE(3776), 1, sym_label, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1629), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147818,140 +148986,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36879] = 6, + [37274] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4054), 1, - anon_sym_COLON_COLON, - STATE(1630), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3414), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4228), 1, anon_sym_CARET, + ACTIONS(4230), 1, anon_sym_AMP, + ACTIONS(4232), 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(3412), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(4234), 1, anon_sym_AMP_AMP, + ACTIONS(4236), 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, - [36936] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_COLON_COLON, - STATE(1631), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4242), 1, + anon_sym_EQ, + ACTIONS(4248), 1, + anon_sym_DOT_DOT, + STATE(1835), 1, + sym_block, + STATE(3777), 1, + sym_label, + ACTIONS(4224), 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(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 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, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [36993] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1632), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 16, - anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3489), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147962,48 +149056,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [37048] = 6, + [37369] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, + ACTIONS(407), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1633), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4228), 1, anon_sym_CARET, + ACTIONS(4230), 1, anon_sym_AMP, + ACTIONS(4232), 1, anon_sym_PIPE, + ACTIONS(4234), 1, + anon_sym_AMP_AMP, + ACTIONS(4236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4242), 1, + anon_sym_EQ, + ACTIONS(4248), 1, + anon_sym_DOT_DOT, + STATE(1841), 1, + sym_block, + STATE(3777), 1, + sym_label, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3774), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4250), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148014,96 +149126,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, - [37105] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [37464] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, - anon_sym_extern, - ACTIONS(3471), 1, + ACTIONS(4090), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, - sym_metavariable, - ACTIONS(4048), 1, - anon_sym_default, - ACTIONS(4242), 1, - sym_identifier, - ACTIONS(4244), 1, - anon_sym_fn, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2843), 1, - sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, - sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3738), 1, - sym_generic_type_with_turbofish, - STATE(3776), 1, - sym_function_modifiers, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1233), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3477), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4046), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [37194] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1635), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 16, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -148113,10 +149152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3508), 24, + ACTIONS(3446), 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, @@ -148136,20 +149175,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, - [37249] = 6, + [37521] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LBRACE, + ACTIONS(4272), 1, anon_sym_COLON_COLON, - STATE(1636), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148165,10 +149203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(1483), 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, @@ -148188,127 +149226,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [37306] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4246), 1, - anon_sym_SEMI, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1637), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37401] = 22, + [37578] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1249), 1, + ACTIONS(1167), 1, anon_sym_extern, - ACTIONS(3471), 1, + ACTIONS(3491), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, + ACTIONS(3499), 1, sym_metavariable, - ACTIONS(4048), 1, + ACTIONS(4072), 1, anon_sym_default, - ACTIONS(4250), 1, + ACTIONS(4274), 1, sym_identifier, - ACTIONS(4252), 1, + ACTIONS(4276), 1, anon_sym_fn, - STATE(2278), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2459), 1, + STATE(2435), 1, sym_extern_modifier, - STATE(2725), 1, + STATE(2853), 1, sym_scoped_type_identifier, - STATE(3513), 1, - sym_generic_type, - STATE(3588), 1, + STATE(3507), 1, sym_scoped_identifier, - STATE(3594), 1, - sym_bracketed_type, - STATE(3613), 1, + STATE(3513), 1, sym_function_modifiers, - STATE(3738), 1, + STATE(3631), 1, + sym_bracketed_type, + STATE(3778), 1, sym_generic_type_with_turbofish, - ACTIONS(3473), 2, + STATE(3787), 1, + sym_generic_type, + ACTIONS(3493), 2, anon_sym_gen, anon_sym_union, - STATE(1638), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(1233), 3, + ACTIONS(1151), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3477), 3, + ACTIONS(3497), 3, sym_self, sym_super, sym_crate, - ACTIONS(4046), 17, + ACTIONS(4070), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -148326,66 +149295,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37490] = 25, + [37667] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, + ACTIONS(1035), 1, anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4254), 1, + ACTIONS(4278), 1, anon_sym_SEMI, - ACTIONS(4256), 1, + ACTIONS(4280), 1, anon_sym_COMMA, - STATE(3154), 1, + STATE(3016), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1639), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148396,39 +149365,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37585] = 6, + [37762] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_COLON_COLON, - STATE(1640), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4228), 1, anon_sym_CARET, + ACTIONS(4230), 1, anon_sym_AMP, + ACTIONS(4232), 1, anon_sym_PIPE, + ACTIONS(4234), 1, + anon_sym_AMP_AMP, + ACTIONS(4236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4242), 1, + anon_sym_EQ, + ACTIONS(4248), 1, + anon_sym_DOT_DOT, + STATE(401), 1, + sym_block, + STATE(3702), 1, + sym_label, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4250), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148439,42 +149435,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, - [37641] = 5, + [37857] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4230), 1, + anon_sym_AMP, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, - anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3846), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3706), 24, + ACTIONS(3842), 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, @@ -148493,17 +149491,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, - [37695] = 5, + anon_sym_SQUOTE, + [37927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3546), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148514,12 +149511,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 24, + ACTIONS(3544), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148534,25 +149533,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37749] = 5, + anon_sym_LT2, + [37981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148568,7 +149565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 24, + ACTIONS(3672), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148591,17 +149588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_as, - [37803] = 5, + [38035] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1644), 2, + ACTIONS(4282), 1, + anon_sym_DASH_GT, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148617,7 +149616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3682), 24, + ACTIONS(3676), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148640,21 +149639,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, - [37857] = 7, + [38091] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4260), 1, - anon_sym_LPAREN, - STATE(1833), 1, - sym_arguments, - STATE(1645), 2, + ACTIONS(4284), 1, + anon_sym_DASH_GT, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148670,7 +149666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 22, + ACTIONS(3682), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148693,15 +149690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37915] = 5, + [38147] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1646), 2, + ACTIONS(4286), 1, + anon_sym_DASH_GT, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148717,7 +149716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 24, + ACTIONS(3688), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148740,56 +149739,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_as, - [37969] = 19, + [38203] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - STATE(1647), 2, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(401), 15, + ACTIONS(4194), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -148802,63 +149804,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38051] = 21, + [38289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3700), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3698), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148869,61 +149846,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38137] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [38343] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4292), 1, + anon_sym_COLON_COLON, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3477), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3475), 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(1649), 2, + anon_sym_as, + [38399] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4294), 1, + anon_sym_DASH_GT, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3704), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 13, + 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(3702), 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, @@ -148934,61 +149947,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38223] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [38455] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4296), 1, + anon_sym_RPAREN, + ACTIONS(4298), 1, + anon_sym_COMMA, + STATE(3073), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1650), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148999,16 +150022,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, - [38309] = 5, + [38547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3714), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149024,7 +150046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3714), 24, + ACTIONS(3712), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149049,15 +150071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [38363] = 5, + [38601] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + ACTIONS(4300), 1, + anon_sym_LPAREN, + STATE(1866), 1, + sym_arguments, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, + ACTIONS(3750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149073,8 +150099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3582), 24, - anon_sym_LPAREN, + ACTIONS(3746), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -149096,19 +150121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38417] = 6, + [38659] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3742), 1, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - STATE(1653), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149124,7 +150148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149148,64 +150172,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38473] = 24, + [38715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3724), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4266), 1, - anon_sym_RPAREN, - ACTIONS(4268), 1, - anon_sym_COMMA, - STATE(2888), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3722), 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, @@ -149216,64 +150213,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38565] = 24, + anon_sym_EQ_EQ, + 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, + [38769] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4304), 1, + anon_sym_COLON_COLON, + STATE(1666), 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, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4270), 1, - anon_sym_COMMA, - STATE(2896), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_DOT, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_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(1655), 2, + anon_sym_as, + [38825] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3732), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3730), 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, @@ -149284,48 +150312,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38657] = 18, + anon_sym_EQ_EQ, + 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, + [38879] = 18, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(4276), 1, + ACTIONS(4310), 1, anon_sym_RBRACE, - ACTIONS(4278), 1, + ACTIONS(4312), 1, anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(4316), 1, anon_sym_COMMA, - ACTIONS(4284), 1, + ACTIONS(4318), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4322), 1, sym_metavariable, - STATE(2502), 1, + STATE(2541), 1, sym_scoped_identifier, - STATE(3023), 1, + STATE(3175), 1, sym__use_clause, - STATE(3461), 1, + STATE(3525), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3593), 1, sym_generic_type_with_turbofish, - STATE(1656), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4320), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(3072), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4314), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -149346,17 +150382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [38737] = 6, + [38959] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4290), 1, + ACTIONS(4292), 1, anon_sym_COLON_COLON, - STATE(1657), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149372,7 +150408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149396,64 +150432,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38793] = 24, + [39015] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3846), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, - ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39079] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(2929), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4324), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149464,35 +150552,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38885] = 5, + [39167] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, - anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3846), 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(3632), 24, + ACTIONS(3842), 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, @@ -149511,19 +150607,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, - [38939] = 6, + anon_sym_SQUOTE, + [39235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1660), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149539,7 +150632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(1449), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149563,15 +150656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38995] = 5, + anon_sym_else, + [39289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149587,7 +150681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3696), 24, + ACTIONS(1433), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149610,19 +150704,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, - [39049] = 6, + anon_sym_else, + [39343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4296), 1, - anon_sym_DASH_GT, - STATE(1662), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149638,7 +150730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 23, + ACTIONS(1437), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149662,43 +150754,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39105] = 14, + anon_sym_else, + [39397] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1663), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3846), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3842), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -149720,64 +150813,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39177] = 24, + [39469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + STATE(1677), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1447), 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(1445), 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, + [39523] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1443), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1441), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3794), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3796), 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, + anon_sym_else, + [39577] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4298), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1664), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3756), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149788,60 +150977,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39269] = 21, + [39665] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(3846), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1665), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 13, + ACTIONS(3842), 16, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149852,23 +151036,33 @@ 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, - [39355] = 6, + [39745] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1666), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, - anon_sym_PLUS, + ACTIONS(4226), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3846), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149877,15 +151071,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 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, + [39811] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_CARET, + ACTIONS(4230), 1, + anon_sym_AMP, + ACTIONS(4232), 1, + anon_sym_PIPE, + ACTIONS(4234), 1, + anon_sym_AMP_AMP, + ACTIONS(4236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(3522), 23, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4246), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4172), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149896,61 +151158,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, - [39411] = 17, + anon_sym_SQUOTE, + [39897] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4178), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(3922), 2, - anon_sym_EQ, + ACTIONS(4234), 1, + anon_sym_AMP_AMP, + ACTIONS(4236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - STATE(1667), 2, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 17, + ACTIONS(4176), 13, 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, @@ -149961,44 +151223,45 @@ 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, - [39489] = 12, + [39983] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4196), 2, + ACTIONS(4228), 1, + anon_sym_CARET, + ACTIONS(4230), 1, + anon_sym_AMP, + ACTIONS(4232), 1, + anon_sym_PIPE, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1668), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3846), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3842), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -150020,17 +151283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39557] = 6, + [40057] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, + ACTIONS(3982), 1, anon_sym_COLON_COLON, - STATE(1669), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150046,7 +151309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(3446), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150070,30 +151333,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39613] = 11, + [40113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1670), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3600), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150102,10 +151355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3598), 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, @@ -150124,18 +151380,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_SQUOTE, - [39679] = 6, + anon_sym_COLON_COLON, + anon_sym_as, + [40167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4300), 1, - anon_sym_DASH_GT, - STATE(1671), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(3604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150151,7 +151406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 23, + ACTIONS(3602), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150174,63 +151429,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [39735] = 22, + [40221] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(377), 2, anon_sym_EQ, - ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1672), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(375), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150241,39 +151491,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39823] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40303] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4302), 1, - anon_sym_DASH_GT, - STATE(1673), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4228), 1, anon_sym_CARET, + ACTIONS(4230), 1, anon_sym_AMP, + ACTIONS(4232), 1, anon_sym_PIPE, + ACTIONS(4234), 1, + anon_sym_AMP_AMP, + ACTIONS(4236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3648), 23, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 13, anon_sym_LPAREN, - anon_sym_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, @@ -150284,71 +151558,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, - [39879] = 24, + anon_sym_SQUOTE, + [40389] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4304), 1, - anon_sym_COMMA, - STATE(3039), 1, - aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1674), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4148), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150359,62 +151623,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39971] = 22, + anon_sym_SQUOTE, + [40475] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4161), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(4022), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4159), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150425,17 +151688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40059] = 6, + anon_sym_SQUOTE, + [40561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, + ACTIONS(4326), 1, anon_sym_COLON_COLON, - STATE(1676), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150451,7 +151715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150475,62 +151739,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40115] = 22, + [40617] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4182), 2, anon_sym_EQ, - ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1677), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4308), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4102), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4180), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150541,62 +151799,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40203] = 22, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40699] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4328), 1, + anon_sym_RPAREN, + ACTIONS(4330), 1, + anon_sym_COMMA, + STATE(3099), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4310), 3, - anon_sym_RPAREN, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [40791] = 24, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(973), 1, anon_sym_RBRACK, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4332), 1, anon_sym_COMMA, - ACTIONS(4102), 4, + STATE(3133), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150607,17 +151938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40291] = 6, + [40883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4294), 1, - anon_sym_COLON_COLON, - STATE(1679), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(3634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150633,7 +151962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(3632), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150656,61 +151985,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40347] = 21, + [40937] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(979), 1, + anon_sym_RPAREN, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4112), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4334), 1, + anon_sym_COMMA, + STATE(2944), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1680), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 13, + ACTIONS(4136), 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, + [41029] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3646), 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(3644), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150721,65 +152096,214 @@ 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, - [40433] = 24, + anon_sym_EQ_EQ, + 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, + [41083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + STATE(1699), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3650), 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(3648), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3794), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3796), 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_COLON_COLON, + anon_sym_as, + [41137] = 24, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1031), 1, + anon_sym_RPAREN, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4312), 1, - anon_sym_RPAREN, - ACTIONS(4314), 1, + ACTIONS(4336), 1, anon_sym_COMMA, - STATE(2975), 1, + STATE(3071), 1, aux_sym_arguments_repeat1, - ACTIONS(4090), 2, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [41229] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4338), 1, + anon_sym_DASH_GT, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3654), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4100), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3652), 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(1681), 2, + anon_sym_as, + [41285] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4292), 1, + anon_sym_COLON_COLON, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3529), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3527), 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, @@ -150790,29 +152314,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40525] = 10, + anon_sym_EQ_EQ, + 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, + [41341] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - STATE(1682), 2, + ACTIONS(4292), 1, + anon_sym_COLON_COLON, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3525), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150821,10 +152345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3920), 21, + ACTIONS(3523), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150843,16 +152370,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_SQUOTE, - [40589] = 5, + anon_sym_as, + [41397] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + ACTIONS(4340), 1, + anon_sym_DASH_GT, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150868,7 +152397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1427), 24, + ACTIONS(3658), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150892,61 +152421,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40643] = 21, + [41453] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4136), 1, - anon_sym_EQ, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4262), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1684), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4342), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150957,16 +152487,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_SQUOTE, - [40729] = 5, + [41541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + ACTIONS(4344), 1, + anon_sym_DASH_GT, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 15, + ACTIONS(3666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150982,7 +152513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1435), 24, + ACTIONS(3664), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151006,16 +152537,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40783] = 5, + [41597] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + ACTIONS(905), 1, + anon_sym_RBRACK, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4346), 1, + anon_sym_COMMA, + STATE(2943), 1, + aux_sym_arguments_repeat1, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [41689] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4348), 1, + anon_sym_COLON_COLON, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151031,7 +152631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151055,49 +152655,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [40837] = 15, + [41745] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4196), 2, + ACTIONS(4234), 1, + anon_sym_AMP_AMP, + ACTIONS(4236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4242), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1687), 2, + ACTIONS(4246), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4038), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151108,69 +152721,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_SQUOTE, - [40911] = 22, + [41833] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4234), 1, anon_sym_AMP_AMP, - ACTIONS(4208), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4264), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1688), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 3, + ACTIONS(3924), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4198), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151181,39 +152787,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40999] = 6, + [41921] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, - anon_sym_COLON_COLON, - STATE(1689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4228), 1, anon_sym_CARET, + ACTIONS(4230), 1, anon_sym_AMP, + ACTIONS(4232), 1, anon_sym_PIPE, + ACTIONS(4234), 1, + anon_sym_AMP_AMP, + ACTIONS(4236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4242), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3972), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151224,42 +152853,52 @@ 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, - [41055] = 5, + [42009] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1690), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1421), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4228), 1, anon_sym_CARET, + ACTIONS(4230), 1, anon_sym_AMP, + ACTIONS(4232), 1, anon_sym_PIPE, + ACTIONS(3846), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4224), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1419), 24, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4226), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4244), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3842), 17, 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, @@ -151272,96 +152911,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [41109] = 5, + anon_sym_SQUOTE, + [42087] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1425), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1423), 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, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [41163] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 17, - anon_sym_PLUS, + ACTIONS(4122), 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_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4140), 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(3483), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151370,54 +152978,64 @@ 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, - anon_sym_LT2, - [41217] = 13, + [42176] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4202), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4196), 2, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4352), 1, + anon_sym_SEMI, + ACTIONS(4354), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1693), 2, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151428,22 +153046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41287] = 5, + [42265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3926), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151459,7 +153070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 24, + ACTIONS(3924), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151482,19 +153093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [41341] = 6, + [42318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4318), 1, - anon_sym_DASH_GT, - STATE(1695), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3688), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151510,7 +153118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3686), 23, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151534,17 +153142,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41397] = 6, + [42371] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4320), 1, - anon_sym_DASH_GT, - STATE(1696), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4356), 1, + anon_sym_RPAREN, + ACTIONS(4358), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [42460] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 15, + ACTIONS(3974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151560,7 +153232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3660), 23, + ACTIONS(3972), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151584,17 +153256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41453] = 6, + [42513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4322), 1, - anon_sym_DASH_GT, - STATE(1697), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151610,7 +153280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 23, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151634,17 +153304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41509] = 6, + [42566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4324), 1, - anon_sym_DASH_GT, - STATE(1698), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151660,7 +153328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 23, + ACTIONS(3808), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151684,117 +153352,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41565] = 19, + [42619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(4208), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4218), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1699), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(3934), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4163), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41647] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_AMP_AMP, - ACTIONS(3922), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4196), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1700), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4198), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4216), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3932), 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, @@ -151806,65 +153393,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_SQUOTE, - [41727] = 23, + anon_sym_as, + [42672] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4326), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1701), 2, + ACTIONS(4360), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151875,15 +153465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41816] = 5, + [42759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1702), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(3962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151899,7 +153489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 23, + ACTIONS(3960), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151923,15 +153513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41869] = 5, + [42812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1703), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151947,7 +153537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 23, + ACTIONS(3509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151971,15 +153561,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41922] = 5, + [42865] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4362), 1, + anon_sym_RBRACE, + ACTIONS(4364), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [42954] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(3520), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151995,7 +153651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3518), 23, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152019,61 +153675,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41975] = 22, + [43007] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4368), 1, + anon_sym_AMP_AMP, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4330), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1705), 2, + ACTIONS(4366), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152084,15 +153740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42062] = 5, + [43094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(3946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152108,7 +153764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 23, + ACTIONS(3944), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152132,61 +153788,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42115] = 22, + [43147] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4380), 1, + anon_sym_AMP_AMP, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4388), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4334), 1, - anon_sym_AMP_AMP, - ACTIONS(4196), 2, + ACTIONS(4038), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1707), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4216), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152197,61 +153853,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42202] = 22, + [43234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + STATE(1730), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3822), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3820), 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(1708), 2, + anon_sym_as, + [43287] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(3750), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 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(3746), 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, @@ -152262,15 +153942,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42289] = 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, + [43340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152286,7 +153973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(3812), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152310,15 +153997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42342] = 5, + [43393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1710), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 15, + ACTIONS(3798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152334,7 +154021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4036), 23, + ACTIONS(3796), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152358,15 +154045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42395] = 5, + [43446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152382,7 +154069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3800), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152406,15 +154093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42448] = 5, + [43499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1712), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3388), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152430,7 +154117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 23, + ACTIONS(3390), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152454,15 +154141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42501] = 5, + [43552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(4058), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152478,7 +154165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 23, + ACTIONS(4056), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152502,15 +154189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42554] = 5, + [43605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(3950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152526,7 +154213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 23, + ACTIONS(3948), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152550,15 +154237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42607] = 5, + [43658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152574,7 +154261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 23, + ACTIONS(3527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152598,15 +154285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42660] = 5, + [43711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152622,7 +154309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3816), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152646,15 +154333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42713] = 5, + [43764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152670,7 +154357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3522), 23, + ACTIONS(3952), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152694,15 +154381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42766] = 5, + [43817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152718,7 +154405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3750), 23, + ACTIONS(3956), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152742,21 +154429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42819] = 8, + [43870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1719), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 14, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152770,10 +154451,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(3788), 21, + ACTIONS(3523), 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, @@ -152793,15 +154477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42878] = 5, + [43923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152817,7 +154501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3532), 23, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152841,15 +154525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42931] = 5, + [43976] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(4066), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152865,7 +154549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3912), 23, + ACTIONS(4064), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152889,40 +154573,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42984] = 8, + [44029] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3850), 1, anon_sym_DOT, - STATE(1722), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3836), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4374), 1, anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_AMP, + ACTIONS(4378), 1, anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_AMP_AMP, + ACTIONS(4382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4388), 1, + anon_sym_EQ, + ACTIONS(4394), 1, + anon_sym_DOT_DOT, + ACTIONS(3972), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4370), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3834), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4396), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4372), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4390), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152933,65 +154638,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, - [43043] = 21, + [44116] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4169), 1, + ACTIONS(4196), 1, anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1723), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 12, + ACTIONS(4194), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153004,61 +154702,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43128] = 22, + [44201] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + STATE(1747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3942), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(3878), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1724), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 10, + anon_sym_DOT_DOT, + ACTIONS(3940), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153069,23 +154746,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43215] = 9, + anon_sym_EQ_EQ, + 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, + [44260] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - STATE(1725), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 14, + ACTIONS(3970), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153100,7 +154782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3968), 21, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -153121,61 +154803,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43276] = 22, + anon_sym_as, + [44319] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4372), 2, + ACTIONS(4404), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1726), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153186,27 +154869,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43363] = 10, + [44406] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - STATE(1727), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 11, + ACTIONS(3846), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, @@ -153218,7 +154901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153239,42 +154922,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43426] = 13, + [44469] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1728), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, + ACTIONS(3846), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153295,33 +154978,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43495] = 12, + [44538] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1729), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(3846), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153329,7 +155012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153350,43 +155033,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43562] = 14, + [44605] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1730), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3846), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153407,50 +155090,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43633] = 17, + [44676] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(3846), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - STATE(1731), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 16, + ACTIONS(3842), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153467,52 +155150,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43710] = 18, + [44753] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(3846), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - STATE(1732), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 15, + ACTIONS(3842), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PIPE_PIPE, @@ -153528,30 +155211,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43789] = 11, + [44832] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1733), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(3846), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153561,7 +155244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153582,58 +155265,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43854] = 21, + [44897] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4112), 1, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1734), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, + ACTIONS(4172), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153646,58 +155329,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43939] = 21, + [44982] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4136), 1, + ACTIONS(4178), 1, anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1735), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, + ACTIONS(4176), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153710,44 +155393,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44024] = 15, + [45067] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1736), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + ACTIONS(3846), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153768,54 +155451,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44097] = 19, + [45140] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4182), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - STATE(1737), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 14, + ACTIONS(4180), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153830,62 +155513,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44178] = 23, + [45221] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, - anon_sym_SEMI, - ACTIONS(4376), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1738), 2, + ACTIONS(4406), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153896,62 +155578,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44267] = 23, + [45308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3856), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4378), 1, - anon_sym_RBRACE, - ACTIONS(4380), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3854), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1739), 2, + anon_sym_as, + [45361] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3860), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3858), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153962,15 +155667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44356] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(3972), 15, + ACTIONS(3826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153986,7 +155698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3970), 23, + ACTIONS(3824), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154010,15 +155722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44409] = 5, + [45467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3988), 15, + ACTIONS(3876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154034,7 +155746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3986), 23, + ACTIONS(3874), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154058,56 +155770,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44462] = 19, + [45520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3880), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1742), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3878), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154118,17 +155811,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, - [44543] = 5, + anon_sym_as, + [45573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154144,7 +155842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3754), 23, + ACTIONS(3990), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154168,62 +155866,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44596] = 23, + [45626] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4388), 1, anon_sym_EQ, - ACTIONS(4402), 1, - anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - STATE(420), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(3756), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1744), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154234,37 +155931,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44685] = 5, + [45713] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3764), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4374), 1, anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_AMP, + ACTIONS(4378), 1, anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_AMP_AMP, + ACTIONS(4382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4388), 1, + anon_sym_EQ, + ACTIONS(4408), 1, + anon_sym_LBRACE, + ACTIONS(4410), 1, + anon_sym_DOT_DOT, + STATE(420), 1, + sym_match_block, + ACTIONS(4370), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3762), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4412), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4372), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4390), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154275,22 +155997,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, - [44738] = 5, + [45802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1746), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(3964), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154306,7 +156021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3962), 23, + ACTIONS(4002), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154330,15 +156045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44791] = 5, + [45855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(3762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154354,7 +156069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 23, + ACTIONS(3760), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154378,61 +156093,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44844] = 22, + [45908] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4360), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(3958), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + ACTIONS(4414), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154443,15 +156158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44931] = 5, + [45995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154467,7 +156182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3846), 23, + ACTIONS(3475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154491,58 +156206,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44984] = 21, + [46048] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(377), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1750), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, + ACTIONS(375), 14, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -154555,15 +156266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45069] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [46129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, + ACTIONS(3766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154579,7 +156292,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3854), 23, + ACTIONS(3764), 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, + [46182] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3770), 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(3768), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154603,15 +156364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45122] = 5, + [46235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154627,7 +156388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3766), 23, + ACTIONS(3784), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154651,15 +156412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45175] = 5, + [46288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, + ACTIONS(3790), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154675,7 +156436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3526), 23, + ACTIONS(3788), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154699,15 +156460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45228] = 5, + [46341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1754), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154723,7 +156484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(3964), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154747,37 +156508,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45281] = 5, + [46394] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1755), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3860), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4374), 1, anon_sym_CARET, + ACTIONS(4376), 1, anon_sym_AMP, + ACTIONS(4378), 1, anon_sym_PIPE, + ACTIONS(4380), 1, + anon_sym_AMP_AMP, + ACTIONS(4382), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4388), 1, + anon_sym_EQ, + ACTIONS(4394), 1, + anon_sym_DOT_DOT, + ACTIONS(3924), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4370), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3858), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4396), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4372), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4390), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154788,22 +156573,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, - [45334] = 5, + [46481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3864), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154819,7 +156597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3862), 23, + ACTIONS(3882), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154843,15 +156621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45387] = 5, + [46534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154867,7 +156645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 23, + ACTIONS(3886), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154891,15 +156669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45440] = 5, + [46587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154915,7 +156693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3866), 23, + ACTIONS(3890), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154939,80 +156717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45493] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4412), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1759), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45580] = 5, + [46640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155028,7 +156741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 23, + ACTIONS(3894), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155052,15 +156765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45633] = 5, + [46693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155076,7 +156789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 23, + ACTIONS(3898), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155100,15 +156813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45686] = 5, + [46746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155124,7 +156837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3798), 23, + ACTIONS(3902), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155148,104 +156861,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45739] = 21, + [46799] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4200), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4426), 1, + anon_sym_AMP_AMP, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, - anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1763), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4414), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4216), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45824] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3808), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3806), 21, + ACTIONS(341), 12, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155256,22 +156925,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, - [45883] = 5, + [46884] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155287,7 +156949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 23, + ACTIONS(3906), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155311,15 +156973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45936] = 5, + [46937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155335,7 +156997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 23, + ACTIONS(3998), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155359,15 +157021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45989] = 5, + [46990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3936), 15, + ACTIONS(3774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155383,7 +157045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3934), 23, + ACTIONS(3772), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155407,15 +157069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46042] = 5, + [47043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3940), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155431,7 +157093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3938), 23, + ACTIONS(3776), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155455,15 +157117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46095] = 5, + [47096] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3944), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155479,7 +157141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3942), 23, + ACTIONS(3780), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155503,15 +157165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46148] = 5, + [47149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(3948), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155527,7 +157189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3946), 23, + ACTIONS(4006), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155551,15 +157213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46201] = 5, + [47202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3952), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155575,7 +157237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3950), 23, + ACTIONS(4010), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155599,62 +157261,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46254] = 23, + [47255] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1772), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4442), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155665,15 +157325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46343] = 5, + [47340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3836), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155689,7 +157349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 23, + ACTIONS(3834), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155713,15 +157373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46396] = 5, + [47393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(1599), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155737,7 +157397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 23, + ACTIONS(1601), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155761,15 +157421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46449] = 5, + [47446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 15, + ACTIONS(1471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155785,7 +157445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 23, + ACTIONS(1469), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155809,60 +157469,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46502] = 21, + [47499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1487), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1485), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155873,15 +157510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46587] = 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, + [47552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(1585), 15, + ACTIONS(1515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155897,7 +157541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1587), 23, + ACTIONS(1513), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155921,15 +157565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46640] = 5, + [47605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(1507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155945,7 +157589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 23, + ACTIONS(1505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155969,15 +157613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46693] = 5, + [47658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(1535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155993,7 +157637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 23, + ACTIONS(1533), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156017,15 +157661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46746] = 5, + [47711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(3922), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156041,7 +157685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 23, + ACTIONS(3920), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156065,15 +157709,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46799] = 5, + [47764] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4038), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [47851] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156089,7 +157798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 23, + ACTIONS(3804), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156113,15 +157822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46852] = 5, + [47904] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156137,7 +157846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 23, + ACTIONS(1473), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156161,60 +157870,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46905] = 21, + [47957] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(3972), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156225,61 +157935,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46990] = 22, + [48044] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, anon_sym_DOT_DOT, - ACTIONS(4022), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1784), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4194), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156290,62 +157999,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47077] = 23, + [48129] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4418), 1, + ACTIONS(4444), 1, anon_sym_SEMI, - ACTIONS(4420), 1, + ACTIONS(4446), 1, anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1785), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156356,63 +158065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47166] = 5, + [48218] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3896), 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(3894), 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, - [47219] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1503), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156428,7 +158089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 23, + ACTIONS(1501), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156452,60 +158113,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47272] = 21, + [48271] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, - anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4448), 1, + anon_sym_RPAREN, + ACTIONS(4450), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4167), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156516,63 +158179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47357] = 5, + [48360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1483), 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(1481), 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, - [47410] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(1531), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156588,7 +158203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3758), 23, + ACTIONS(1529), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156612,15 +158227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47463] = 5, + [48413] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 15, + ACTIONS(1547), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156636,7 +158251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1531), 23, + ACTIONS(1545), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156660,85 +158275,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47516] = 22, + [48466] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(4436), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(3878), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1792), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47603] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1793), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1467), 15, + ACTIONS(3846), 11, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156747,13 +158306,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(1465), 23, + ACTIONS(3842), 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, @@ -156772,96 +158328,42 @@ 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, - [47656] = 10, + [48529] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - STATE(1794), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3922), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, + ACTIONS(4422), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3920), 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, - [47719] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4436), 1, anon_sym_as, - ACTIONS(4388), 1, - anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1795), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 6, + ACTIONS(3846), 6, anon_sym_CARET, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156882,33 +158384,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47788] = 12, + [48598] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4436), 1, anon_sym_as, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1796), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 7, + ACTIONS(3846), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156916,7 +158418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156937,43 +158439,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47855] = 14, + [48665] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4382), 2, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1797), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 5, + ACTIONS(3846), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156994,50 +158496,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47926] = 17, + [48736] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(3846), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - STATE(1798), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 16, + ACTIONS(3842), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157054,52 +158556,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48003] = 18, + [48813] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(3922), 2, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(3846), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - STATE(1799), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 15, + ACTIONS(3842), 15, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE_PIPE, @@ -157115,30 +158617,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48082] = 11, + [48892] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(4436), 1, anon_sym_as, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1800), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 9, + ACTIONS(3846), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -157148,7 +158650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157169,58 +158671,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48147] = 21, + [48957] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4112), 1, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4108), 12, + ACTIONS(4172), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157233,58 +158735,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48232] = 21, + [49042] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4136), 1, + ACTIONS(4178), 1, anon_sym_EQ, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4134), 12, + ACTIONS(4176), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157297,44 +158799,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48317] = 15, + [49127] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4382), 2, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1803), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3922), 4, + ACTIONS(3846), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3920), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -157355,54 +158857,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48390] = 19, + [49200] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4182), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - STATE(1804), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4163), 14, + ACTIONS(4180), 14, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -157417,15 +158919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48471] = 5, + [49281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1805), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157441,7 +158943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 23, + ACTIONS(3862), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157465,15 +158967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48524] = 5, + [49334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157489,7 +158991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3746), 23, + ACTIONS(3866), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157513,15 +159015,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48577] = 5, + [49387] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1807), 2, + ACTIONS(4398), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_DOT, + ACTIONS(4436), 1, + anon_sym_as, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 15, + ACTIONS(3846), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157535,13 +159045,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(1511), 23, + ACTIONS(3842), 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, @@ -157560,16 +159067,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + [49448] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, anon_sym_as, - [48630] = 5, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(3756), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [49535] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 15, + ACTIONS(4028), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157585,7 +159156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1515), 23, + ACTIONS(4026), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157609,61 +159180,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48683] = 22, + [49588] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1527), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(3958), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1809), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1525), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157674,15 +159221,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48770] = 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, + [49641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(1537), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157698,7 +159252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1535), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157722,15 +159276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48823] = 5, + [49694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1811), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1521), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157746,7 +159300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 23, + ACTIONS(1519), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157770,15 +159324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48876] = 5, + [49747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3956), 15, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157794,7 +159348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3954), 23, + ACTIONS(4022), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157818,15 +159372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48929] = 5, + [49800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1813), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(3978), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157842,7 +159396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 23, + ACTIONS(3976), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157866,15 +159420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48982] = 5, + [49853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157890,7 +159444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 23, + ACTIONS(1461), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157914,15 +159468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49035] = 5, + [49906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1815), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157938,7 +159492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 23, + ACTIONS(1453), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157962,15 +159516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49088] = 5, + [49959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157986,7 +159540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1473), 23, + ACTIONS(1465), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158010,15 +159564,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49141] = 5, + [50012] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1817), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(3924), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [50099] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(1541), 15, + ACTIONS(1511), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158034,7 +159653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1539), 23, + ACTIONS(1509), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158058,15 +159677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49194] = 5, + [50152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 15, + ACTIONS(1555), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158082,7 +159701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1507), 23, + ACTIONS(1553), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158106,15 +159725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49247] = 5, + [50205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1819), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 15, + ACTIONS(1491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158130,7 +159749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(977), 23, + ACTIONS(1489), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158154,15 +159773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49300] = 5, + [50258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1820), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(907), 15, + ACTIONS(911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158178,7 +159797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(909), 23, + ACTIONS(913), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158202,15 +159821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49353] = 5, + [50311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1821), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(945), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158226,7 +159845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 23, + ACTIONS(947), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158250,15 +159869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49406] = 5, + [50364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(911), 15, + ACTIONS(1543), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158274,7 +159893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(913), 23, + ACTIONS(1541), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158298,15 +159917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49459] = 5, + [50417] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3968), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158322,7 +159941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3966), 23, + ACTIONS(977), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158346,61 +159965,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49512] = 22, + [50470] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, anon_sym_DOT_DOT, - ACTIONS(4424), 1, + ACTIONS(4454), 1, anon_sym_EQ, - ACTIONS(4022), 2, + ACTIONS(4038), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4452), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158411,63 +160030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49599] = 5, + [50557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(915), 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(917), 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, - [49652] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(1037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158483,7 +160054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(1039), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158507,62 +160078,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49705] = 23, + [50610] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, anon_sym_DOT_DOT, - ACTIONS(4426), 1, - anon_sym_RPAREN, - ACTIONS(4428), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4454), 1, + anon_sym_EQ, + ACTIONS(3972), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4452), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158573,61 +160143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49794] = 22, + [50697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1495), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4392), 1, - anon_sym_AMP_AMP, - ACTIONS(4394), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, - anon_sym_DOT_DOT, - ACTIONS(4424), 1, - anon_sym_EQ, - ACTIONS(3878), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4382), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4384), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4398), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4422), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1493), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158638,15 +160184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49881] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1829), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(919), 15, + ACTIONS(981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158662,7 +160215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(921), 23, + ACTIONS(983), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158686,15 +160239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49934] = 5, + [50803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 15, + ACTIONS(1551), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158710,7 +160263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1469), 23, + ACTIONS(1549), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158734,61 +160287,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49987] = 22, + [50856] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4392), 1, + ACTIONS(4426), 1, anon_sym_AMP_AMP, - ACTIONS(4394), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4408), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, anon_sym_DOT_DOT, - ACTIONS(4424), 1, + ACTIONS(4454), 1, anon_sym_EQ, - ACTIONS(3958), 2, + ACTIONS(3756), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4410), 2, + ACTIONS(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4452), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158799,15 +160352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50074] = 5, + [50943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1832), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3980), 15, + ACTIONS(4032), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158823,7 +160376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3978), 23, + ACTIONS(4030), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158847,85 +160400,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50127] = 5, + [50996] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1833), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4000), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4398), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_DOT, + ACTIONS(4420), 1, anon_sym_CARET, + ACTIONS(4422), 1, anon_sym_AMP, + ACTIONS(4424), 1, anon_sym_PIPE, + ACTIONS(4426), 1, + anon_sym_AMP_AMP, + ACTIONS(4428), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, + anon_sym_DOT_DOT, + ACTIONS(4454), 1, + anon_sym_EQ, + ACTIONS(3924), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3998), 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(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50180] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1834), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, - anon_sym_PLUS, + ACTIONS(4418), 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(4002), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4432), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4452), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158936,22 +160465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50233] = 5, + [51083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(1037), 15, + ACTIONS(4036), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158967,7 +160489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1039), 23, + ACTIONS(4034), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158991,37 +160513,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50286] = 5, + [51136] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1041), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4398), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_DOT, + ACTIONS(4420), 1, anon_sym_CARET, + ACTIONS(4422), 1, anon_sym_AMP, + ACTIONS(4424), 1, anon_sym_PIPE, + ACTIONS(4426), 1, + anon_sym_AMP_AMP, + ACTIONS(4428), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, + anon_sym_DOT_DOT, + ACTIONS(4416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1043), 23, + ACTIONS(4440), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4418), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4432), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4148), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159032,22 +160577,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, - [50339] = 5, + [51221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1837), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(4024), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159063,7 +160601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4022), 23, + ACTIONS(1051), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159087,15 +160625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50392] = 5, + [51274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 15, + ACTIONS(1053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159111,7 +160649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3802), 23, + ACTIONS(1055), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159135,85 +160673,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50445] = 5, + [51327] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3918), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_EQ, + ACTIONS(4398), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_DOT, + ACTIONS(4420), 1, anon_sym_CARET, + ACTIONS(4422), 1, anon_sym_AMP, + ACTIONS(4424), 1, anon_sym_PIPE, + ACTIONS(4426), 1, + anon_sym_AMP_AMP, + ACTIONS(4428), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4438), 1, + anon_sym_DOT_DOT, + ACTIONS(4416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3916), 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(4440), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50498] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1840), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, + ACTIONS(4418), 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(1451), 23, + ACTIONS(4432), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4159), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159224,22 +160737,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, - [50551] = 5, + [51412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1841), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4030), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159255,7 +160761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4028), 23, + ACTIONS(3986), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159279,15 +160785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50604] = 5, + [51465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4034), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159303,7 +160809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4032), 23, + ACTIONS(3838), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159327,62 +160833,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50657] = 23, + [51518] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4430), 1, + ACTIONS(4456), 1, anon_sym_RPAREN, - ACTIONS(4432), 1, + ACTIONS(4458), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159393,15 +160899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50746] = 5, + [51607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1844), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159417,7 +160923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 23, + ACTIONS(3994), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159441,62 +160947,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50799] = 23, + [51660] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, + ACTIONS(295), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159507,15 +161013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50888] = 5, + [51749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159531,7 +161037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 23, + ACTIONS(3870), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159555,15 +161061,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50941] = 5, + [51802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1847), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(4016), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4014), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51855] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159579,7 +161133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 23, + ACTIONS(4018), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159603,61 +161157,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50994] = 22, + [51908] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4388), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4410), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4460), 1, + anon_sym_LBRACE, + STATE(1460), 1, + sym_match_block, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4412), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4434), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1848), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159668,62 +161223,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51081] = 23, + [51997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4046), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, - anon_sym_EQ, - ACTIONS(4404), 1, - anon_sym_DOT_DOT, - ACTIONS(4436), 1, - anon_sym_LBRACE, - STATE(1493), 1, - sym_match_block, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4044), 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(1849), 2, + anon_sym_as, + [52050] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4040), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4352), 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(4038), 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, @@ -159734,21 +161312,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51170] = 8, + anon_sym_EQ_EQ, + 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, + [52103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, - anon_sym_LBRACK, - ACTIONS(4366), 1, - anon_sym_QMARK, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1850), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 14, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159762,10 +161341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4040), 21, + ACTIONS(1483), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -159785,61 +161367,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51229] = 22, + [52156] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4438), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1851), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159850,62 +161433,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51316] = 23, + [52245] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1481), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1852), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1483), 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, @@ -159916,62 +161474,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51405] = 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, + [52298] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1291), 1, + ACTIONS(1301), 1, anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, + ACTIONS(4358), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159982,46 +161547,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51494] = 17, + [52387] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4272), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(4274), 1, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, + ACTIONS(4312), 1, anon_sym_STAR, - ACTIONS(4284), 1, + ACTIONS(4318), 1, anon_sym_COLON_COLON, - ACTIONS(4288), 1, + ACTIONS(4322), 1, sym_metavariable, - ACTIONS(4440), 1, + ACTIONS(4462), 1, anon_sym_RBRACE, - STATE(2502), 1, + STATE(2541), 1, sym_scoped_identifier, - STATE(3365), 1, + STATE(3187), 1, sym__use_clause, - STATE(3461), 1, + STATE(3525), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3593), 1, sym_generic_type_with_turbofish, - STATE(1854), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4286), 3, + ACTIONS(4320), 3, sym_self, sym_super, sym_crate, - STATE(2952), 4, + STATE(3072), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4280), 20, + ACTIONS(4314), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160042,80 +161607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [51571] = 22, + [52464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4442), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1855), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51658] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1856), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3960), 15, + ACTIONS(4050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160131,7 +161631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3958), 23, + ACTIONS(4048), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160155,62 +161655,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51711] = 23, + [52517] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4444), 1, - anon_sym_SEMI, - ACTIONS(4446), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + ACTIONS(4464), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160221,15 +161720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51800] = 5, + [52604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160245,7 +161744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1451), 23, + ACTIONS(3910), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160269,62 +161768,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51853] = 23, + [52657] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4054), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1859), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4052), 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, @@ -160335,62 +161809,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51942] = 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, + [52710] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1053), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4466), 1, + anon_sym_SEMI, + ACTIONS(4468), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160401,62 +161882,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52031] = 23, + [52799] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4448), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4450), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160467,62 +161948,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52120] = 23, + [52888] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(1329), 1, + anon_sym_RPAREN, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4452), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4358), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160533,62 +162014,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52209] = 23, + [52977] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4454), 1, + ACTIONS(4470), 1, anon_sym_SEMI, - ACTIONS(4456), 1, + ACTIONS(4472), 1, anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160599,62 +162080,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52298] = 23, + [53066] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4458), 1, + ACTIONS(4474), 1, anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160665,62 +162146,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52387] = 23, + [53155] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, - anon_sym_SEMI, - ACTIONS(4462), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4358), 1, + anon_sym_COMMA, + ACTIONS(4476), 1, + anon_sym_RPAREN, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160731,62 +162212,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52476] = 23, + [53244] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4478), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4480), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160797,122 +162278,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52565] = 23, + [53333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1061), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, - anon_sym_AMP, - ACTIONS(4098), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4104), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(3832), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52654] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(403), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1868), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(401), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3828), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160923,62 +162319,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52735] = 21, + anon_sym_as, + [53386] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4482), 1, + anon_sym_SEMI, + ACTIONS(4484), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160989,62 +162392,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52820] = 23, + [53475] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4464), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161055,60 +162458,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52909] = 21, + [53564] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3794), 1, - anon_sym_QMARK, - ACTIONS(3796), 1, - anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4340), 1, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + ACTIONS(4486), 1, + anon_sym_RBRACE, + STATE(2541), 1, + sym_scoped_identifier, + STATE(3187), 1, + sym__use_clause, + STATE(3525), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type_with_turbofish, + STATE(1890), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(3072), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [53641] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1891), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3918), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_DOT_DOT, - ACTIONS(4336), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1871), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4338), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4356), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4126), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3916), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161119,60 +162559,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52994] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53694] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(291), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4336), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4362), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4157), 12, + ACTIONS(4136), 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, + [53783] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1893), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3930), 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(3928), 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, @@ -161183,62 +162673,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53079] = 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, + [53836] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + ACTIONS(4488), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161249,62 +162745,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53168] = 23, + [53923] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(377), 2, anon_sym_EQ, - ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(375), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161315,62 +162805,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53257] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54004] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_RPAREN, - ACTIONS(4090), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161381,122 +162871,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53346] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - ACTIONS(4468), 1, - anon_sym_RBRACE, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1876), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [53423] = 23, + [54089] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4388), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4410), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4490), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_match_block, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4412), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161507,62 +162937,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53512] = 23, + [54178] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4150), 1, + anon_sym_EQ, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4470), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4148), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161573,62 +163001,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53601] = 23, + [54263] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4161), 1, + anon_sym_EQ, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4394), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4396), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4159), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161639,62 +163065,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53690] = 23, + [54348] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4340), 1, - anon_sym_CARET, - ACTIONS(4342), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4344), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4346), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4354), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4404), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4472), 1, - anon_sym_LBRACE, - STATE(1791), 1, - sym_match_block, - ACTIONS(4336), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4350), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4358), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4406), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4338), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4356), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4352), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161705,62 +163131,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53779] = 23, + [54437] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + STATE(1901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3938), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1881), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4092), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4102), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4142), 10, + anon_sym_DOT_DOT, + ACTIONS(3936), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161771,15 +163175,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53868] = 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, + [54496] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1882), 2, + ACTIONS(4398), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_DOT, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3976), 15, + ACTIONS(4062), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161793,13 +163210,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(3974), 23, + ACTIONS(4060), 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, @@ -161819,62 +163233,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53921] = 23, + [54555] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1191), 1, - anon_sym_RPAREN, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + ACTIONS(4492), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161885,62 +163298,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54010] = 23, + [54642] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, + ACTIONS(307), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161951,103 +163364,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54099] = 23, + [54731] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4474), 1, + ACTIONS(4494), 1, anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54188] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1886), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3844), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3842), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162058,69 +163430,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, - [54241] = 23, + [54820] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + ACTIONS(4496), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162131,62 +163495,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54330] = 23, + [54907] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, + ACTIONS(311), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162197,62 +163561,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54419] = 23, + [54996] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4374), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4380), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4382), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4388), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4410), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4498), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_match_block, + ACTIONS(4370), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4384), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4392), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4412), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4372), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4390), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4386), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162263,62 +163627,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54508] = 23, + [55085] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4476), 1, - anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162329,62 +163693,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54597] = 23, + [55174] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(1299), 1, + anon_sym_RPAREN, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4358), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1891), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162395,62 +163759,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54686] = 23, + [55263] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, + ACTIONS(315), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162461,62 +163825,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54775] = 23, + [55352] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + ACTIONS(4500), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162527,62 +163890,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54864] = 23, + [55439] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4478), 1, + ACTIONS(4502), 1, anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162593,62 +163956,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54953] = 23, + [55528] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, + ACTIONS(319), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162659,62 +164022,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55042] = 23, + [55617] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, + ACTIONS(119), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162725,62 +164088,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55131] = 23, + [55706] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, + ACTIONS(321), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162791,62 +164154,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55220] = 23, + [55795] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4480), 1, + ACTIONS(4504), 1, anon_sym_RBRACE, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162857,61 +164220,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55309] = 22, + [55884] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(325), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4482), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1899), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162922,61 +164286,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55396] = 22, + [55973] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4484), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1900), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162987,61 +164352,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55483] = 22, + [56062] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4090), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4486), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1901), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163052,85 +164418,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55570] = 5, + [56151] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1902), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3984), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4506), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3982), 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(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55623] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1903), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3992), 15, - anon_sym_PLUS, + ACTIONS(4122), 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(3990), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163141,140 +164484,128 @@ 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, - [55676] = 5, + [56240] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1904), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3996), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1073), 1, + anon_sym_RPAREN, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4358), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3994), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_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(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55729] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1905), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, - anon_sym_PLUS, + ACTIONS(4122), 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(3874), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_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(4140), 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, - [55782] = 5, + ACTIONS(4136), 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, + [56329] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1906), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4012), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4010), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163285,67 +164616,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, - [55835] = 21, + [56418] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4200), 1, - anon_sym_CARET, - ACTIONS(4202), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4208), 1, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4214), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4196), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4218), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4222), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1907), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4198), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4488), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4216), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4212), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163356,37 +164682,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55920] = 5, + [56507] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1908), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4016), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4014), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163397,44 +164748,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, - [55973] = 5, + [56596] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1909), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4020), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4508), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4018), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1926), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163445,69 +164814,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, - [56026] = 23, + [56685] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, + ACTIONS(4510), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4512), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163518,15 +164880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56115] = 5, + [56774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1911), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(3794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163542,7 +164904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3878), 23, + ACTIONS(3792), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163566,62 +164928,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56168] = 23, + [56827] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4228), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4230), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4236), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4242), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4490), 1, - anon_sym_SEMI, - ACTIONS(4492), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4238), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4246), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1912), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4226), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4514), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4244), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4240), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163632,37 +164992,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56257] = 5, + [56912] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1913), 2, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4516), 1, + anon_sym_RBRACE, + ACTIONS(4518), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4142), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, + ACTIONS(4122), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 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, + [57001] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(3844), 1, + anon_sym_LBRACK, + ACTIONS(3848), 1, + anon_sym_QMARK, + ACTIONS(3850), 1, + anon_sym_DOT, + ACTIONS(3852), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4138), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_DOT_DOT, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1931), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4122), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163673,69 +165124,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, - [56310] = 23, + [57090] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4494), 1, - anon_sym_RBRACE, - ACTIONS(4496), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4520), 1, + anon_sym_SEMI, + ACTIONS(4522), 1, + anon_sym_else, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1914), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163746,62 +165190,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56399] = 23, + [57179] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4498), 1, + ACTIONS(4350), 1, anon_sym_SEMI, - ACTIONS(4500), 1, - anon_sym_else, - ACTIONS(4090), 2, + ACTIONS(4524), 1, + anon_sym_RBRACE, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163812,15 +165256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56488] = 5, + [57268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1916), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3758), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163836,7 +165280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 23, + ACTIONS(3756), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163860,60 +165304,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56541] = 22, + [57321] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4502), 1, + ACTIONS(4526), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163924,60 +165368,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56627] = 22, + [57407] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4504), 1, + ACTIONS(4528), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1918), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163988,118 +165432,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56713] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3760), 1, - sym__use_clause, - STATE(1919), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [56787] = 22, + [57493] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4506), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1920), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164110,60 +165496,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56873] = 22, + [57579] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4508), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4530), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1921), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164174,60 +165560,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56959] = 22, + [57665] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4510), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4532), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1922), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164238,59 +165624,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57045] = 21, + [57751] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_as, - ACTIONS(4386), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4454), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4534), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4414), 2, + ACTIONS(4442), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(4514), 2, + ACTIONS(4536), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1923), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4452), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164301,60 +165687,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57129] = 22, + [57835] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2541), 1, + sym_scoped_identifier, + STATE(3525), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type_with_turbofish, + STATE(3599), 1, + sym__use_clause, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(3072), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [57909] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4516), 1, + ACTIONS(4538), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1924), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164365,60 +165809,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57215] = 22, + [57995] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4518), 1, + ACTIONS(4540), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1925), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164429,60 +165873,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57301] = 22, + [58081] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4520), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4542), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164493,60 +165937,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57387] = 22, + [58167] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4364), 1, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2541), 1, + sym_scoped_identifier, + STATE(3525), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type_with_turbofish, + STATE(3729), 1, + sym__use_clause, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(3072), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58241] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4522), 1, - anon_sym_AMP_AMP, - ACTIONS(4382), 2, + ACTIONS(4544), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4514), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1927), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164557,60 +166059,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57473] = 22, + [58327] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4524), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4546), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1928), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164621,60 +166123,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57559] = 22, + [58413] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4366), 1, + anon_sym_EQ_GT, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4454), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4534), 1, anon_sym_DOT_DOT, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4548), 1, + anon_sym_AMP_AMP, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4536), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1929), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4452), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164685,118 +166187,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57645] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3482), 1, - sym__use_clause, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1930), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [57719] = 22, + [58499] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4526), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4550), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164807,60 +166251,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57805] = 22, + [58585] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4528), 1, + ACTIONS(4552), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1932), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164871,60 +166315,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57891] = 22, + [58671] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4530), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4554), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1933), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164935,59 +166379,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57977] = 21, + [58757] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4364), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(4366), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(4368), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(4370), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4386), 1, - anon_sym_CARET, - ACTIONS(4388), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4390), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4394), 1, + ACTIONS(4132), 1, + anon_sym_AMP_AMP, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4424), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4512), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 2, + ACTIONS(4556), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4396), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4400), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4488), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4514), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4384), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4398), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4422), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164998,60 +166443,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58061] = 22, + [58843] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(4398), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(4402), 1, anon_sym_DOT, - ACTIONS(3924), 1, - anon_sym_as, - ACTIONS(4094), 1, + ACTIONS(4420), 1, anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4422), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4106), 1, - anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4428), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4436), 1, + anon_sym_as, + ACTIONS(4454), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4534), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4430), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4434), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4514), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4536), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1935), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4418), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4452), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165062,118 +166506,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58147] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3584), 1, - sym__use_clause, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1936), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [58221] = 22, + [58927] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4534), 1, + ACTIONS(4358), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165184,60 +166570,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58307] = 22, + [59013] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4536), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4558), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165248,60 +166634,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58393] = 22, + [59099] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4538), 1, + ACTIONS(4560), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1939), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165312,60 +166698,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58479] = 22, + [59185] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2541), 1, + sym_scoped_identifier, + STATE(3187), 1, + sym__use_clause, + STATE(3525), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type_with_turbofish, + STATE(1957), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(3072), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [59259] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4540), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4562), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165376,60 +166820,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58565] = 22, + [59345] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4542), 1, + ACTIONS(4564), 1, anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165440,60 +166884,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58651] = 22, + [59431] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4544), 1, - anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4566), 1, + anon_sym_SEMI, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1942), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165504,60 +166948,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58737] = 22, + [59517] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2541), 1, + sym_scoped_identifier, + STATE(3525), 1, + sym_bracketed_type, + STATE(3554), 1, + sym__use_clause, + STATE(3593), 1, + sym_generic_type_with_turbofish, + STATE(1961), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(3072), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [59591] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2541), 1, + sym_scoped_identifier, + STATE(3500), 1, + sym__use_clause, + STATE(3525), 1, + sym_bracketed_type, + STATE(3593), 1, + sym_generic_type_with_turbofish, + STATE(1962), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(3072), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [59665] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4546), 1, + ACTIONS(4568), 1, anon_sym_COMMA, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165568,60 +167128,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58823] = 22, + [59751] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4548), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4570), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165632,60 +167192,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58909] = 22, + [59837] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4572), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1945), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165696,60 +167256,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58995] = 22, + [59923] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4550), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4574), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1946), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165760,60 +167320,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59081] = 22, + [60009] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4552), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4576), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165824,60 +167384,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59167] = 22, + [60095] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4554), 1, - anon_sym_RBRACK, - ACTIONS(4090), 2, + ACTIONS(4578), 1, + anon_sym_COMMA, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1948), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165888,118 +167448,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59253] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3365), 1, - sym__use_clause, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(1949), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [59327] = 22, + [60181] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4556), 1, - anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4580), 1, + anon_sym_RBRACK, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1950), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166010,60 +167512,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59413] = 22, + [60267] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4558), 1, + ACTIONS(4582), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166074,60 +167576,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59499] = 22, + [60353] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, + ACTIONS(3844), 1, anon_sym_LBRACK, - ACTIONS(3794), 1, + ACTIONS(3848), 1, anon_sym_QMARK, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_DOT, - ACTIONS(3924), 1, + ACTIONS(3852), 1, anon_sym_as, - ACTIONS(4094), 1, - anon_sym_CARET, - ACTIONS(4096), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4098), 1, + ACTIONS(4128), 1, + anon_sym_CARET, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4106), 1, + ACTIONS(4132), 1, anon_sym_AMP_AMP, - ACTIONS(4110), 1, + ACTIONS(4134), 1, anon_sym_PIPE_PIPE, - ACTIONS(4144), 1, + ACTIONS(4138), 1, anon_sym_EQ, - ACTIONS(4228), 1, + ACTIONS(4216), 1, anon_sym_DOT_DOT, - ACTIONS(4560), 1, + ACTIONS(4584), 1, anon_sym_SEMI, - ACTIONS(4090), 2, + ACTIONS(4120), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4100), 2, + ACTIONS(4126), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4104), 2, + ACTIONS(4142), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4230), 2, + ACTIONS(4218), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4092), 3, + ACTIONS(4122), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4102), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4142), 10, + ACTIONS(4136), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166138,105 +167640,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59585] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4272), 1, - sym_identifier, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4278), 1, - anon_sym_STAR, - ACTIONS(4284), 1, - anon_sym_COLON_COLON, - ACTIONS(4288), 1, - sym_metavariable, - STATE(2502), 1, - sym_scoped_identifier, - STATE(3461), 1, - sym_bracketed_type, - STATE(3618), 1, - sym_generic_type_with_turbofish, - STATE(3722), 1, - sym__use_clause, - STATE(1953), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4286), 3, - sym_self, - sym_super, - sym_crate, - STATE(2952), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4280), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [59659] = 17, + [60439] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4562), 1, + ACTIONS(4586), 1, sym_identifier, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - STATE(3144), 1, + STATE(3162), 1, sym_scoped_type_identifier, - STATE(3422), 1, + STATE(3278), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1954), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166254,47 +167698,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59734] = 17, + [60514] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - ACTIONS(4574), 1, + ACTIONS(4598), 1, sym_identifier, - STATE(3151), 1, + STATE(3160), 1, sym_scoped_type_identifier, - STATE(3438), 1, + STATE(3464), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1955), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166312,47 +167756,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59809] = 17, + [60589] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - ACTIONS(4576), 1, + ACTIONS(4600), 1, sym_identifier, - STATE(3045), 1, + STATE(3116), 1, sym_scoped_type_identifier, - STATE(3264), 1, + STATE(3415), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1956), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166370,47 +167814,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59884] = 17, + [60664] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - ACTIONS(4578), 1, + ACTIONS(4602), 1, sym_identifier, - STATE(3013), 1, + STATE(3179), 1, sym_scoped_type_identifier, - STATE(3172), 1, + STATE(3364), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1957), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166428,47 +167872,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59959] = 17, + [60739] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - ACTIONS(4580), 1, + ACTIONS(4604), 1, sym_identifier, - STATE(3147), 1, + STATE(3169), 1, sym_scoped_type_identifier, - STATE(3430), 1, + STATE(3471), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1958), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166486,47 +167930,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60034] = 17, + [60814] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - ACTIONS(4582), 1, + ACTIONS(4606), 1, sym_identifier, - STATE(2947), 1, + STATE(3056), 1, sym_scoped_type_identifier, - STATE(3185), 1, + STATE(3192), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1959), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166544,47 +167988,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60109] = 17, + [60889] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - ACTIONS(4584), 1, + ACTIONS(4608), 1, sym_identifier, - STATE(2867), 1, + STATE(2876), 1, sym_scoped_type_identifier, - STATE(3389), 1, + STATE(3455), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1960), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166602,47 +168046,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60184] = 17, + [60964] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3962), 1, anon_sym_where, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, + ACTIONS(4596), 1, sym_metavariable, - ACTIONS(4586), 1, + ACTIONS(4610), 1, sym_identifier, - STATE(3148), 1, + STATE(3158), 1, sym_scoped_type_identifier, - STATE(3432), 1, + STATE(3462), 1, sym_generic_type, - STATE(3477), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3604), 1, + STATE(3641), 1, sym_generic_type_with_turbofish, - STATE(3631), 1, + STATE(3667), 1, sym_bracketed_type, - STATE(1961), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 3, + ACTIONS(3960), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4568), 3, + ACTIONS(4592), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4570), 3, + ACTIONS(4594), 3, sym_self, sym_super, sym_crate, - ACTIONS(4564), 17, + ACTIONS(4588), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166660,19 +168104,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60259] = 5, + [61039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1962), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(4590), 3, + ACTIONS(4614), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4588), 29, + ACTIONS(4612), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166702,19 +168146,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60306] = 5, + [61086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1963), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4594), 3, + ACTIONS(4618), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4592), 29, + ACTIONS(4616), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166744,19 +168188,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60353] = 5, + [61133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4598), 3, + ACTIONS(4622), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4596), 29, + ACTIONS(4620), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166786,35 +168230,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60400] = 13, + [61180] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3554), 1, + STATE(3628), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1965), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166835,35 +168279,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60462] = 13, + [61242] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3560), 1, + STATE(3600), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1966), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166884,35 +168328,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60524] = 13, + [61304] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3695), 1, - sym_bracketed_type, - STATE(3709), 1, + STATE(3617), 1, sym_attribute, - STATE(3765), 1, + STATE(3731), 1, + sym_bracketed_type, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1967), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166933,35 +168377,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60586] = 13, + [61366] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3619), 1, + STATE(3528), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1968), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -166982,35 +168426,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60648] = 13, + [61428] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3468), 1, + STATE(3537), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1969), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167031,35 +168475,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60710] = 13, + [61490] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3492), 1, + STATE(3686), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1970), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167080,35 +168524,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60772] = 13, + [61552] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3512), 1, + STATE(3655), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1971), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167129,35 +168573,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60834] = 13, + [61614] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3558), 1, + STATE(3540), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1972), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167178,35 +168622,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60896] = 13, + [61676] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, + ACTIONS(2526), 1, anon_sym_COLON_COLON, - ACTIONS(4600), 1, + ACTIONS(4624), 1, sym_identifier, - ACTIONS(4606), 1, + ACTIONS(4630), 1, sym_metavariable, - STATE(2348), 1, + STATE(2339), 1, sym_scoped_identifier, - STATE(3647), 1, + STATE(3583), 1, sym_attribute, - STATE(3695), 1, + STATE(3731), 1, sym_bracketed_type, - STATE(3765), 1, + STATE(3800), 1, sym_generic_type_with_turbofish, - STATE(1973), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(4604), 3, + ACTIONS(4628), 3, sym_self, sym_super, sym_crate, - ACTIONS(4602), 20, + ACTIONS(4626), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167227,33 +168671,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60958] = 12, + [61738] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4608), 1, + ACTIONS(4632), 1, sym_identifier, - ACTIONS(4612), 1, + ACTIONS(4636), 1, anon_sym_COLON_COLON, - ACTIONS(4616), 1, + ACTIONS(4640), 1, sym_metavariable, - STATE(3364), 1, + STATE(3264), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3525), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3593), 1, sym_generic_type_with_turbofish, - STATE(1974), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(4614), 3, + ACTIONS(4638), 3, sym_self, sym_super, sym_crate, - ACTIONS(4610), 20, + ACTIONS(4634), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167274,33 +168718,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61017] = 12, + [61797] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, + ACTIONS(4636), 1, anon_sym_COLON_COLON, - ACTIONS(4618), 1, + ACTIONS(4642), 1, sym_identifier, - ACTIONS(4624), 1, + ACTIONS(4648), 1, sym_metavariable, - STATE(3189), 1, + STATE(3211), 1, sym_scoped_identifier, - STATE(3461), 1, + STATE(3525), 1, sym_bracketed_type, - STATE(3618), 1, + STATE(3593), 1, sym_generic_type_with_turbofish, - STATE(1975), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(4622), 3, + ACTIONS(4646), 3, sym_self, sym_super, sym_crate, - ACTIONS(4620), 20, + ACTIONS(4644), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167321,17 +168765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61076] = 5, + [61856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, + ACTIONS(981), 1, anon_sym_DOT_DOT, - STATE(1976), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 20, + ACTIONS(983), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167352,17 +168796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61112] = 5, + [61892] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, + ACTIONS(975), 1, anon_sym_DOT_DOT, - STATE(1977), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 20, + ACTIONS(977), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167383,20 +168827,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61148] = 6, + [61928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3485), 1, + ACTIONS(3503), 1, anon_sym_COLON, - ACTIONS(3489), 2, + ACTIONS(3507), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1978), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 17, + ACTIONS(3501), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167414,20 +168858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61185] = 6, + [61965] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 1, + ACTIONS(3515), 1, anon_sym_COLON, - ACTIONS(3508), 2, + ACTIONS(3519), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1979), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 17, + ACTIONS(3513), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167445,51 +168889,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61222] = 6, + [62002] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, + ACTIONS(4652), 1, + anon_sym_LPAREN, + ACTIONS(4654), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, anon_sym_COLON, - ACTIONS(3516), 2, + ACTIONS(4658), 1, anon_sym_BANG, + ACTIONS(4660), 1, + anon_sym_AT, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(4666), 1, anon_sym_COLON_COLON, - STATE(1980), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + STATE(2020), 1, + sym_type_arguments, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 17, + ACTIONS(4650), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [61259] = 6, + anon_sym_in, + [62055] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(3536), 1, anon_sym_COLON, - ACTIONS(3500), 2, + ACTIONS(3540), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1981), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 17, + ACTIONS(3534), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167507,66 +168959,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61296] = 14, + [62092] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4630), 1, - anon_sym_LBRACE, - ACTIONS(4632), 1, + ACTIONS(3546), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(3550), 2, anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4642), 1, anon_sym_COLON_COLON, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1982), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 9, + ACTIONS(3544), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [61349] = 10, + anon_sym_LT2, + [62129] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2091), 1, sym_parameters, - STATE(1983), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 13, + ACTIONS(3428), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167580,46 +169024,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61393] = 5, + [62173] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3680), 1, + ACTIONS(3505), 2, anon_sym_COLON, - STATE(1984), 2, + anon_sym_DOT_DOT, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 18, + ACTIONS(3501), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3507), 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, - [61427] = 5, + [62209] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3712), 1, + ACTIONS(3720), 1, anon_sym_COLON, - STATE(1985), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 18, + ACTIONS(3718), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167638,17 +169083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61461] = 5, + [62243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3694), 1, + ACTIONS(3710), 1, anon_sym_COLON, - STATE(1986), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 18, + ACTIONS(3708), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167667,22 +169112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61495] = 6, + [62277] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, + ACTIONS(3548), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1987), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 3, + ACTIONS(3544), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3500), 14, + ACTIONS(3550), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167696,53 +169141,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_else, - anon_sym_in, - [61531] = 6, + anon_sym_in, + [62313] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + STATE(2020), 1, + sym_type_arguments, + STATE(2091), 1, + sym_parameters, + STATE(2006), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3440), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [62357] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(3696), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1988), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3516), 14, + ACTIONS(3694), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [61567] = 6, + [62391] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1989), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, + ACTIONS(3534), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3508), 14, + ACTIONS(3540), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167757,57 +169235,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61603] = 6, + [62427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(3728), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1990), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3489), 14, + ACTIONS(3726), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [61639] = 10, + [62461] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2091), 1, sym_parameters, - STATE(1991), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 13, + ACTIONS(3458), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167821,118 +169298,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61683] = 5, + [62505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3704), 1, + ACTIONS(3517), 2, anon_sym_COLON, - STATE(1992), 2, + anon_sym_DOT_DOT, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 18, + ACTIONS(3513), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3519), 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, - [61717] = 10, + [62541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(1993), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 13, + ACTIONS(3544), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [61761] = 14, + anon_sym_LT2, + [62572] = 14, ACTIONS(37), 1, anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1209), 1, + ACTIONS(1127), 1, anon_sym_DASH, - ACTIONS(1259), 1, + ACTIONS(1177), 1, aux_sym_string_literal_token1, - ACTIONS(1269), 1, + ACTIONS(1187), 1, sym__raw_string_literal_start, - ACTIONS(1603), 1, + ACTIONS(1617), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, + ACTIONS(4674), 1, sym_identifier, - STATE(3732), 1, + STATE(3768), 1, sym_label, - ACTIONS(1261), 2, + ACTIONS(1179), 2, anon_sym_true, anon_sym_false, - STATE(1994), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(1629), 3, + ACTIONS(1643), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(2886), 3, + STATE(2917), 3, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - STATE(3177), 3, + STATE(3285), 3, sym_block, sym__literal, sym_negative_literal, - [61812] = 5, + [62623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1995), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 16, + ACTIONS(3540), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167949,18 +169420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61845] = 5, + [62656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(3548), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1996), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 16, + ACTIONS(3550), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -167977,18 +169448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61878] = 5, + [62689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(3505), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1997), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 16, + ACTIONS(3507), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -168005,52 +169476,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61911] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1998), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3483), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - anon_sym_LT2, - [61942] = 9, + [62722] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2091), 1, sym_parameters, - STATE(1999), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 13, + ACTIONS(3469), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168064,18 +169508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [61983] = 5, + [62763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, + ACTIONS(3517), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2000), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 16, + ACTIONS(3519), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -168092,91 +169536,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62016] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4664), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2001), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 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, - [62060] = 19, + [62796] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, + ACTIONS(4680), 1, anon_sym_const, - ACTIONS(4670), 1, + ACTIONS(4682), 1, anon_sym_enum, - ACTIONS(4672), 1, + ACTIONS(4684), 1, anon_sym_fn, - ACTIONS(4674), 1, + ACTIONS(4686), 1, anon_sym_mod, - ACTIONS(4676), 1, + ACTIONS(4688), 1, anon_sym_static, - ACTIONS(4678), 1, + ACTIONS(4690), 1, anon_sym_struct, - ACTIONS(4680), 1, + ACTIONS(4692), 1, anon_sym_trait, - ACTIONS(4682), 1, + ACTIONS(4694), 1, anon_sym_type, - ACTIONS(4684), 1, + ACTIONS(4696), 1, anon_sym_union, - ACTIONS(4686), 1, + ACTIONS(4698), 1, anon_sym_unsafe, - ACTIONS(4688), 1, + ACTIONS(4700), 1, anon_sym_use, - ACTIONS(4690), 1, + ACTIONS(4702), 1, anon_sym_extern, - STATE(2250), 1, + STATE(2245), 1, sym_extern_modifier, - STATE(2278), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(3485), 1, + STATE(3556), 1, sym_function_modifiers, - ACTIONS(4666), 2, + ACTIONS(4678), 2, anon_sym_async, anon_sym_default, - STATE(2002), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - [62120] = 5, + [62856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3618), 1, + ACTIONS(3646), 1, anon_sym_COLON, - STATE(2003), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3616), 16, + ACTIONS(3644), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168193,92 +169604,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62152] = 12, + [62888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, + ACTIONS(3634), 1, anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2004), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(3632), 16, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62198] = 19, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [62920] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4694), 1, + ACTIONS(4704), 1, anon_sym_const, - ACTIONS(4696), 1, + ACTIONS(4706), 1, anon_sym_enum, - ACTIONS(4698), 1, + ACTIONS(4708), 1, anon_sym_fn, - ACTIONS(4700), 1, + ACTIONS(4710), 1, anon_sym_mod, - ACTIONS(4702), 1, + ACTIONS(4712), 1, anon_sym_static, - ACTIONS(4704), 1, + ACTIONS(4714), 1, anon_sym_struct, - ACTIONS(4706), 1, + ACTIONS(4716), 1, anon_sym_trait, - ACTIONS(4708), 1, + ACTIONS(4718), 1, anon_sym_type, - ACTIONS(4710), 1, + ACTIONS(4720), 1, anon_sym_union, - ACTIONS(4712), 1, + ACTIONS(4722), 1, anon_sym_unsafe, - ACTIONS(4714), 1, + ACTIONS(4724), 1, anon_sym_use, - ACTIONS(4716), 1, + ACTIONS(4726), 1, anon_sym_extern, - STATE(2261), 1, + STATE(2230), 1, sym_extern_modifier, - STATE(2278), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(3754), 1, + STATE(3790), 1, sym_function_modifiers, - ACTIONS(4666), 2, + ACTIONS(4678), 2, anon_sym_async, anon_sym_default, - STATE(2005), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - [62258] = 5, + [62980] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, - anon_sym_COLON, - STATE(2006), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2025), 1, + sym_type_arguments, + STATE(2092), 1, + sym_parameters, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 16, + ACTIONS(3523), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168289,29 +169699,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, - [62290] = 8, + [63018] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2092), 1, sym_parameters, - STATE(2007), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 13, + ACTIONS(3527), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168325,17 +169732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62328] = 5, + [63056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3650), 1, anon_sym_COLON, - STATE(2008), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 16, + ACTIONS(3648), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168352,23 +169759,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62360] = 8, + [63088] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2092), 1, sym_parameters, - STATE(2009), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 13, + ACTIONS(3475), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168382,23 +169789,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62398] = 8, + [63126] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2092), 1, sym_parameters, - STATE(2010), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 13, + ACTIONS(3509), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168412,229 +169819,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [62436] = 8, + [63164] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4732), 1, + anon_sym_BANG, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2011), 2, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4728), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63210] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4732), 1, + anon_sym_BANG, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4740), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 13, + ACTIONS(4728), 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_SQUOTE, - anon_sym_where, anon_sym_else, - [62474] = 4, + anon_sym_in, + [63254] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3696), 16, + ACTIONS(3475), 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, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62503] = 5, + [63287] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4718), 1, + ACTIONS(3440), 1, + anon_sym_PLUS, + ACTIONS(4650), 1, + anon_sym_PIPE, + ACTIONS(4654), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4660), 1, + anon_sym_AT, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4744), 1, anon_sym_LPAREN, - STATE(2013), 2, + ACTIONS(4749), 1, + anon_sym_COLON_COLON, + STATE(2020), 1, + sym_type_arguments, + STATE(2091), 1, + sym_parameters, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4746), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(4150), 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, - [62534] = 17, + [63342] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3436), 1, - anon_sym_PLUS, - ACTIONS(4626), 1, + ACTIONS(4652), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(4751), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2032), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4650), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(4630), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [63383] = 16, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4654), 1, anon_sym_LBRACE, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4636), 1, + ACTIONS(4660), 1, anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4720), 1, + ACTIONS(4746), 1, + anon_sym_RBRACK, + ACTIONS(4753), 1, anon_sym_LPAREN, - ACTIONS(4725), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2091), 1, sym_parameters, - ACTIONS(4640), 2, + ACTIONS(3440), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4650), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4722), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2014), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - [62589] = 6, + [63436] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3534), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2015), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 14, + ACTIONS(3672), 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, - [62622] = 4, + [63465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + ACTIONS(3529), 1, + anon_sym_COLON, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3706), 16, + ACTIONS(3527), 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, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [62651] = 16, + [63498] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, + ACTIONS(4650), 1, anon_sym_PIPE, - ACTIONS(4630), 1, + ACTIONS(4654), 1, anon_sym_LBRACE, - ACTIONS(4632), 1, + ACTIONS(4656), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4636), 1, + ACTIONS(4660), 1, anon_sym_AT, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4729), 1, + ACTIONS(4757), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4759), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2091), 1, sym_parameters, - ACTIONS(4640), 2, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, + ACTIONS(3440), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [62704] = 4, + [63551] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + ACTIONS(3525), 1, + anon_sym_COLON, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(1043), 16, + ACTIONS(3523), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -168644,25 +170135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62733] = 6, + [63584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3528), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2019), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 14, + ACTIONS(1055), 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, @@ -168672,15 +170159,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62766] = 4, + anon_sym_in, + [63613] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4732), 1, + anon_sym_BANG, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4761), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4728), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63656] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 16, + ACTIONS(3722), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168692,24 +170212,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [62795] = 6, + [63685] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4763), 1, + anon_sym_LPAREN, + STATE(2041), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4152), 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, + [63716] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(4733), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - STATE(2021), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3509), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168724,15 +170270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62828] = 4, + [63749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2022), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 16, + ACTIONS(1051), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168749,15 +170295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62857] = 4, + [63778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2023), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3714), 16, + ACTIONS(3730), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168774,19 +170320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62886] = 6, + [63807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(4727), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - STATE(2024), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3509), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168801,15 +170347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62919] = 4, + [63840] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 16, + ACTIONS(3698), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168826,24 +170372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62948] = 6, + [63869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3524), 1, - anon_sym_COLON, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(2026), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 14, + ACTIONS(1549), 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, @@ -168853,15 +170396,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62981] = 4, + anon_sym_in, + [63898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2027), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 16, + ACTIONS(3712), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168878,84 +170422,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63010] = 11, + [63927] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2028), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(1493), 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, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63053] = 16, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [63956] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_LBRACE, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4636), 1, - anon_sym_AT, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4722), 1, - anon_sym_RBRACK, - ACTIONS(4737), 1, - anon_sym_LPAREN, - ACTIONS(4739), 1, + ACTIONS(3511), 1, + anon_sym_COLON, + ACTIONS(4767), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - ACTIONS(3436), 2, + STATE(2050), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3509), 14, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - ACTIONS(4626), 2, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2029), 2, - sym_line_comment, - sym_block_comment, - [63106] = 4, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [63989] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(1039), 16, + ACTIONS(3772), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168971,25 +170498,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63135] = 6, + [64017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - STATE(2031), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 14, + ACTIONS(3804), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -168999,46 +170522,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63168] = 10, + [64045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4743), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2032), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 9, + ACTIONS(3764), 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, - anon_sym_in, - [63209] = 4, + [64073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(3768), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169054,15 +170570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63237] = 4, + [64101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(3976), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169078,15 +170594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63265] = 4, + [64129] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3784), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169102,15 +170618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63293] = 4, + [64157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, + ACTIONS(3788), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169126,15 +170642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63321] = 4, + [64185] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3800), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169150,15 +170666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63349] = 4, + [64213] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(3898), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169174,65 +170690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63377] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2039), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4138), 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, - [63405] = 4, + [64241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4130), 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, - [63433] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4745), 1, + ACTIONS(4769), 1, anon_sym_COLON_COLON, - STATE(2041), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(4155), 14, + ACTIONS(4154), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169247,15 +170715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [63463] = 4, + [64271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(3858), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169271,15 +170739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63491] = 4, + [64299] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(4146), 15, + ACTIONS(4190), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169295,15 +170763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [63519] = 4, + [64327] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3934), 15, + ACTIONS(3509), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169319,15 +170787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63547] = 4, + [64355] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3938), 15, + ACTIONS(3862), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169343,15 +170811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63575] = 4, + [64383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3854), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169367,15 +170835,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63603] = 4, + [64411] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4728), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4732), 1, + anon_sym_BANG, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4771), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64455] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2067), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3866), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169391,15 +170891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63631] = 4, + [64483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 15, + ACTIONS(3796), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169415,47 +170915,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63659] = 12, + [64511] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2049), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63703] = 4, + ACTIONS(3890), 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, + [64539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 15, + ACTIONS(3776), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169471,15 +170963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63731] = 4, + [64567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3882), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169495,15 +170987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63759] = 4, + [64595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3780), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169519,12 +171011,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63787] = 4, + [64623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4163), 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, + [64651] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2074), 2, sym_line_comment, sym_block_comment, ACTIONS(3894), 15, @@ -169543,15 +171059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63815] = 4, + [64679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3523), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169567,17 +171083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63843] = 5, + [64707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(2055), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4155), 14, + ACTIONS(4186), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -169592,15 +171106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [63873] = 4, + sym_identifier, + [64735] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 15, + ACTIONS(3527), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169616,15 +171131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63901] = 4, + [64763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2057), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(4002), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169640,15 +171155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63929] = 4, + [64791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4006), 15, + ACTIONS(3886), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169664,15 +171179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63957] = 4, + [64819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + ACTIONS(3874), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169688,15 +171203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63985] = 4, + [64847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 15, + ACTIONS(3960), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169712,15 +171227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64013] = 4, + [64875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3846), 15, + ACTIONS(4022), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169736,15 +171251,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64041] = 4, + [64903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + ACTIONS(4112), 1, + anon_sym_COLON_COLON, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(4154), 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, + [64933] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2084), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3906), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169760,15 +171300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64069] = 4, + [64961] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3854), 15, + ACTIONS(3878), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169784,15 +171324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64097] = 4, + [64989] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 15, + ACTIONS(3760), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169808,15 +171348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64125] = 4, + [65017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3858), 15, + ACTIONS(3475), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169832,15 +171372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64153] = 4, + [65045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3902), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169856,113 +171396,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64181] = 4, + [65073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + ACTIONS(4773), 1, + anon_sym_DASH_GT, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(3652), 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, - [64209] = 4, + [65102] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4740), 1, + anon_sym_COLON_COLON, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(4728), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [64237] = 4, + anon_sym_in, + [65137] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + ACTIONS(4775), 1, + anon_sym_DASH_GT, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3658), 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, - [64265] = 4, + [65166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2070), 2, + ACTIONS(4777), 1, + anon_sym_DASH_GT, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 15, + ACTIONS(3664), 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, - [64293] = 5, + [65195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4749), 1, + ACTIONS(4779), 1, anon_sym_DASH_GT, - STATE(2071), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 13, + ACTIONS(3676), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169976,90 +171519,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64322] = 5, + [65224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_DOT_DOT, - STATE(2072), 2, + ACTIONS(4781), 1, + anon_sym_DASH_GT, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 13, + ACTIONS(3682), 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, - [64351] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4753), 1, - anon_sym_pat, - STATE(146), 1, - sym_fragment_specifier, - STATE(2073), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4751), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [64382] = 5, + [65253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, - STATE(2074), 2, + ACTIONS(4783), 1, + anon_sym_DASH_GT, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 13, + ACTIONS(3688), 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, - [64411] = 5, + [65282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, + ACTIONS(4787), 1, anon_sym_DOT_DOT, - STATE(2075), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 13, + ACTIONS(4785), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170073,116 +171591,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64440] = 5, + [65311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_DASH_GT, - STATE(2076), 2, + ACTIONS(1037), 1, + anon_sym_DOT_DOT, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 13, + ACTIONS(1039), 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, - [64469] = 5, + anon_sym_in, + [65340] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, - anon_sym_DASH_GT, - STATE(2077), 2, + ACTIONS(945), 1, + anon_sym_DOT_DOT, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 13, + ACTIONS(947), 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_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - anon_sym_else, - [64498] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4664), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2078), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 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, - [64533] = 5, + [65369] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4763), 1, - anon_sym_DASH_GT, - STATE(2079), 2, + ACTIONS(4791), 1, + anon_sym_pat, + STATE(159), 1, + sym_fragment_specifier, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - anon_sym_else, - [64562] = 5, + ACTIONS(4789), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [65400] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4765), 1, + ACTIONS(4793), 1, anon_sym_DASH_GT, - STATE(2080), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 13, + ACTIONS(3702), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170196,478 +171688,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [64591] = 5, + [65429] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_DASH_GT, - STATE(2081), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 13, + ACTIONS(4650), 10, 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_COMMA, - anon_sym_SQUOTE, - anon_sym_where, anon_sym_else, - [64620] = 5, + anon_sym_in, + [65459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_DASH_GT, - STATE(2082), 2, + ACTIONS(4797), 1, + anon_sym_DOT_DOT, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 13, + ACTIONS(4795), 12, 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, - [64649] = 7, + anon_sym_in, + [65487] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3494), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4771), 3, + ACTIONS(4799), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3500), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64681] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4801), 1, + anon_sym_LBRACE, + ACTIONS(4803), 1, anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4805), 1, + anon_sym_AT, + ACTIONS(4807), 1, + anon_sym_DOT_DOT, + ACTIONS(4811), 1, anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - ACTIONS(4776), 1, - anon_sym_EQ, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(3099), 1, - sym_trait_bounds, - ACTIONS(3436), 2, - anon_sym_PLUS, - anon_sym_as, - ACTIONS(4778), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2084), 2, + ACTIONS(4809), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2103), 2, sym_line_comment, sym_block_comment, - [64727] = 7, + ACTIONS(4650), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [65531] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4780), 1, + ACTIONS(4813), 1, anon_sym_LPAREN, - ACTIONS(3506), 2, + ACTIONS(3538), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2085), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 5, + ACTIONS(3534), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3508), 5, + ACTIONS(3540), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64759] = 7, + [65563] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 2, + ACTIONS(4816), 1, + anon_sym_LPAREN, + ACTIONS(3505), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2086), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 3, + ACTIONS(3501), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4783), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3489), 5, + anon_sym_LT2, + ACTIONS(3507), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64791] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2087), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64821] = 7, + [65595] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 2, + ACTIONS(4819), 1, + anon_sym_LPAREN, + ACTIONS(3548), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2088), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 3, + ACTIONS(3544), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4786), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3516), 5, + anon_sym_LT2, + ACTIONS(3550), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64853] = 7, + [65627] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 2, + ACTIONS(4822), 1, + anon_sym_LPAREN, + ACTIONS(3517), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2089), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 3, + ACTIONS(3513), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4780), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3508), 5, + anon_sym_LT2, + ACTIONS(3519), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64885] = 7, + [65659] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3505), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4786), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2090), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 4, - anon_sym_SEMI, + ACTIONS(3501), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3516), 6, + ACTIONS(4816), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3507), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [64917] = 7, + [65691] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, - ACTIONS(4771), 2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2091), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3494), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + ACTIONS(4825), 1, + anon_sym_COLON, + ACTIONS(4827), 1, + anon_sym_EQ, + STATE(2020), 1, + sym_type_arguments, + STATE(2449), 1, + sym_parameters, + STATE(3091), 1, + sym_trait_bounds, + ACTIONS(3440), 2, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3500), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_as, + ACTIONS(4829), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - [64949] = 7, + STATE(2109), 2, + sym_line_comment, + sym_block_comment, + [65737] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3538), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4780), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2092), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 4, - anon_sym_SEMI, + ACTIONS(3534), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3508), 6, + ACTIONS(4813), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3540), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [64981] = 7, + [65769] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, - anon_sym_LPAREN, - ACTIONS(3498), 2, + ACTIONS(3548), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2093), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 5, - anon_sym_RPAREN, + ACTIONS(3544), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3500), 5, + ACTIONS(4819), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3550), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65013] = 7, + [65801] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(3487), 2, + ACTIONS(3517), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2094), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 5, - anon_sym_RPAREN, + ACTIONS(3513), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3489), 5, + ACTIONS(4822), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3519), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65045] = 7, + [65833] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4786), 1, - anon_sym_LPAREN, - ACTIONS(3514), 2, - anon_sym_COLON, + ACTIONS(3505), 1, anon_sym_DOT_DOT, - STATE(2095), 2, + ACTIONS(4816), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 5, - anon_sym_RPAREN, + ACTIONS(3501), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3516), 5, + ACTIONS(3507), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65077] = 5, + [65865] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(3538), 1, anon_sym_DOT_DOT, - STATE(2096), 2, + ACTIONS(4813), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 12, + ACTIONS(3534), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3540), 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, - [65105] = 13, + anon_sym_COLON_COLON, + [65897] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4793), 1, + ACTIONS(3548), 1, + anon_sym_DOT_DOT, + ACTIONS(4819), 2, anon_sym_LPAREN, - ACTIONS(4795), 1, + anon_sym_RBRACK, + STATE(2115), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3544), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4797), 1, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3550), 6, anon_sym_BANG, - ACTIONS(4799), 1, - anon_sym_AT, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(4805), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - ACTIONS(4803), 2, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [65149] = 7, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [65929] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, + ACTIONS(3517), 1, anon_sym_DOT_DOT, - ACTIONS(4783), 2, + ACTIONS(4822), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2098), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 4, + ACTIONS(3513), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3489), 6, + ACTIONS(3519), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65181] = 6, + [65961] = 11, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(4831), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, + STATE(403), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66001] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4835), 1, anon_sym_COLON, - ACTIONS(3910), 2, + ACTIONS(3830), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2099), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, + ACTIONS(4833), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170677,77 +172150,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65210] = 13, + [66030] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4813), 1, + ACTIONS(4839), 1, anon_sym_GT, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4843), 1, sym_metavariable, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2167), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2793), 1, sym_lifetime, - STATE(2100), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3429), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65253] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, + [66073] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4680), 1, - anon_sym_trait, - ACTIONS(4819), 1, - anon_sym_impl, - STATE(397), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2101), 2, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4843), 1, + sym_metavariable, + ACTIONS(4845), 1, + anon_sym_GT, + STATE(1122), 1, + sym_attribute_item, + STATE(2167), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2793), 1, + sym_lifetime, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66116] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65290] = 6, + ACTIONS(4843), 1, + sym_metavariable, + ACTIONS(4847), 1, + anon_sym_GT, + STATE(1122), 1, + sym_attribute_item, + STATE(2167), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2793), 1, + sym_lifetime, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4835), 1, anon_sym_COLON, - ACTIONS(3776), 2, + ACTIONS(3914), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2102), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 9, + ACTIONS(4833), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170757,209 +172263,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65319] = 13, + [66188] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4821), 1, + ACTIONS(4849), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2167), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2793), 1, sym_lifetime, - STATE(2103), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3429), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65362] = 13, + [66231] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4823), 1, + ACTIONS(4851), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2167), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2793), 1, sym_lifetime, - STATE(2104), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3429), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65405] = 13, + [66274] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4817), 1, + ACTIONS(4843), 1, sym_metavariable, - ACTIONS(4825), 1, + ACTIONS(4853), 1, anon_sym_GT, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2138), 1, + STATE(2167), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2793), 1, sym_lifetime, - STATE(2105), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, + STATE(3429), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65448] = 13, + [66317] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - ACTIONS(4827), 1, - anon_sym_GT, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2106), 2, + ACTIONS(4692), 1, + anon_sym_trait, + ACTIONS(4855), 1, + anon_sym_impl, + STATE(412), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2126), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65491] = 13, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66354] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4857), 1, sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - ACTIONS(4829), 1, - anon_sym_GT, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2107), 2, + STATE(424), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2127), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65534] = 6, + ACTIONS(4859), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66388] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - ACTIONS(4833), 1, - anon_sym_COLON, - STATE(2108), 2, + ACTIONS(4861), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2091), 1, + sym_parameters, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, + ACTIONS(3440), 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, - [65562] = 6, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66426] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(3442), 1, anon_sym_COLON, - ACTIONS(4839), 1, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - STATE(2109), 2, + STATE(2020), 1, + sym_type_arguments, + STATE(2449), 1, + sym_parameters, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3440), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65590] = 4, + anon_sym_as, + [66464] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 11, + ACTIONS(1433), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170971,44 +172479,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65614] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [66488] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(4841), 1, - sym_identifier, - STATE(411), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2111), 2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + ACTIONS(4863), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2091), 1, + sym_parameters, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65648] = 6, + ACTIONS(3440), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66526] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, + ACTIONS(4867), 1, anon_sym_COLON, - ACTIONS(4849), 1, + ACTIONS(4869), 1, anon_sym_COLON_COLON, - STATE(2112), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 9, + ACTIONS(4865), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171018,102 +172528,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65676] = 12, + [66554] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4851), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2117), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2560), 1, - sym_lifetime, - STATE(2113), 2, + ACTIONS(4873), 1, + anon_sym_COLON, + ACTIONS(4875), 1, + anon_sym_COLON_COLON, + STATE(2133), 2, sym_line_comment, sym_block_comment, - STATE(3034), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65716] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4855), 1, + ACTIONS(4871), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4859), 1, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4861), 1, - sym_integer_literal, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2114), 2, - sym_line_comment, - sym_block_comment, - STATE(3112), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65756] = 11, + anon_sym_else, + anon_sym_in, + [66582] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4769), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2115), 2, + ACTIONS(4873), 1, + anon_sym_COLON, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4871), 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, - [65794] = 6, + anon_sym_else, + anon_sym_in, + [66610] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, + ACTIONS(4873), 1, anon_sym_COLON, - STATE(2116), 2, + ACTIONS(4877), 1, + anon_sym_COLON_COLON, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, + ACTIONS(4871), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171123,205 +172594,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65822] = 12, + [66638] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4867), 1, - sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2816), 1, - sym_lifetime, - STATE(2117), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - STATE(3031), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [65862] = 11, + ACTIONS(1437), 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, + [66662] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(3460), 1, + anon_sym_COLON, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_for, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2449), 1, sym_parameters, - STATE(2118), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3458), 4, anon_sym_PLUS, - anon_sym_where, - [65900] = 12, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [66700] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4871), 1, - anon_sym_EQ, - STATE(2403), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2119), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 3, - anon_sym_PLUS, + ACTIONS(1445), 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, - [65940] = 11, + anon_sym_else, + anon_sym_in, + [66724] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4873), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2120), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(1441), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65978] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66748] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4875), 1, + ACTIONS(4843), 1, sym_metavariable, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2122), 1, + STATE(2167), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(2793), 1, sym_lifetime, - STATE(2121), 2, + STATE(2140), 2, + sym_line_comment, + sym_block_comment, + STATE(3429), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66788] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4769), 1, + anon_sym_COLON_COLON, + ACTIONS(4881), 1, + anon_sym_COLON, + STATE(2141), 2, sym_line_comment, sym_block_comment, - STATE(3078), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66018] = 12, + ACTIONS(4879), 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, + [66816] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4877), 1, + ACTIONS(4883), 1, sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2816), 1, + STATE(2147), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2793), 1, sym_lifetime, - STATE(2122), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - STATE(2872), 3, + STATE(2901), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66058] = 4, + [66856] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2123), 2, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + ACTIONS(4887), 1, + anon_sym_COLON, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 11, + ACTIONS(4885), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66082] = 6, + [66884] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_COLON, - ACTIONS(4879), 1, + ACTIONS(4875), 1, anon_sym_COLON_COLON, - STATE(2124), 2, + ACTIONS(4891), 1, + anon_sym_COLON, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, + ACTIONS(4889), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171331,46 +172803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66110] = 11, + [66912] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4769), 1, anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2125), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3424), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [66148] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(4891), 1, anon_sym_COLON, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - STATE(2126), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, + ACTIONS(4889), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171380,147 +172825,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66176] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - ACTIONS(3483), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2127), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3489), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66204] = 11, + [66940] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4877), 1, anon_sym_COLON_COLON, - ACTIONS(4881), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2128), 2, + ACTIONS(4891), 1, + anon_sym_COLON, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(4889), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66242] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66968] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4851), 1, + ACTIONS(4893), 1, sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2117), 1, + STATE(1095), 1, aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, + STATE(1122), 1, + sym_attribute_item, + STATE(2793), 1, sym_lifetime, - STATE(2129), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - STATE(3034), 3, + STATE(3159), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66282] = 12, + [67008] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_SQUOTE, - ACTIONS(4811), 1, - sym_identifier, - ACTIONS(4815), 1, - anon_sym_const, - ACTIONS(4817), 1, - sym_metavariable, - STATE(1115), 1, - sym_attribute_item, - STATE(2138), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2816), 1, - sym_lifetime, - STATE(2130), 2, + ACTIONS(3505), 1, + anon_sym_DOT_DOT, + ACTIONS(3501), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - STATE(3390), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66322] = 6, + ACTIONS(3507), 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, + [67036] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4885), 1, - anon_sym_COLON, - STATE(2131), 2, + ACTIONS(3538), 1, + anon_sym_DOT_DOT, + ACTIONS(3534), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3540), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66350] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67064] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, + ACTIONS(3548), 1, anon_sym_DOT_DOT, - ACTIONS(3502), 2, + ACTIONS(3544), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2132), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 8, + ACTIONS(3550), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -171529,91 +172941,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [66378] = 4, + [67092] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2133), 2, + ACTIONS(3517), 1, + anon_sym_DOT_DOT, + ACTIONS(3513), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3519), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66402] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67120] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(4887), 1, - anon_sym_move, - STATE(410), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2134), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4895), 1, + sym_identifier, + ACTIONS(4897), 1, + anon_sym_RBRACE, + ACTIONS(4899), 1, + anon_sym_DOT_DOT, + ACTIONS(4901), 1, + anon_sym_COMMA, + ACTIONS(4903), 1, + sym_integer_literal, + STATE(1122), 1, + sym_attribute_item, + STATE(2603), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66436] = 11, + STATE(2966), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67160] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4895), 1, + sym_identifier, + ACTIONS(4899), 1, anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2135), 2, + ACTIONS(4903), 1, + sym_integer_literal, + ACTIONS(4905), 1, + anon_sym_RBRACE, + ACTIONS(4907), 1, + anon_sym_COMMA, + STATE(1122), 1, + sym_attribute_item, + STATE(2603), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66474] = 6, + STATE(3167), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67200] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_COLON, - ACTIONS(4839), 1, + ACTIONS(4877), 1, anon_sym_COLON_COLON, - STATE(2136), 2, + ACTIONS(4881), 1, + anon_sym_COLON, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 9, + ACTIONS(4879), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171623,69 +173041,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66502] = 6, + [67228] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_DOT_DOT, - ACTIONS(3510), 2, - anon_sym_LBRACE, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, anon_sym_LT2, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3516), 8, + ACTIONS(4670), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - anon_sym_if, - [66530] = 12, + ACTIONS(4909), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2091), 1, + sym_parameters, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3440), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67266] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1177), 1, + aux_sym_string_literal_token1, + ACTIONS(4913), 1, + sym_crate, + STATE(2311), 1, + sym_string_literal, + STATE(2156), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4911), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67296] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(3068), 1, + ACTIONS(3084), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4815), 1, + ACTIONS(4841), 1, anon_sym_const, - ACTIONS(4889), 1, + ACTIONS(4883), 1, sym_metavariable, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2816), 1, + STATE(2147), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2535), 1, sym_lifetime, - STATE(2138), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - STATE(3269), 3, + STATE(2901), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66570] = 6, + [67336] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_COLON, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COLON_COLON, - STATE(2139), 2, + ACTIONS(4917), 1, + anon_sym_COLON, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 9, + ACTIONS(4915), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171695,15 +173141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66598] = 4, + [67364] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 11, + ACTIONS(1449), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171715,44 +173161,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66622] = 7, + [67388] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4893), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2141), 2, + ACTIONS(3442), 1, + anon_sym_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + ACTIONS(4919), 1, + anon_sym_EQ, + STATE(2431), 1, + sym_type_arguments, + STATE(2449), 1, + sym_parameters, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66652] = 7, + ACTIONS(3440), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [67428] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, + ACTIONS(1177), 1, aux_sym_string_literal_token1, - ACTIONS(4895), 1, + ACTIONS(4921), 1, sym_crate, - STATE(2270), 1, + STATE(2311), 1, sym_string_literal, - STATE(2142), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, + ACTIONS(4911), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -171761,217 +173212,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66682] = 11, + [67458] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4897), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2143), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4923), 1, + sym_metavariable, + STATE(1122), 1, + sym_attribute_item, + STATE(2163), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2793), 1, + sym_lifetime, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66720] = 7, + STATE(3144), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67498] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4899), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2144), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4925), 1, + sym_metavariable, + STATE(1095), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(2793), 1, + sym_lifetime, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66750] = 6, + STATE(2976), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67538] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - ACTIONS(4865), 1, + ACTIONS(3432), 1, anon_sym_COLON, - STATE(2145), 2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + STATE(2020), 1, + sym_type_arguments, + STATE(2449), 1, + sym_parameters, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3428), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66778] = 6, + anon_sym_as, + [67576] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_DOT_DOT, - ACTIONS(3494), 2, - anon_sym_LBRACE, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, anon_sym_LT2, - STATE(2146), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3500), 8, + ACTIONS(4670), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - anon_sym_if, - [66806] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - ACTIONS(4901), 1, - sym_crate, - STATE(2270), 1, - sym_string_literal, - STATE(2147), 2, + ACTIONS(4927), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2091), 1, + sym_parameters, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 8, + ACTIONS(3440), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66836] = 11, + anon_sym_PLUS, + anon_sym_where, + [67614] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4732), 1, + anon_sym_BANG, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4738), 1, anon_sym_COLON_COLON, - ACTIONS(4903), 1, - anon_sym_for, - STATE(2006), 1, + STATE(2021), 1, sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2148), 2, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2166), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4728), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [67652] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(3084), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + sym_identifier, + ACTIONS(4841), 1, + anon_sym_const, + ACTIONS(4929), 1, + sym_metavariable, + STATE(1095), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(2793), 1, + sym_lifetime, + STATE(2167), 2, + sym_line_comment, + sym_block_comment, + STATE(3349), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67692] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1177), 1, + aux_sym_string_literal_token1, + ACTIONS(4931), 1, + sym_crate, + STATE(2311), 1, + sym_string_literal, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(4911), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66874] = 11, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67722] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - ACTIONS(4905), 1, + ACTIONS(4933), 1, anon_sym_for, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2091), 1, sym_parameters, - STATE(2149), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3440), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66912] = 11, + [67760] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4648), 1, - anon_sym_COLON_COLON, - ACTIONS(4907), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2079), 1, - sym_parameters, - STATE(2150), 2, + ACTIONS(1177), 1, + aux_sym_string_literal_token1, + ACTIONS(4935), 1, + sym_crate, + STATE(2311), 1, + sym_string_literal, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(4911), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66950] = 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67790] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, + ACTIONS(4875), 1, anon_sym_COLON_COLON, - ACTIONS(4837), 1, + ACTIONS(4881), 1, anon_sym_COLON, - STATE(2151), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 9, + ACTIONS(4879), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171981,186 +173472,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66978] = 4, + [67818] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2152), 2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4672), 1, + anon_sym_COLON_COLON, + ACTIONS(4937), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2091), 1, + sym_parameters, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 11, + ACTIONS(3440), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67002] = 11, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67856] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - ACTIONS(4909), 1, + ACTIONS(4939), 1, anon_sym_for, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2079), 1, + STATE(2091), 1, sym_parameters, - STATE(2153), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 4, + ACTIONS(3440), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67040] = 11, + [67894] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3444), 1, - anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4672), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(4941), 1, + anon_sym_for, + STATE(2020), 1, sym_type_arguments, - STATE(2462), 1, + STATE(2091), 1, sym_parameters, - STATE(2154), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 4, + ACTIONS(3440), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67078] = 12, + anon_sym_where, + [67932] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4899), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, + ACTIONS(4903), 1, sym_integer_literal, - ACTIONS(4911), 1, + ACTIONS(4943), 1, anon_sym_RBRACE, - ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2603), 1, aux_sym_enum_variant_list_repeat1, - STATE(2155), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - STATE(3062), 3, + STATE(3295), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67118] = 6, + [67969] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4917), 1, - anon_sym_COLON, - STATE(2156), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 9, + ACTIONS(4945), 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, - [67146] = 4, + [67992] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2157), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3618), 1, + anon_sym_COLON_COLON, + ACTIONS(4947), 1, + anon_sym_BANG, + STATE(1130), 1, + sym_type_arguments, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 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, - [67169] = 13, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68023] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4949), 1, sym_identifier, - ACTIONS(4923), 1, + ACTIONS(4951), 1, anon_sym_RBRACE, - ACTIONS(4925), 1, + ACTIONS(4953), 1, anon_sym_COMMA, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2268), 1, + STATE(2319), 1, aux_sym_enum_variant_list_repeat1, - STATE(2866), 1, + STATE(2926), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3591), 1, sym_visibility_modifier, - STATE(2158), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - [67210] = 4, + [68064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2159), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 10, + ACTIONS(4957), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172171,43 +173668,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67233] = 13, + [68087] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4949), 1, + sym_identifier, + ACTIONS(4955), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(4959), 1, + anon_sym_RBRACE, + ACTIONS(4961), 1, + anon_sym_COMMA, + STATE(1122), 1, + sym_attribute_item, + STATE(2300), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2938), 1, + sym_enum_variant, + STATE(3591), 1, + sym_visibility_modifier, + STATE(2180), 2, + sym_line_comment, + sym_block_comment, + [68128] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(4963), 1, sym_identifier, - ACTIONS(4933), 1, + ACTIONS(4965), 1, anon_sym_RBRACE, - ACTIONS(4935), 1, + ACTIONS(4967), 1, anon_sym_COMMA, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2273), 1, + STATE(2305), 1, aux_sym_enum_variant_list_repeat1, - STATE(2878), 1, + STATE(3017), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3751), 1, sym_visibility_modifier, - STATE(2160), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - [67274] = 4, + [68169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2161), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 10, + ACTIONS(4969), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172218,43 +173743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67297] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4939), 1, - anon_sym_RBRACE, - ACTIONS(4941), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2311), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3105), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2162), 2, - sym_line_comment, - sym_block_comment, - [67338] = 4, + [68192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2163), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 10, + ACTIONS(4971), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172265,86 +173762,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67361] = 11, + [68215] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4899), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, + ACTIONS(4903), 1, sym_integer_literal, - ACTIONS(4943), 1, + ACTIONS(4973), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2603), 1, aux_sym_enum_variant_list_repeat1, - STATE(2164), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, + STATE(3295), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67398] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1499), 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, - [67421] = 11, + [68252] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4899), 1, anon_sym_DOT_DOT, - ACTIONS(4861), 1, + ACTIONS(4903), 1, sym_integer_literal, - ACTIONS(4945), 1, + ACTIONS(4975), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2603), 1, aux_sym_enum_variant_list_repeat1, - STATE(2166), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, + STATE(3295), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67458] = 4, + [68289] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2167), 2, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 10, + ACTIONS(4650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172355,41 +173833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67481] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(4949), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2168), 2, - sym_line_comment, - sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67518] = 4, + [68312] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2169), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 10, + ACTIONS(4977), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172400,15 +173852,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67541] = 4, + [68335] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2170), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4895), 1, + sym_identifier, + ACTIONS(4899), 1, + anon_sym_DOT_DOT, + ACTIONS(4903), 1, + sym_integer_literal, + ACTIONS(4979), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2603), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + STATE(3295), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68372] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 10, + ACTIONS(4981), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172419,15 +173897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67564] = 4, + [68395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2171), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 10, + ACTIONS(4983), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172438,38 +173916,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67587] = 8, + [68418] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4118), 1, anon_sym_LT2, - ACTIONS(4290), 1, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - ACTIONS(4955), 1, + ACTIONS(4985), 1, anon_sym_BANG, - STATE(1643), 1, + STATE(1696), 1, sym_type_arguments, - STATE(2172), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67618] = 4, + [68449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2173), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 10, + ACTIONS(4987), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172480,15 +173958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67641] = 4, + [68472] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2174), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 10, + ACTIONS(4989), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172499,34 +173977,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67664] = 4, + [68495] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2175), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4961), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(4963), 1, + sym_identifier, + ACTIONS(4991), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4993), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67687] = 4, + STATE(1122), 1, + sym_attribute_item, + STATE(2308), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2942), 1, + sym_field_declaration, + STATE(3751), 1, + sym_visibility_modifier, + STATE(2194), 2, + sym_line_comment, + sym_block_comment, + [68536] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2176), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 10, + ACTIONS(4995), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172537,15 +174024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67710] = 4, + [68559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 10, + ACTIONS(4997), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172556,15 +174043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67733] = 4, + [68582] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 10, + ACTIONS(4999), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172575,34 +174062,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67756] = 4, + [68605] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2179), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5001), 1, + anon_sym_BANG, + ACTIONS(5003), 1, + anon_sym_DOT_DOT, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + ACTIONS(5005), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4728), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67779] = 4, + anon_sym_if, + [68640] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 10, + ACTIONS(5009), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172613,15 +174106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67802] = 4, + [68663] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2181), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 10, + ACTIONS(5011), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172632,15 +174125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67825] = 4, + [68686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 10, + ACTIONS(5013), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172651,15 +174144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67848] = 4, + [68709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2183), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 10, + ACTIONS(5015), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172670,15 +174163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67871] = 4, + [68732] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 10, + ACTIONS(5017), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172689,83 +174182,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67894] = 9, + [68755] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4979), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2092), 1, sym_parameters, - STATE(2185), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, + ACTIONS(3509), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [67927] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2462), 1, - sym_parameters, - STATE(2186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67962] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2187), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4981), 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, - [67985] = 4, + [68788] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 10, + ACTIONS(5021), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172776,34 +174225,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68008] = 4, + [68811] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + ACTIONS(1617), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(2219), 1, + sym_block, + STATE(3768), 1, + sym_label, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 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, - [68031] = 4, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68842] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, + ACTIONS(5023), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172814,15 +174267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68054] = 4, + [68865] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 10, + ACTIONS(5025), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172833,63 +174286,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68077] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1603), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, - STATE(2192), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68108] = 10, + [68888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4995), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2193), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, + ACTIONS(5027), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_if, - [68143] = 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2194), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 10, + ACTIONS(5029), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172900,43 +174324,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68166] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [68934] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5001), 1, - anon_sym_RBRACE, - ACTIONS(5003), 1, - anon_sym_COMMA, - STATE(1115), 1, - sym_attribute_item, - STATE(2266), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2850), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2195), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - [68207] = 4, + ACTIONS(5031), 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, + [68957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2196), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 10, + ACTIONS(5033), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172947,61 +174362,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68230] = 8, + [68980] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(3602), 1, + ACTIONS(3618), 1, anon_sym_COLON_COLON, - ACTIONS(4658), 1, + ACTIONS(4732), 1, anon_sym_BANG, - STATE(1123), 1, + STATE(1130), 1, sym_type_arguments, - STATE(2197), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68261] = 8, + [69011] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4118), 1, anon_sym_LT2, - ACTIONS(4290), 1, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - ACTIONS(4658), 1, + ACTIONS(4732), 1, anon_sym_BANG, - STATE(1643), 1, + STATE(1696), 1, sym_type_arguments, - STATE(2198), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68292] = 4, + [69042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2199), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 10, + ACTIONS(4871), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173012,114 +174427,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68315] = 10, + [69065] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, + ACTIONS(4652), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, + ACTIONS(4656), 1, anon_sym_COLON, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2200), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, + ACTIONS(4650), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [68350] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4853), 1, - sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2201), 2, - sym_line_comment, - sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68387] = 10, + [69100] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4658), 1, + ACTIONS(4732), 1, anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2202), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [68422] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(5013), 1, - anon_sym_BANG, - STATE(1123), 1, + STATE(2021), 1, sym_type_arguments, - STATE(2203), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68453] = 4, + [69131] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 10, + ACTIONS(4889), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173130,15 +174494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68476] = 4, + [69154] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 10, + ACTIONS(1541), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173149,15 +174513,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68499] = 4, + [69177] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2206), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4732), 1, + anon_sym_BANG, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4761), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4728), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [69212] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 10, + ACTIONS(5037), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173168,15 +174557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68522] = 4, + [69235] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 10, + ACTIONS(5039), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173187,15 +174576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68545] = 4, + [69258] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2208), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 10, + ACTIONS(5041), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173206,15 +174595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68568] = 4, + [69281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2209), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 10, + ACTIONS(4879), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173225,38 +174614,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68591] = 8, + [69304] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3471), 1, + anon_sym_COLON, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2210), 2, + STATE(2449), 1, + sym_parameters, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68622] = 4, + ACTIONS(3469), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69339] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2211), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 10, + ACTIONS(5043), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173267,499 +174658,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68645] = 11, + [69362] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2212), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - [68681] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5027), 1, + ACTIONS(5045), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2213), 2, - sym_line_comment, - sym_block_comment, - [68719] = 12, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5029), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2214), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - [68757] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5031), 1, + ACTIONS(5047), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2215), 2, - sym_line_comment, - sym_block_comment, - [68795] = 8, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69408] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2216), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 5, + ACTIONS(5049), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_as, - [68825] = 12, + anon_sym_else, + anon_sym_in, + [69431] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5033), 1, + ACTIONS(5051), 1, anon_sym_SEMI, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1187), 1, - sym_field_declaration_list, - STATE(2366), 1, - sym_type_parameters, - STATE(2885), 1, - sym_ordered_field_declaration_list, - STATE(3241), 1, - sym_where_clause, - STATE(2217), 2, - sym_line_comment, - sym_block_comment, - [68863] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_DOT_DOT, - STATE(2218), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3489), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68887] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - anon_sym_DOT_DOT, - STATE(2219), 2, + STATE(1155), 1, + sym_declaration_list, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(3508), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68911] = 7, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69459] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(5043), 1, + ACTIONS(5055), 1, anon_sym_COLON_COLON, - STATE(1643), 1, + STATE(1130), 1, sym_type_arguments, - STATE(2220), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68939] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2221), 2, - sym_line_comment, - sym_block_comment, - [68977] = 5, + [69487] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_PLUS, - STATE(2222), 3, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5057), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(2092), 1, + sym_parameters, + STATE(2232), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5047), 7, + ACTIONS(3509), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [69001] = 7, + [69519] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym_type_arguments, - STATE(2223), 2, + ACTIONS(5059), 1, + anon_sym_SEMI, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_declaration_list, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69029] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5054), 1, - anon_sym_LPAREN, - ACTIONS(5059), 1, - anon_sym_LBRACK, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(3502), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - ACTIONS(5057), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2224), 3, - sym_line_comment, - sym_block_comment, - aux_sym_macro_definition_repeat1, - [69061] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4692), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5065), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2225), 2, - sym_line_comment, - sym_block_comment, - [69095] = 9, + [69547] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(5068), 1, + ACTIONS(5063), 1, anon_sym_for, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2092), 1, sym_parameters, - STATE(2226), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3509), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69127] = 9, + [69579] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, ACTIONS(5065), 1, - anon_sym_RBRACK, - ACTIONS(3518), 2, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4654), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2227), 2, + ACTIONS(5067), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1194), 1, + sym_field_declaration_list, + STATE(2344), 1, + sym_type_parameters, + STATE(3087), 1, + sym_ordered_field_declaration_list, + STATE(3286), 1, + sym_where_clause, + STATE(2235), 2, sym_line_comment, sym_block_comment, - [69159] = 9, + [69617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 1, - anon_sym_PIPE, - ACTIONS(4656), 1, - anon_sym_COLON, - ACTIONS(4660), 1, + ACTIONS(3538), 1, anon_sym_DOT_DOT, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - ACTIONS(4662), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2228), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [69191] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(3540), 8, anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2229), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3522), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69221] = 10, + 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, + [69641] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4853), 1, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(4963), 1, sym_identifier, - ACTIONS(4857), 1, - anon_sym_DOT_DOT, - ACTIONS(4861), 1, - sym_integer_literal, - STATE(1115), 1, + ACTIONS(5075), 1, + anon_sym_RBRACE, + STATE(1122), 1, sym_attribute_item, - STATE(2554), 1, + STATE(2286), 1, aux_sym_enum_variant_list_repeat1, - STATE(2230), 2, + STATE(3222), 1, + sym_field_declaration, + STATE(3751), 1, + sym_visibility_modifier, + STATE(2237), 2, sym_line_comment, sym_block_comment, - STATE(3188), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69255] = 7, + [69679] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5070), 1, + ACTIONS(5077), 1, anon_sym_COLON_COLON, - STATE(2003), 1, + STATE(2021), 1, sym_type_arguments, - STATE(2231), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69283] = 9, + [69707] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3509), 1, + anon_sym_PLUS, + ACTIONS(4728), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4738), 1, + anon_sym_COLON_COLON, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5079), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + [69741] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5072), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2232), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + sym_identifier, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(5082), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2287), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3214), 1, + sym_enum_variant, + STATE(3591), 1, + sym_visibility_modifier, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69315] = 5, + [69779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, + ACTIONS(3548), 1, anon_sym_DOT_DOT, - STATE(2233), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 8, + ACTIONS(3550), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -173768,631 +174985,694 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [69339] = 12, + [69803] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5074), 1, - anon_sym_SEMI, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_field_declaration_list, - STATE(2347), 1, - sym_type_parameters, - STATE(2930), 1, - sym_ordered_field_declaration_list, - STATE(3254), 1, - sym_where_clause, - STATE(2234), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(4963), 1, + sym_identifier, + ACTIONS(5084), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2286), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3222), 1, + sym_field_declaration, + STATE(3751), 1, + sym_visibility_modifier, + STATE(2242), 2, sym_line_comment, sym_block_comment, - [69377] = 8, + [69841] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2235), 2, + ACTIONS(3517), 1, + anon_sym_DOT_DOT, + STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69407] = 9, + ACTIONS(3519), 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, + [69865] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(5078), 1, + ACTIONS(5086), 1, anon_sym_for, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2092), 1, sym_parameters, - STATE(2236), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3509), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [69439] = 8, + [69897] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, - sym_type_arguments, - STATE(2441), 1, - sym_parameters, - STATE(2237), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_SEMI, + STATE(743), 1, + sym_declaration_list, + STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(3526), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [69469] = 12, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69925] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4949), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - ACTIONS(5080), 1, + ACTIONS(5090), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2287), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, + STATE(3214), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3591), 1, sym_visibility_modifier, - STATE(2238), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - [69507] = 9, + [69963] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(5082), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2239), 2, + STATE(2025), 1, + sym_type_arguments, + STATE(2414), 1, + sym_parameters, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [69539] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5086), 1, + ACTIONS(3523), 5, + anon_sym_COLON, anon_sym_PLUS, - STATE(2248), 1, - aux_sym_trait_bounds_repeat1, - STATE(2240), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5084), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69565] = 12, + anon_sym_as, + [69993] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - ACTIONS(5088), 1, + ACTIONS(4963), 1, + sym_identifier, + ACTIONS(5092), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2286), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(3222), 1, + sym_field_declaration, + STATE(3751), 1, sym_visibility_modifier, - STATE(2241), 2, - sym_line_comment, - sym_block_comment, - [69603] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_PLUS, - STATE(2248), 1, - aux_sym_trait_bounds_repeat1, - STATE(2242), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(5084), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69629] = 12, + [70031] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4949), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - ACTIONS(5092), 1, + ACTIONS(5094), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2287), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, + STATE(3214), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3591), 1, sym_visibility_modifier, - STATE(2243), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [69667] = 12, + [70069] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(4963), 1, sym_identifier, - ACTIONS(5094), 1, + ACTIONS(5096), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2286), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, + STATE(3222), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3751), 1, sym_visibility_modifier, - STATE(2244), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [69705] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70107] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4895), 1, sym_identifier, - ACTIONS(5096), 1, - anon_sym_RBRACE, - STATE(1115), 1, + ACTIONS(4899), 1, + anon_sym_DOT_DOT, + ACTIONS(4903), 1, + sym_integer_literal, + STATE(1122), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2603), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2245), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - [69743] = 7, + STATE(3295), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70141] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, - anon_sym_SEMI, ACTIONS(5100), 1, + anon_sym_PLUS, + STATE(2265), 1, + aux_sym_trait_bounds_repeat1, + STATE(2252), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5098), 7, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1121), 1, - sym_declaration_list, - STATE(2246), 2, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70167] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4118), 1, + anon_sym_LT2, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + STATE(1696), 1, + sym_type_arguments, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69771] = 12, + [70195] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5104), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(2092), 1, + sym_parameters, + STATE(2254), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3509), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70227] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5106), 1, + anon_sym_LPAREN, + ACTIONS(5111), 1, + anon_sym_LBRACK, + ACTIONS(5114), 1, + anon_sym_LBRACE, + STATE(3560), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + ACTIONS(5109), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2255), 3, + sym_line_comment, + sym_block_comment, + aux_sym_macro_definition_repeat1, + [70259] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2025), 1, + sym_type_arguments, + STATE(2414), 1, + sym_parameters, + STATE(2256), 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, + [70289] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4761), 1, + anon_sym_COLON_COLON, + ACTIONS(5079), 1, + anon_sym_RBRACK, + ACTIONS(3509), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4728), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2257), 2, + sym_line_comment, + sym_block_comment, + [70321] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4949), 1, sym_identifier, - ACTIONS(5102), 1, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(5117), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2297), 1, + STATE(2287), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, + STATE(3214), 1, + sym_enum_variant, + STATE(3591), 1, sym_visibility_modifier, - STATE(2247), 2, + STATE(2258), 2, sym_line_comment, sym_block_comment, - [69809] = 6, + [70359] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5086), 1, - anon_sym_PLUS, - STATE(2222), 1, - aux_sym_trait_bounds_repeat1, - STATE(2248), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(4963), 1, + sym_identifier, + ACTIONS(5119), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2286), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3222), 1, + sym_field_declaration, + STATE(3751), 1, + sym_visibility_modifier, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(5104), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69835] = 9, + [70397] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4634), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4728), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4732), 1, anon_sym_BANG, - ACTIONS(4638), 1, + ACTIONS(4734), 1, anon_sym_DOT_DOT, - ACTIONS(5106), 1, + ACTIONS(4771), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + STATE(2021), 1, + sym_type_arguments, + ACTIONS(4736), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2249), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_RBRACK, + [70433] = 7, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_COMMA, - [69867] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_SEMI, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym_declaration_list, - STATE(2250), 2, + ACTIONS(5121), 1, + anon_sym_move, + STATE(220), 1, + sym_closure_parameters, + STATE(2261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69895] = 9, + [70461] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(5067), 1, anon_sym_LPAREN, - ACTIONS(5112), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2251), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5123), 1, anon_sym_SEMI, + ACTIONS(5125), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69927] = 12, + STATE(642), 1, + sym_field_declaration_list, + STATE(2350), 1, + sym_type_parameters, + STATE(2948), 1, + sym_ordered_field_declaration_list, + STATE(3385), 1, + sym_where_clause, + STATE(2262), 2, + sym_line_comment, + sym_block_comment, + [70499] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - ACTIONS(5114), 1, + ACTIONS(4963), 1, + sym_identifier, + ACTIONS(5127), 1, anon_sym_RBRACE, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2299), 1, + STATE(2286), 1, aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(3222), 1, + sym_field_declaration, + STATE(3751), 1, sym_visibility_modifier, - STATE(2252), 2, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [69965] = 9, + [70537] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(5116), 1, - anon_sym_for, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2414), 1, sym_parameters, - STATE(2253), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3475), 5, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_where, - [69997] = 9, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2254), 2, + ACTIONS(5131), 1, + anon_sym_PLUS, + STATE(2265), 3, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + aux_sym_trait_bounds_repeat1, + ACTIONS(5129), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [70029] = 12, + [70591] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_SEMI, - STATE(1141), 1, - sym_field_declaration_list, - STATE(2372), 1, - sym_type_parameters, - STATE(3085), 1, - sym_ordered_field_declaration_list, - STATE(3338), 1, - sym_where_clause, - STATE(2255), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + sym_identifier, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(5134), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2287), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3214), 1, + sym_enum_variant, + STATE(3591), 1, + sym_visibility_modifier, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [70067] = 9, + [70629] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(5122), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2071), 1, - sym_parameters, - STATE(2256), 2, + ACTIONS(4803), 1, + anon_sym_BANG, + ACTIONS(4807), 1, + anon_sym_DOT_DOT, + ACTIONS(5136), 1, + anon_sym_COLON_COLON, + ACTIONS(4809), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2267), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70099] = 12, + ACTIONS(4650), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70661] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5067), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5124), 1, + ACTIONS(5138), 1, anon_sym_SEMI, - STATE(643), 1, + STATE(700), 1, sym_field_declaration_list, - STATE(2333), 1, - sym_type_parameters, - STATE(2905), 1, - sym_ordered_field_declaration_list, - STATE(3168), 1, - sym_where_clause, - STATE(2257), 2, - sym_line_comment, - sym_block_comment, - [70137] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(5126), 1, - anon_sym_RBRACE, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2258), 2, + STATE(2361), 1, + sym_type_parameters, + STATE(2936), 1, + sym_ordered_field_declaration_list, + STATE(3270), 1, + sym_where_clause, + STATE(2268), 2, sym_line_comment, sym_block_comment, - [70175] = 7, + [70699] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5100), 1, + anon_sym_PLUS, + STATE(2252), 1, + aux_sym_trait_bounds_repeat1, + STATE(2269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5140), 7, anon_sym_SEMI, - STATE(585), 1, - sym_declaration_list, - STATE(2259), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70725] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5142), 1, + anon_sym_PLUS, + STATE(2252), 1, + aux_sym_trait_bounds_repeat1, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70203] = 5, + ACTIONS(5140), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3505), 1, anon_sym_DOT_DOT, - STATE(2260), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 8, + ACTIONS(3507), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -174401,609 +175681,553 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [70227] = 7, + [70775] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(4652), 1, + anon_sym_LPAREN, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5144), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2272), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4650), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [70807] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5130), 1, + ACTIONS(5146), 1, anon_sym_SEMI, - STATE(1148), 1, + STATE(1128), 1, sym_declaration_list, - STATE(2261), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70255] = 9, + [70835] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5148), 1, anon_sym_for, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2071), 1, + STATE(2092), 1, sym_parameters, - STATE(2262), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3509), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70287] = 11, + [70867] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5067), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LBRACE, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5134), 1, + ACTIONS(5150), 1, anon_sym_SEMI, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5138), 1, - anon_sym_DASH_GT, - STATE(496), 1, - sym_block, - STATE(2532), 1, + STATE(1148), 1, + sym_field_declaration_list, + STATE(2340), 1, + sym_type_parameters, + STATE(3152), 1, + sym_ordered_field_declaration_list, + STATE(3463), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2263), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [70322] = 11, + [70905] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5140), 1, - anon_sym_SEMI, - ACTIONS(5142), 1, - anon_sym_LBRACE, - STATE(1379), 1, - sym_block, - STATE(2538), 1, - sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2264), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5152), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(2092), 1, + sym_parameters, + STATE(2276), 2, sym_line_comment, sym_block_comment, - [70357] = 7, + ACTIONS(3509), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70937] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 1, - anon_sym_fn, - ACTIONS(5149), 1, - anon_sym_extern, - STATE(2459), 1, - sym_extern_modifier, - STATE(2265), 3, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2025), 1, + sym_type_arguments, + STATE(2414), 1, + sym_parameters, + STATE(2277), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5144), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70384] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3527), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70967] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2966), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2266), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(2092), 1, + sym_parameters, + STATE(2278), 2, sym_line_comment, sym_block_comment, - [70419] = 11, + ACTIONS(3509), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70999] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(739), 1, - sym_declaration_list, - STATE(2467), 1, - sym_type_parameters, - STATE(2643), 1, - sym_trait_bounds, - STATE(3407), 1, - sym_where_clause, - STATE(2267), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5156), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(2092), 1, + sym_parameters, + STATE(2279), 2, sym_line_comment, sym_block_comment, - [70454] = 11, + ACTIONS(3509), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71031] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, + ACTIONS(4949), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + ACTIONS(5158), 1, + anon_sym_RBRACE, + STATE(1122), 1, sym_attribute_item, - STATE(2913), 1, + STATE(2287), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3214), 1, sym_enum_variant, - STATE(3551), 1, + STATE(3591), 1, sym_visibility_modifier, - STATE(2268), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [70489] = 11, + [71069] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - anon_sym_SEMI, - STATE(542), 1, - sym_block, - STATE(2494), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2269), 2, + ACTIONS(4728), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_COLON, + ACTIONS(4734), 1, + anon_sym_DOT_DOT, + ACTIONS(4771), 1, + anon_sym_COLON_COLON, + ACTIONS(4736), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2281), 2, sym_line_comment, sym_block_comment, - [70524] = 4, + ACTIONS(3509), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71101] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2270), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5158), 8, - anon_sym_SEMI, + ACTIONS(5053), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70545] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, ACTIONS(5160), 1, - anon_sym_SEMI, - STATE(1391), 1, - sym_block, - STATE(2539), 1, - sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2271), 2, - sym_line_comment, - sym_block_comment, - [70580] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5152), 1, anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, ACTIONS(5162), 1, - anon_sym_SEMI, - ACTIONS(5164), 1, - anon_sym_EQ, - STATE(2458), 1, + anon_sym_LT, + STATE(1149), 1, + sym_declaration_list, + STATE(2450), 1, sym_type_parameters, - STATE(2953), 1, + STATE(2861), 1, sym_trait_bounds, - STATE(3299), 1, + STATE(3466), 1, sym_where_clause, - STATE(2272), 2, - sym_line_comment, - sym_block_comment, - [70615] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, - sym_identifier, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2920), 1, - sym_field_declaration, - STATE(3627), 1, - sym_visibility_modifier, - STATE(2273), 2, - sym_line_comment, - sym_block_comment, - [70650] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, - sym_crate, - STATE(1115), 1, - sym_attribute_item, - STATE(2299), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3392), 1, - sym_enum_variant, - STATE(3551), 1, - sym_visibility_modifier, - STATE(2274), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - [70685] = 11, + [71136] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5166), 1, + ACTIONS(5164), 1, anon_sym_SEMI, + ACTIONS(5166), 1, + anon_sym_LBRACE, ACTIONS(5168), 1, anon_sym_DASH_GT, - STATE(704), 1, + STATE(541), 1, sym_block, - STATE(2582), 1, + STATE(2507), 1, sym_where_clause, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2275), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - [70720] = 4, + [71171] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2276), 2, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5172), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70741] = 11, + STATE(2977), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71204] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5170), 1, + ACTIONS(5182), 1, anon_sym_SEMI, - STATE(1402), 1, + ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5186), 1, + anon_sym_DASH_GT, + STATE(1167), 1, sym_block, - STATE(2540), 1, + STATE(2531), 1, sym_where_clause, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2277), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - [70776] = 8, + [71239] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - anon_sym_fn, - ACTIONS(5174), 1, - anon_sym_extern, - STATE(2265), 1, - aux_sym_function_modifiers_repeat1, - STATE(2459), 1, - sym_extern_modifier, - STATE(2278), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4955), 1, + sym_crate, + ACTIONS(4963), 1, + sym_identifier, + STATE(1095), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(3406), 1, + sym_field_declaration, + STATE(3751), 1, + sym_visibility_modifier, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(4666), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70805] = 6, + [71274] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4706), 1, - anon_sym_trait, - ACTIONS(5176), 1, - anon_sym_impl, - STATE(2279), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + sym_identifier, + ACTIONS(4955), 1, + sym_crate, + STATE(1095), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(3460), 1, + sym_enum_variant, + STATE(3591), 1, + sym_visibility_modifier, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70830] = 11, + [71309] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5178), 1, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5162), 1, + anon_sym_LT, + ACTIONS(5188), 1, anon_sym_SEMI, - ACTIONS(5180), 1, - anon_sym_DASH_GT, - STATE(657), 1, - sym_block, - STATE(2518), 1, + ACTIONS(5190), 1, + anon_sym_EQ, + STATE(2400), 1, + sym_type_parameters, + STATE(2989), 1, + sym_trait_bounds, + STATE(3332), 1, sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2280), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - [70865] = 11, + [71344] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5182), 1, + ACTIONS(5192), 1, anon_sym_SEMI, - STATE(553), 1, + ACTIONS(5194), 1, + anon_sym_DASH_GT, + STATE(679), 1, sym_block, - STATE(2503), 1, + STATE(2564), 1, sym_where_clause, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2281), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - [70900] = 11, + [71379] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5196), 1, anon_sym_SEMI, - STATE(605), 1, + STATE(1311), 1, sym_block, - STATE(2477), 1, + STATE(2526), 1, sym_where_clause, - STATE(3736), 1, + STATE(3775), 1, sym_label, - STATE(2282), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [70935] = 11, + [71414] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5198), 1, anon_sym_SEMI, - ACTIONS(5188), 1, + ACTIONS(5200), 1, anon_sym_DASH_GT, - STATE(683), 1, + STATE(723), 1, sym_block, - STATE(2528), 1, + STATE(2581), 1, sym_where_clause, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2283), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - [70970] = 11, + [71449] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_SEMI, - STATE(1252), 1, - sym_block, - STATE(2584), 1, - sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2284), 2, + ACTIONS(4650), 1, + anon_sym_PIPE, + ACTIONS(4652), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [71005] = 11, + [71482] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5192), 1, + ACTIONS(5204), 1, anon_sym_SEMI, - STATE(529), 1, + STATE(570), 1, sym_block, - STATE(2489), 1, + STATE(2567), 1, sym_where_clause, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2285), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - [71040] = 11, + [71517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5194), 1, - anon_sym_SEMI, - ACTIONS(5196), 1, - anon_sym_DASH_GT, - STATE(572), 1, - sym_block, - STATE(2569), 1, - sym_where_clause, - STATE(3736), 1, - sym_label, - STATE(2286), 2, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_BANG, + STATE(2294), 2, sym_line_comment, sym_block_comment, - [71075] = 4, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71542] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2287), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, + ACTIONS(5129), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -175012,27014 +176236,27617 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [71096] = 6, + [71563] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1259), 1, - aux_sym_string_literal_token1, - STATE(2270), 1, - sym_string_literal, - STATE(2288), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5206), 1, + anon_sym_SEMI, + STATE(673), 1, + sym_block, + STATE(2609), 1, + sym_where_clause, + STATE(3772), 1, + sym_label, + STATE(2296), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71121] = 10, + [71598] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_COMMA, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - STATE(2289), 2, + ACTIONS(5211), 1, + anon_sym_fn, + ACTIONS(5213), 1, + anon_sym_extern, + STATE(2435), 1, + sym_extern_modifier, + STATE(2297), 3, sym_line_comment, sym_block_comment, - STATE(2982), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71154] = 11, + aux_sym_function_modifiers_repeat1, + ACTIONS(5208), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [71625] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5210), 1, + ACTIONS(5216), 1, anon_sym_SEMI, - ACTIONS(5212), 1, - anon_sym_DASH_GT, - STATE(1201), 1, + STATE(1346), 1, sym_block, - STATE(2527), 1, + STATE(2532), 1, sym_where_clause, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2290), 2, - sym_line_comment, - sym_block_comment, - [71189] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5214), 1, - anon_sym_RBRACE, - ACTIONS(5216), 1, - anon_sym_COMMA, - STATE(2291), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - STATE(2851), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71222] = 11, + [71660] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(581), 1, - sym_declaration_list, - STATE(2438), 1, - sym_type_parameters, - STATE(2723), 1, - sym_trait_bounds, - STATE(3192), 1, + ACTIONS(5218), 1, + anon_sym_SEMI, + ACTIONS(5220), 1, + anon_sym_DASH_GT, + STATE(1356), 1, + sym_block, + STATE(2537), 1, sym_where_clause, - STATE(2292), 2, + STATE(3775), 1, + sym_label, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [71257] = 10, + [71695] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4949), 1, sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5218), 1, - anon_sym_RBRACE, - ACTIONS(5220), 1, - anon_sym_COMMA, - STATE(2293), 2, + ACTIONS(4955), 1, + sym_crate, + STATE(1095), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(2899), 1, + sym_enum_variant, + STATE(3591), 1, + sym_visibility_modifier, + STATE(2300), 2, sym_line_comment, sym_block_comment, - STATE(2853), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71290] = 11, + [71730] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, ACTIONS(5222), 1, anon_sym_SEMI, ACTIONS(5224), 1, anon_sym_DASH_GT, - STATE(1282), 1, + STATE(784), 1, sym_block, - STATE(2533), 1, + STATE(2550), 1, sym_where_clause, - STATE(3739), 1, + STATE(3772), 1, sym_label, - STATE(2294), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, - [71325] = 11, + [71765] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5226), 1, - anon_sym_SEMI, - STATE(1339), 1, - sym_block, - STATE(2536), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5162), 1, + anon_sym_LT, + STATE(732), 1, + sym_declaration_list, + STATE(2465), 1, + sym_type_parameters, + STATE(2776), 1, + sym_trait_bounds, + STATE(3432), 1, sym_where_clause, - STATE(3739), 1, - sym_label, - STATE(2295), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [71360] = 11, + [71800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + STATE(2303), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5129), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5142), 1, + [71821] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, + ACTIONS(5226), 1, anon_sym_SEMI, - ACTIONS(5230), 1, + ACTIONS(5228), 1, anon_sym_DASH_GT, - STATE(1296), 1, + STATE(1208), 1, sym_block, - STATE(2534), 1, + STATE(2543), 1, sym_where_clause, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2296), 2, + STATE(2304), 2, sym_line_comment, sym_block_comment, - [71395] = 11, + [71856] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - ACTIONS(4931), 1, + ACTIONS(4963), 1, sym_identifier, - STATE(1079), 1, + STATE(1095), 1, aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(3372), 1, + STATE(2919), 1, sym_field_declaration, - STATE(3627), 1, + STATE(3751), 1, sym_visibility_modifier, - STATE(2297), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [71430] = 10, + [71891] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5170), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5174), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5178), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5180), 1, sym_mutable_specifier, - ACTIONS(5232), 1, + ACTIONS(5230), 1, anon_sym_RBRACE, - ACTIONS(5234), 1, + ACTIONS(5232), 1, anon_sym_COMMA, - STATE(2298), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - STATE(2897), 2, + STATE(2880), 2, sym_field_pattern, sym_remaining_field_pattern, - [71463] = 11, + [71924] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1177), 1, + aux_sym_string_literal_token1, + STATE(2311), 1, + sym_string_literal, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4911), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71949] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - STATE(1079), 1, + ACTIONS(4963), 1, + sym_identifier, + STATE(1095), 1, aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + STATE(1122), 1, sym_attribute_item, - STATE(3206), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(3178), 1, + sym_field_declaration, + STATE(3751), 1, sym_visibility_modifier, - STATE(2299), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [71498] = 11, + [71984] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5234), 1, + anon_sym_SEMI, + STATE(1259), 1, + sym_block, + STATE(2599), 1, + sym_where_clause, + STATE(3775), 1, + sym_label, + STATE(2309), 2, + sym_line_comment, + sym_block_comment, + [72019] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5166), 1, anon_sym_LBRACE, ACTIONS(5236), 1, anon_sym_SEMI, - ACTIONS(5238), 1, - anon_sym_DASH_GT, - STATE(1349), 1, + STATE(748), 1, sym_block, - STATE(2537), 1, + STATE(2589), 1, sym_where_clause, - STATE(3739), 1, + STATE(3772), 1, sym_label, - STATE(2300), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [71533] = 11, + [72054] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + STATE(2311), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5238), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72075] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, ACTIONS(5240), 1, anon_sym_SEMI, - ACTIONS(5242), 1, - anon_sym_DASH_GT, - STATE(1233), 1, + STATE(582), 1, sym_block, - STATE(2531), 1, + STATE(2598), 1, sym_where_clause, - STATE(3739), 1, + STATE(3772), 1, sym_label, - STATE(2301), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [71568] = 11, + [72110] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5244), 1, + ACTIONS(5242), 1, anon_sym_SEMI, - STATE(703), 1, + STATE(1386), 1, sym_block, - STATE(2550), 1, + STATE(2542), 1, sym_where_clause, - STATE(3736), 1, + STATE(3775), 1, sym_label, - STATE(2302), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [71603] = 11, + [72145] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5244), 1, anon_sym_SEMI, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(593), 1, + STATE(1398), 1, sym_block, - STATE(2568), 1, + STATE(2544), 1, sym_where_clause, - STATE(3736), 1, + STATE(3775), 1, sym_label, - STATE(2303), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [71638] = 11, + [72180] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5162), 1, anon_sym_LT, - STATE(1242), 1, + STATE(721), 1, sym_declaration_list, - STATE(2423), 1, + STATE(2432), 1, sym_type_parameters, - STATE(2676), 1, + STATE(2772), 1, sym_trait_bounds, - STATE(3236), 1, + STATE(3307), 1, sym_where_clause, - STATE(2304), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - [71673] = 11, + [72215] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(1142), 1, - sym_declaration_list, - STATE(2442), 1, - sym_type_parameters, - STATE(2637), 1, - sym_trait_bounds, - STATE(3342), 1, + ACTIONS(5246), 1, + anon_sym_SEMI, + STATE(1409), 1, + sym_block, + STATE(2546), 1, sym_where_clause, - STATE(2305), 2, + STATE(3775), 1, + sym_label, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [71708] = 11, + [72250] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5152), 1, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5162), 1, anon_sym_LT, - ACTIONS(5250), 1, - anon_sym_SEMI, - ACTIONS(5252), 1, - anon_sym_EQ, - STATE(2443), 1, + STATE(1187), 1, + sym_declaration_list, + STATE(2436), 1, sym_type_parameters, - STATE(3097), 1, + STATE(2630), 1, sym_trait_bounds, - STATE(3349), 1, + STATE(3276), 1, sym_where_clause, - STATE(2306), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [71743] = 11, + [72285] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5248), 1, anon_sym_SEMI, - STATE(772), 1, + ACTIONS(5250), 1, + anon_sym_DASH_GT, + STATE(606), 1, sym_block, - STATE(2578), 1, + STATE(2579), 1, sym_where_clause, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2307), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, - [71778] = 11, + [72320] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4927), 1, - sym_crate, - ACTIONS(4931), 1, + ACTIONS(4949), 1, sym_identifier, - STATE(1115), 1, - sym_attribute_item, - STATE(2297), 1, + ACTIONS(4955), 1, + sym_crate, + STATE(1095), 1, aux_sym_enum_variant_list_repeat1, - STATE(3397), 1, - sym_field_declaration, - STATE(3627), 1, + STATE(1122), 1, + sym_attribute_item, + STATE(3083), 1, + sym_enum_variant, + STATE(3591), 1, sym_visibility_modifier, - STATE(2308), 2, - sym_line_comment, - sym_block_comment, - [71813] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_PIPE, - ACTIONS(4628), 1, - anon_sym_LPAREN, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5256), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2309), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [71846] = 11, + [72355] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5154), 1, - anon_sym_LT, - STATE(646), 1, - sym_declaration_list, - STATE(2475), 1, - sym_type_parameters, - STATE(2678), 1, - sym_trait_bounds, - STATE(3239), 1, + ACTIONS(5252), 1, + anon_sym_SEMI, + STATE(531), 1, + sym_block, + STATE(2602), 1, sym_where_clause, - STATE(2310), 2, + STATE(3772), 1, + sym_label, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [71881] = 11, + [72390] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_POUND, - ACTIONS(4921), 1, - sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4955), 1, sym_crate, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, + ACTIONS(4963), 1, + sym_identifier, + STATE(1122), 1, sym_attribute_item, - STATE(3111), 1, - sym_enum_variant, - STATE(3551), 1, + STATE(2286), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3222), 1, + sym_field_declaration, + STATE(3751), 1, sym_visibility_modifier, - STATE(2311), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [71916] = 11, + [72425] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5254), 1, + anon_sym_SEMI, + ACTIONS(5256), 1, + anon_sym_DASH_GT, + STATE(645), 1, + sym_block, + STATE(2590), 1, + sym_where_clause, + STATE(3772), 1, + sym_label, + STATE(2322), 2, + sym_line_comment, + sym_block_comment, + [72460] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5166), 1, anon_sym_LBRACE, ACTIONS(5258), 1, anon_sym_SEMI, + STATE(593), 1, + sym_block, + STATE(2525), 1, + sym_where_clause, + STATE(3772), 1, + sym_label, + STATE(2323), 2, + sym_line_comment, + sym_block_comment, + [72495] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5184), 1, + anon_sym_LBRACE, ACTIONS(5260), 1, + anon_sym_SEMI, + ACTIONS(5262), 1, anon_sym_DASH_GT, - STATE(1160), 1, + STATE(1240), 1, sym_block, - STATE(2522), 1, + STATE(2573), 1, sym_where_clause, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2312), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [71951] = 4, + [72530] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2313), 2, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + ACTIONS(5264), 1, + anon_sym_RBRACE, + ACTIONS(5266), 1, + anon_sym_COMMA, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 8, + STATE(3172), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72563] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5162), 1, + anon_sym_LT, + ACTIONS(5268), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5270), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + STATE(2468), 1, + sym_type_parameters, + STATE(3156), 1, + sym_trait_bounds, + STATE(3469), 1, + sym_where_clause, + STATE(2326), 2, + sym_line_comment, + sym_block_comment, + [72598] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_SQUOTE, + ACTIONS(5073), 1, anon_sym_where, - [71972] = 11, + ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + anon_sym_SEMI, + ACTIONS(5274), 1, + anon_sym_DASH_GT, + STATE(1289), 1, + sym_block, + STATE(2518), 1, + sym_where_clause, + STATE(3775), 1, + sym_label, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + [72633] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5262), 1, + ACTIONS(5276), 1, anon_sym_SEMI, - STATE(1304), 1, + ACTIONS(5278), 1, + anon_sym_DASH_GT, + STATE(1303), 1, sym_block, - STATE(2535), 1, + STATE(2523), 1, sym_where_clause, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2314), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [72007] = 11, + [72668] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5280), 1, + anon_sym_fn, + ACTIONS(5282), 1, + anon_sym_extern, + STATE(2297), 1, + aux_sym_function_modifiers_repeat1, + STATE(2435), 1, + sym_extern_modifier, + STATE(2329), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4678), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [72697] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5154), 1, + ACTIONS(5162), 1, anon_sym_LT, - STATE(1180), 1, + STATE(1249), 1, sym_declaration_list, - STATE(2424), 1, + STATE(2469), 1, sym_type_parameters, - STATE(2657), 1, + STATE(2654), 1, sym_trait_bounds, - STATE(3195), 1, + STATE(3381), 1, sym_where_clause, - STATE(2315), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [72042] = 6, + [72732] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - STATE(2316), 2, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + sym_identifier, + ACTIONS(4955), 1, + sym_crate, + STATE(1122), 1, + sym_attribute_item, + STATE(2287), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3214), 1, + sym_enum_variant, + STATE(3591), 1, + sym_visibility_modifier, + STATE(2331), 2, + sym_line_comment, + sym_block_comment, + [72767] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4716), 1, + anon_sym_trait, + ACTIONS(5284), 1, + anon_sym_impl, + STATE(2332), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, + ACTIONS(3558), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72067] = 9, + [72792] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5170), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5174), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5178), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5180), 1, sym_mutable_specifier, - ACTIONS(5264), 1, + ACTIONS(5286), 1, anon_sym_RBRACE, - STATE(2317), 2, + ACTIONS(5288), 1, + anon_sym_COMMA, + STATE(2333), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, + STATE(2900), 2, sym_field_pattern, sym_remaining_field_pattern, - [72097] = 10, + [72825] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RBRACK, - ACTIONS(5272), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(2356), 1, - aux_sym_macro_definition_repeat1, - STATE(3373), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2318), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5162), 1, + anon_sym_LT, + STATE(634), 1, + sym_declaration_list, + STATE(2403), 1, + sym_type_parameters, + STATE(2616), 1, + sym_trait_bounds, + STATE(3193), 1, + sym_where_clause, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [72129] = 10, + [72860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + STATE(2335), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5129), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [72881] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5274), 1, + ACTIONS(5296), 1, anon_sym_RBRACE, - STATE(2373), 1, + STATE(2392), 1, aux_sym_macro_definition_repeat1, - STATE(3395), 1, + STATE(3219), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2319), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [72161] = 10, + [72913] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_RPAREN, - STATE(2329), 1, + ACTIONS(5298), 1, + anon_sym_RBRACE, + STATE(2342), 1, aux_sym_macro_definition_repeat1, - STATE(3425), 1, + STATE(3204), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2320), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [72193] = 10, + [72945] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_RBRACK, - STATE(2337), 1, + ACTIONS(5300), 1, + anon_sym_RBRACE, + STATE(2343), 1, aux_sym_macro_definition_repeat1, - STATE(3427), 1, + STATE(3207), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2321), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - [72225] = 10, + [72977] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(4877), 1, + anon_sym_COLON_COLON, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5304), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5306), 1, + anon_sym_RBRACK, + ACTIONS(5308), 1, anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_RBRACE, - STATE(2326), 1, - aux_sym_macro_definition_repeat1, - STATE(3167), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2322), 2, + ACTIONS(5310), 1, + anon_sym_EQ, + STATE(3514), 1, + sym_delim_token_tree, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [72257] = 10, + [73009] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5067), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - ACTIONS(5280), 1, - anon_sym_RBRACE, - STATE(2369), 1, - aux_sym_macro_definition_repeat1, - STATE(3431), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2323), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5312), 1, + anon_sym_SEMI, + STATE(1176), 1, + sym_field_declaration_list, + STATE(3019), 1, + sym_ordered_field_declaration_list, + STATE(3267), 1, + sym_where_clause, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [72289] = 7, + [73041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2324), 2, + ACTIONS(5314), 1, + sym_identifier, + STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72315] = 8, + ACTIONS(4859), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73063] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5286), 1, - anon_sym_EQ, - ACTIONS(5284), 2, + ACTIONS(5316), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2325), 2, + STATE(2255), 1, + aux_sym_macro_definition_repeat1, + STATE(3302), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2342), 2, sym_line_comment, sym_block_comment, - STATE(3142), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72343] = 10, + [73095] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, + ACTIONS(5318), 1, anon_sym_RBRACE, - STATE(2224), 1, + STATE(2255), 1, aux_sym_macro_definition_repeat1, - STATE(3232), 1, + STATE(3303), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2326), 2, + STATE(2343), 2, + sym_line_comment, + sym_block_comment, + [73127] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5067), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5320), 1, + anon_sym_SEMI, + STATE(1246), 1, + sym_field_declaration_list, + STATE(2934), 1, + sym_ordered_field_declaration_list, + STATE(3379), 1, + sym_where_clause, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [72375] = 10, + [73159] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5290), 1, + ACTIONS(5322), 1, aux_sym_line_comment_token1, - ACTIONS(5292), 1, + ACTIONS(5324), 1, aux_sym_line_comment_token3, - ACTIONS(5294), 1, + ACTIONS(5326), 1, anon_sym_BANG2, - ACTIONS(5296), 1, + ACTIONS(5328), 1, anon_sym_SLASH2, - STATE(3524), 1, + STATE(3548), 1, sym__line_doc_comment_marker, - STATE(3539), 1, + STATE(3557), 1, sym__inner_line_doc_comment_marker, - STATE(3568), 1, + STATE(3584), 1, sym__outer_line_doc_comment_marker, - STATE(2327), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [72407] = 9, + [73191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5330), 1, + anon_sym_trait, + STATE(2346), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73213] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5170), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5174), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5178), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5180), 1, sym_mutable_specifier, - ACTIONS(5298), 1, + ACTIONS(5332), 1, anon_sym_RBRACE, - STATE(2328), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, + STATE(3442), 2, sym_field_pattern, sym_remaining_field_pattern, - [72437] = 10, + [73243] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5300), 1, - anon_sym_RPAREN, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3230), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2329), 2, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + ACTIONS(5334), 1, + anon_sym_RBRACE, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [72469] = 5, + STATE(3442), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5302), 1, + ACTIONS(5336), 1, sym_identifier, - STATE(2330), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, + ACTIONS(4859), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72491] = 10, + [73295] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5067), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RPAREN, - STATE(2374), 1, - aux_sym_macro_definition_repeat1, - STATE(3330), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2331), 2, + ACTIONS(5338), 1, + anon_sym_SEMI, + STATE(729), 1, + sym_field_declaration_list, + STATE(2982), 1, + sym_ordered_field_declaration_list, + STATE(3274), 1, + sym_where_clause, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [72523] = 10, + [73327] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(2346), 1, - aux_sym_macro_definition_repeat1, - STATE(3332), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2332), 2, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + ACTIONS(5340), 1, + anon_sym_RBRACE, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [72555] = 10, + STATE(3442), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73357] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + ACTIONS(5342), 1, + anon_sym_RBRACE, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + STATE(3442), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73387] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + ACTIONS(5344), 1, + anon_sym_RBRACE, + STATE(2353), 2, + sym_line_comment, + sym_block_comment, + STATE(3442), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73417] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + ACTIONS(5346), 1, + anon_sym_RBRACE, + STATE(2354), 2, + sym_line_comment, + sym_block_comment, + STATE(3442), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73447] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5348), 1, + sym_identifier, + ACTIONS(5350), 1, + anon_sym_async, + ACTIONS(5352), 1, + anon_sym_ref, + ACTIONS(5354), 1, + sym_mutable_specifier, + ACTIONS(5356), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, + STATE(2355), 2, + sym_line_comment, + sym_block_comment, + [73479] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5306), 1, - anon_sym_SEMI, - STATE(728), 1, - sym_field_declaration_list, - STATE(2890), 1, - sym_ordered_field_declaration_list, - STATE(3393), 1, - sym_where_clause, - STATE(2333), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5358), 1, + anon_sym_move, + STATE(239), 1, + sym_closure_parameters, + STATE(1511), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2356), 2, sym_line_comment, sym_block_comment, - [72587] = 10, + [73511] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5003), 1, + anon_sym_DOT_DOT, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5005), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2357), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4728), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73537] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RPAREN, - STATE(2350), 1, - aux_sym_macro_definition_repeat1, - STATE(3334), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2334), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5360), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, + STATE(492), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2358), 2, sym_line_comment, sym_block_comment, - [72619] = 10, + [73569] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5304), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_LBRACE, ACTIONS(5308), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, anon_sym_RBRACK, - STATE(2352), 1, - aux_sym_macro_definition_repeat1, - STATE(3336), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2335), 2, + ACTIONS(5364), 1, + anon_sym_EQ, + STATE(3497), 1, + sym_delim_token_tree, + STATE(2359), 2, sym_line_comment, sym_block_comment, - [72651] = 9, + [73601] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5310), 1, - anon_sym_RBRACE, - STATE(2336), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5366), 1, + anon_sym_move, + STATE(229), 1, + sym_closure_parameters, + STATE(1798), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2360), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72681] = 10, + [73633] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5067), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5300), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_macro_definition_repeat1, - STATE(3231), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2337), 2, + ACTIONS(5368), 1, + anon_sym_SEMI, + STATE(618), 1, + sym_field_declaration_list, + STATE(2975), 1, + sym_ordered_field_declaration_list, + STATE(3284), 1, + sym_where_clause, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [72713] = 9, + [73665] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5314), 1, + ACTIONS(5372), 1, anon_sym_STAR, - STATE(2861), 1, + STATE(2902), 1, sym_use_list, - STATE(3605), 1, + STATE(3735), 1, sym_type_arguments, - ACTIONS(5312), 2, + ACTIONS(5370), 2, sym_identifier, sym_super, - STATE(2338), 2, - sym_line_comment, - sym_block_comment, - [72743] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5316), 1, - sym_identifier, - STATE(2339), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72765] = 9, + [73695] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, + ACTIONS(5170), 1, sym_identifier, - ACTIONS(5202), 1, + ACTIONS(5174), 1, anon_sym_DOT_DOT, - ACTIONS(5206), 1, + ACTIONS(5178), 1, anon_sym_ref, - ACTIONS(5208), 1, + ACTIONS(5180), 1, sym_mutable_specifier, - ACTIONS(5318), 1, + ACTIONS(5374), 1, anon_sym_RBRACE, - STATE(2340), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, + STATE(3442), 2, sym_field_pattern, sym_remaining_field_pattern, - [72795] = 7, + [73725] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5320), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2341), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5376), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, + STATE(1511), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [72821] = 5, + [73757] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5322), 1, + ACTIONS(5170), 1, sym_identifier, - STATE(2342), 2, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + ACTIONS(5378), 1, + anon_sym_RBRACE, + STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72843] = 7, + STATE(3442), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73787] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(4995), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2343), 2, + ACTIONS(5290), 1, + anon_sym_LPAREN, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_RPAREN, + STATE(2372), 1, + aux_sym_macro_definition_repeat1, + STATE(3368), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(4654), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72869] = 8, + [73819] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2344), 2, + ACTIONS(5290), 1, + anon_sym_LPAREN, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_RBRACK, + STATE(2373), 1, + aux_sym_macro_definition_repeat1, + STATE(3370), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [72897] = 10, + [73851] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5270), 1, - anon_sym_RPAREN, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - STATE(2359), 1, + ACTIONS(5382), 1, + anon_sym_RPAREN, + STATE(2374), 1, aux_sym_macro_definition_repeat1, - STATE(3367), 1, + STATE(3372), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2345), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [72929] = 10, + [73883] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5330), 1, + ACTIONS(5382), 1, anon_sym_RBRACK, - STATE(2224), 1, + STATE(2375), 1, aux_sym_macro_definition_repeat1, - STATE(3355), 1, + STATE(3374), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2346), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - [72961] = 10, + [73915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - ACTIONS(5332), 1, - anon_sym_SEMI, - STATE(578), 1, - sym_field_declaration_list, - STATE(3081), 1, - sym_ordered_field_declaration_list, - STATE(3315), 1, - sym_where_clause, - STATE(2347), 2, + ACTIONS(5384), 1, + sym_identifier, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [72993] = 10, + ACTIONS(4859), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73937] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5388), 1, + anon_sym_COLON, + ACTIONS(5390), 1, anon_sym_COLON_COLON, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2348), 2, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5386), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [73025] = 9, + [73965] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5344), 1, - anon_sym_RBRACE, - STATE(2349), 2, + ACTIONS(5290), 1, + anon_sym_LPAREN, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, + anon_sym_LBRACE, + ACTIONS(5392), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_macro_definition_repeat1, + STATE(3391), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2372), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73055] = 10, + [73997] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, - anon_sym_RPAREN, - STATE(2224), 1, + ACTIONS(5392), 1, + anon_sym_RBRACK, + STATE(2255), 1, aux_sym_macro_definition_repeat1, - STATE(3356), 1, + STATE(3392), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2350), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [73087] = 5, + [74029] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5348), 1, - anon_sym_trait, - STATE(2351), 2, + ACTIONS(5290), 1, + anon_sym_LPAREN, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, + anon_sym_LBRACE, + ACTIONS(5394), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_macro_definition_repeat1, + STATE(3393), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73109] = 10, + [74061] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, + ACTIONS(5394), 1, anon_sym_RBRACK, - STATE(2224), 1, + STATE(2255), 1, aux_sym_macro_definition_repeat1, - STATE(3357), 1, + STATE(3394), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2352), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [73141] = 8, + [74093] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(5352), 1, + ACTIONS(5398), 1, anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(5400), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, + ACTIONS(5396), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2353), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [73169] = 7, + [74121] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(5354), 1, + ACTIONS(5400), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2354), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, + ACTIONS(3509), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [73195] = 8, + [74147] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_EQ, - ACTIONS(5356), 2, - anon_sym_RBRACE, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5398), 1, + anon_sym_COLON, + ACTIONS(5402), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5396), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2355), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - STATE(3109), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73223] = 10, + [74175] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, - anon_sym_RBRACK, - STATE(2224), 1, + ACTIONS(5404), 1, + anon_sym_RPAREN, + STATE(2385), 1, aux_sym_macro_definition_repeat1, - STATE(3207), 1, + STATE(3470), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2356), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [73255] = 10, + [74207] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, - anon_sym_RBRACE, - STATE(2224), 1, + ACTIONS(5404), 1, + anon_sym_RBRACK, + STATE(2390), 1, aux_sym_macro_definition_repeat1, - STATE(3302), 1, + STATE(3189), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2357), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - [73287] = 10, + [74239] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_LPAREN, - ACTIONS(5268), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(5364), 1, - anon_sym_RBRACE, - STATE(2357), 1, - aux_sym_macro_definition_repeat1, - STATE(3421), 1, - sym_macro_rule, - STATE(3564), 1, - sym_token_tree_pattern, - STATE(2358), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5372), 1, + anon_sym_STAR, + STATE(2902), 1, + sym_use_list, + STATE(3745), 1, + sym_type_arguments, + ACTIONS(5370), 2, + sym_identifier, + sym_super, + STATE(2381), 2, sym_line_comment, sym_block_comment, - [73319] = 10, + [74269] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5406), 1, anon_sym_RPAREN, - STATE(2224), 1, + STATE(2394), 1, aux_sym_macro_definition_repeat1, - STATE(3204), 1, + STATE(3227), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2359), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [73351] = 10, + [74301] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5340), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5366), 1, + ACTIONS(5406), 1, anon_sym_RBRACK, - ACTIONS(5368), 1, - anon_sym_EQ, - STATE(3464), 1, - sym_delim_token_tree, - STATE(2360), 2, - sym_line_comment, - sym_block_comment, - [73383] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2361), 2, - sym_line_comment, - sym_block_comment, - [73413] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(2362), 2, - sym_line_comment, - sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73443] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5372), 1, - anon_sym_RBRACE, - STATE(2363), 2, + STATE(2397), 1, + aux_sym_macro_definition_repeat1, + STATE(3229), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2383), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73473] = 9, + [74333] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - ACTIONS(5374), 1, + ACTIONS(5290), 1, + anon_sym_LPAREN, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, + anon_sym_LBRACE, + ACTIONS(5408), 1, anon_sym_RBRACE, - STATE(2364), 2, + STATE(2398), 1, + aux_sym_macro_definition_repeat1, + STATE(3239), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2384), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73503] = 5, + [74365] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - sym_identifier, - STATE(2365), 2, + ACTIONS(5290), 1, + anon_sym_LPAREN, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, + anon_sym_LBRACE, + ACTIONS(5410), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_macro_definition_repeat1, + STATE(3230), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73525] = 10, + [74397] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(5067), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5378), 1, - anon_sym_SEMI, - STATE(1239), 1, + ACTIONS(5414), 1, + anon_sym_EQ, + ACTIONS(5412), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2386), 2, + sym_line_comment, + sym_block_comment, + STATE(3111), 2, sym_field_declaration_list, - STATE(2926), 1, sym_ordered_field_declaration_list, - STATE(3225), 1, - sym_where_clause, - STATE(2366), 2, + [74425] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5402), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2387), 2, sym_line_comment, sym_block_comment, - [73557] = 5, + ACTIONS(3509), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [74451] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5380), 1, - anon_sym_trait, - STATE(2367), 2, + ACTIONS(4875), 1, + anon_sym_COLON_COLON, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, + anon_sym_LBRACK, + ACTIONS(5306), 1, + anon_sym_RBRACK, + ACTIONS(5308), 1, + anon_sym_LBRACE, + ACTIONS(5310), 1, + anon_sym_EQ, + STATE(3514), 1, + sym_delim_token_tree, + STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73579] = 10, + [74483] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, + ACTIONS(4769), 1, anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(5304), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(5306), 1, anon_sym_RBRACK, - ACTIONS(5340), 1, + ACTIONS(5308), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, + ACTIONS(5310), 1, anon_sym_EQ, - STATE(3466), 1, + STATE(3514), 1, sym_delim_token_tree, - STATE(2368), 2, + STATE(2389), 2, sym_line_comment, sym_block_comment, - [73611] = 10, + [74515] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, - anon_sym_RBRACE, - STATE(2224), 1, + ACTIONS(5410), 1, + anon_sym_RBRACK, + STATE(2255), 1, aux_sym_macro_definition_repeat1, - STATE(3307), 1, + STATE(3233), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2369), 2, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [73643] = 8, + [74547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(5282), 1, + ACTIONS(5416), 1, anon_sym_COLON_COLON, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(4640), 2, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5350), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2370), 2, + STATE(2391), 2, sym_line_comment, sym_block_comment, - [73671] = 10, + ACTIONS(3509), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [74573] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - ACTIONS(5334), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5340), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_EQ, - STATE(3466), 1, - sym_delim_token_tree, - STATE(2371), 2, + ACTIONS(5418), 1, + anon_sym_RBRACE, + STATE(2255), 1, + aux_sym_macro_definition_repeat1, + STATE(3236), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2392), 2, sym_line_comment, sym_block_comment, - [73703] = 10, + [74605] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5035), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5420), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, + STATE(1511), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + [74637] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5037), 1, + ACTIONS(5292), 1, + anon_sym_LBRACK, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5384), 1, - anon_sym_SEMI, - STATE(1169), 1, + ACTIONS(5422), 1, + anon_sym_RPAREN, + STATE(2255), 1, + aux_sym_macro_definition_repeat1, + STATE(3240), 1, + sym_macro_rule, + STATE(3782), 1, + sym_token_tree_pattern, + STATE(2394), 2, + sym_line_comment, + sym_block_comment, + [74669] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5067), 1, + anon_sym_LPAREN, + ACTIONS(5069), 1, + anon_sym_LBRACE, + ACTIONS(5426), 1, + anon_sym_EQ, + ACTIONS(5424), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + STATE(3079), 2, sym_field_declaration_list, - STATE(2879), 1, sym_ordered_field_declaration_list, - STATE(3423), 1, - sym_where_clause, - STATE(2372), 2, + [74697] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5428), 1, + anon_sym_trait, + STATE(2396), 2, sym_line_comment, sym_block_comment, - [73735] = 10, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74719] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5386), 1, - anon_sym_RBRACE, - STATE(2224), 1, + ACTIONS(5422), 1, + anon_sym_RBRACK, + STATE(2255), 1, aux_sym_macro_definition_repeat1, - STATE(3209), 1, + STATE(3257), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2373), 2, + STATE(2397), 2, sym_line_comment, sym_block_comment, - [73767] = 10, + [74751] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, + ACTIONS(5290), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5292), 1, anon_sym_LBRACK, - ACTIONS(5272), 1, + ACTIONS(5294), 1, anon_sym_LBRACE, - ACTIONS(5330), 1, - anon_sym_RPAREN, - STATE(2224), 1, + ACTIONS(5430), 1, + anon_sym_RBRACE, + STATE(2255), 1, aux_sym_macro_definition_repeat1, - STATE(3354), 1, + STATE(3258), 1, sym_macro_rule, - STATE(3564), 1, + STATE(3782), 1, sym_token_tree_pattern, - STATE(2374), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - [73799] = 9, + [74783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_SEMI, - STATE(762), 1, - sym_declaration_list, - STATE(3135), 1, - sym_where_clause, - STATE(2375), 2, + ACTIONS(5432), 1, + sym_identifier, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [73828] = 9, + ACTIONS(4859), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74805] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5390), 1, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5434), 1, anon_sym_SEMI, - STATE(1334), 1, - sym_declaration_list, - STATE(2963), 1, + ACTIONS(5436), 1, + anon_sym_EQ, + STATE(3080), 1, + sym_trait_bounds, + STATE(3399), 1, sym_where_clause, - STATE(2376), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - [73857] = 9, + [74834] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5392), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5438), 1, anon_sym_SEMI, - STATE(1162), 1, + STATE(690), 1, sym_declaration_list, - STATE(2874), 1, + STATE(3137), 1, sym_where_clause, - STATE(2377), 2, + STATE(2401), 2, sym_line_comment, sym_block_comment, - [73886] = 9, + [74863] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(1183), 1, - sym_enum_variant_list, - STATE(2659), 1, - sym_type_parameters, - STATE(3223), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5440), 1, + anon_sym_SEMI, + STATE(562), 1, + sym_declaration_list, + STATE(3002), 1, sym_where_clause, - STATE(2378), 2, - sym_line_comment, - sym_block_comment, - [73915] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2379), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [73936] = 9, + [74892] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5396), 1, - anon_sym_GT, - ACTIONS(5398), 1, - anon_sym_COMMA, - STATE(3024), 1, + STATE(720), 1, + sym_declaration_list, + STATE(2672), 1, sym_trait_bounds, - STATE(3025), 1, - aux_sym_type_arguments_repeat1, - STATE(2380), 2, - sym_line_comment, - sym_block_comment, - [73965] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_DOT_DOT, - STATE(2381), 2, + STATE(3190), 1, + sym_where_clause, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(909), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73986] = 9, + [74921] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, anon_sym_LBRACE, - STATE(751), 1, - sym_enum_variant_list, - STATE(2664), 1, - sym_type_parameters, - STATE(3387), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5442), 1, + anon_sym_SEMI, + STATE(1378), 1, + sym_declaration_list, + STATE(3062), 1, sym_where_clause, - STATE(2382), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - [74015] = 8, + [74950] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5402), 1, - anon_sym_if, - STATE(3741), 1, - sym_label, - STATE(1814), 2, - sym_if_expression, - sym_block, - STATE(2383), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5444), 1, + anon_sym_SEMI, + STATE(1380), 1, + sym_declaration_list, + STATE(3063), 1, + sym_where_clause, + STATE(2405), 2, sym_line_comment, sym_block_comment, - [74042] = 5, + [74979] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - anon_sym_DOT_DOT, - STATE(2384), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5446), 1, + anon_sym_SEMI, + STATE(715), 1, + sym_declaration_list, + STATE(3139), 1, + sym_where_clause, + STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(913), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74063] = 9, + [75008] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5404), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5448), 1, anon_sym_SEMI, - STATE(712), 1, + STATE(766), 1, sym_declaration_list, - STATE(2907), 1, + STATE(3147), 1, sym_where_clause, - STATE(2385), 2, + STATE(2407), 2, sym_line_comment, sym_block_comment, - [74092] = 5, + [75037] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(915), 1, - anon_sym_DOT_DOT, - STATE(2386), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5450), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_declaration_list, + STATE(3151), 1, + sym_where_clause, + STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(917), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74113] = 9, + [75066] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(651), 1, - sym_field_declaration_list, - STATE(2694), 1, - sym_type_parameters, - STATE(3346), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5452), 1, + anon_sym_SEMI, + STATE(564), 1, + sym_declaration_list, + STATE(3004), 1, sym_where_clause, - STATE(2387), 2, + STATE(2409), 2, sym_line_comment, sym_block_comment, - [74142] = 6, + [75095] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5068), 1, - anon_sym_for, - STATE(2388), 2, + ACTIONS(5456), 1, + anon_sym_COMMA, + STATE(2473), 1, + aux_sym_where_clause_repeat1, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(5454), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74165] = 7, + anon_sym_EQ, + anon_sym_SQUOTE, + [75118] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(5354), 1, + ACTIONS(5402), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, + ACTIONS(5458), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2389), 2, - sym_line_comment, - sym_block_comment, - [74190] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_DASH_GT, - STATE(2390), 2, + STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74211] = 9, + [75143] = 9, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - sym_identifier, - ACTIONS(5410), 1, - anon_sym_ref, - ACTIONS(5412), 1, - sym_mutable_specifier, - ACTIONS(5414), 1, - anon_sym_move, - STATE(238), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(215), 1, sym_closure_parameters, - STATE(2391), 2, + STATE(1453), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2412), 2, sym_line_comment, sym_block_comment, - [74240] = 9, + [75172] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3204), 1, anon_sym_PLUS, - ACTIONS(5152), 1, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_GT, - ACTIONS(5418), 1, + ACTIONS(5462), 1, anon_sym_COMMA, - STATE(2898), 1, + STATE(2884), 1, sym_trait_bounds, - STATE(2899), 1, + STATE(2885), 1, aux_sym_type_arguments_repeat1, - STATE(2392), 2, - sym_line_comment, - sym_block_comment, - [74269] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(5005), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5420), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2393), 2, - sym_line_comment, - sym_block_comment, - [74292] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2394), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [74315] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5072), 1, - anon_sym_for, - STATE(2395), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74338] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5423), 1, - anon_sym_SEMI, - STATE(717), 1, - sym_declaration_list, - STATE(3042), 1, - sym_where_clause, - STATE(2396), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - [74367] = 5, + [75201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5425), 1, + ACTIONS(5464), 1, anon_sym_DASH_GT, - STATE(2397), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 5, + ACTIONS(3664), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [74388] = 8, + [75222] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5427), 1, + ACTIONS(5466), 1, anon_sym_if, - STATE(3677), 1, + STATE(3776), 1, sym_label, - STATE(1471), 2, + STATE(484), 2, sym_if_expression, sym_block, - STATE(2398), 2, - sym_line_comment, - sym_block_comment, - [74415] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5429), 1, - anon_sym_SEMI, - STATE(1371), 1, - sym_declaration_list, - STATE(2967), 1, - sym_where_clause, - STATE(2399), 2, + STATE(2415), 2, sym_line_comment, sym_block_comment, - [74444] = 6, + [75249] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2405), 1, - aux_sym_where_clause_repeat1, - STATE(2400), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(5431), 4, - anon_sym_SEMI, + ACTIONS(5109), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [74467] = 9, + anon_sym_RBRACE, + [75268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5435), 1, - anon_sym_SEMI, - STATE(758), 1, - sym_declaration_list, - STATE(3126), 1, - sym_where_clause, - STATE(2401), 2, + ACTIONS(4797), 1, + anon_sym_DOT_DOT, + STATE(2417), 2, sym_line_comment, sym_block_comment, - [74496] = 9, + ACTIONS(4795), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75289] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3204), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5437), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, - STATE(3127), 1, - sym_where_clause, - STATE(2402), 2, - sym_line_comment, - sym_block_comment, - [74525] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5439), 1, - anon_sym_EQ, - STATE(2403), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3628), 4, - anon_sym_PLUS, + ACTIONS(5468), 1, anon_sym_GT, + ACTIONS(5470), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, - [74548] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2404), 2, + STATE(3134), 1, + sym_trait_bounds, + STATE(3135), 1, + aux_sym_type_arguments_repeat1, + STATE(2418), 2, sym_line_comment, sym_block_comment, - [74573] = 6, + [75318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5443), 1, + ACTIONS(5474), 1, anon_sym_COMMA, - STATE(2446), 1, - aux_sym_where_clause_repeat1, - STATE(2405), 2, + STATE(2419), 3, sym_line_comment, sym_block_comment, - ACTIONS(3481), 4, + aux_sym_where_clause_repeat1, + ACTIONS(5472), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [74596] = 9, + [75339] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5445), 1, - anon_sym_SEMI, - STATE(760), 1, - sym_declaration_list, - STATE(3131), 1, - sym_where_clause, - STATE(2406), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(256), 1, + sym_closure_parameters, + STATE(1453), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2420), 2, sym_line_comment, sym_block_comment, - [74625] = 9, + [75368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_SEMI, - STATE(1373), 1, - sym_declaration_list, - STATE(2968), 1, - sym_where_clause, - STATE(2407), 2, + ACTIONS(5477), 1, + anon_sym_DASH_GT, + STATE(2421), 2, sym_line_comment, sym_block_comment, - [74654] = 8, + ACTIONS(3676), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75389] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - sym_identifier, - ACTIONS(5202), 1, - anon_sym_DOT_DOT, - ACTIONS(5206), 1, - anon_sym_ref, - ACTIONS(5208), 1, - sym_mutable_specifier, - STATE(2408), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5479), 1, + anon_sym_GT, + ACTIONS(5481), 1, + anon_sym_COMMA, + STATE(2932), 1, + sym_trait_bounds, + STATE(2933), 1, + aux_sym_type_arguments_repeat1, + STATE(2422), 2, sym_line_comment, sym_block_comment, - STATE(3244), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74681] = 9, + [75418] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5483), 1, anon_sym_SEMI, - STATE(766), 1, + STATE(520), 1, sym_declaration_list, - STATE(3141), 1, + STATE(3129), 1, sym_where_clause, - STATE(2409), 2, + STATE(2423), 2, sym_line_comment, sym_block_comment, - [74710] = 9, + [75447] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5451), 1, - anon_sym_SEMI, - STATE(1254), 1, - sym_declaration_list, - STATE(2939), 1, - sym_where_clause, - STATE(2410), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5485), 1, + anon_sym_if, + STATE(3777), 1, + sym_label, + STATE(1836), 2, + sym_if_expression, + sym_block, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [74739] = 9, + [75474] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5453), 1, - anon_sym_SEMI, - STATE(1256), 1, - sym_declaration_list, - STATE(2940), 1, - sym_where_clause, - STATE(2411), 2, + ACTIONS(5487), 1, + anon_sym_DASH_GT, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [74768] = 9, + ACTIONS(3682), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75495] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1188), 1, - sym_field_declaration_list, - STATE(2661), 1, - sym_type_parameters, - STATE(3255), 1, - sym_where_clause, - STATE(2412), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_if, + STATE(3712), 1, + sym_label, + STATE(1447), 2, + sym_if_expression, + sym_block, + STATE(2426), 2, sym_line_comment, sym_block_comment, - [74797] = 9, + [75522] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - ACTIONS(5455), 1, - anon_sym_SEMI, - STATE(608), 1, - sym_declaration_list, - STATE(2970), 1, - sym_where_clause, - STATE(2413), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(252), 1, + sym_closure_parameters, + STATE(476), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [74826] = 9, + [75551] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5457), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5491), 1, anon_sym_SEMI, - STATE(611), 1, + STATE(1212), 1, sym_declaration_list, - STATE(3104), 1, + STATE(2907), 1, sym_where_clause, - STATE(2414), 2, - sym_line_comment, - sym_block_comment, - [74855] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_DOT_DOT, - STATE(2415), 2, + STATE(2428), 2, sym_line_comment, sym_block_comment, - ACTIONS(921), 5, - anon_sym_EQ_GT, + [75580] = 9, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74876] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5459), 1, - anon_sym_SEMI, - STATE(1260), 1, - sym_declaration_list, - STATE(2942), 1, - sym_where_clause, - STATE(2416), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(231), 1, + sym_closure_parameters, + STATE(1806), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2429), 2, sym_line_comment, sym_block_comment, - [74905] = 9, + [75609] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5461), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5493), 1, anon_sym_SEMI, - STATE(1262), 1, + STATE(1216), 1, sym_declaration_list, - STATE(2943), 1, + STATE(2911), 1, sym_where_clause, - STATE(2417), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - [74934] = 6, + [75638] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, - anon_sym_RBRACK, - ACTIONS(5005), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2418), 2, + ACTIONS(3646), 1, + anon_sym_COLON, + ACTIONS(5495), 1, + anon_sym_EQ, + STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 3, - anon_sym_SEMI, + ACTIONS(3644), 4, anon_sym_PLUS, - anon_sym_DASH_GT, - [74957] = 9, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [75661] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, - anon_sym_SEMI, - STATE(1205), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, + anon_sym_COLON, + STATE(621), 1, sym_declaration_list, - STATE(2915), 1, + STATE(2794), 1, + sym_trait_bounds, + STATE(3334), 1, sym_where_clause, - STATE(2419), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [74986] = 9, + [75690] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5465), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5497), 1, anon_sym_SEMI, - STATE(1209), 1, + STATE(522), 1, sym_declaration_list, - STATE(2916), 1, + STATE(2945), 1, sym_where_clause, - STATE(2420), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - [75015] = 9, + [75719] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5467), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5499), 1, anon_sym_SEMI, - STATE(719), 1, + STATE(1233), 1, sym_declaration_list, - STATE(3044), 1, + STATE(2923), 1, sym_where_clause, - STATE(2421), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [75044] = 9, + [75748] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5469), 1, - anon_sym_SEMI, - STATE(1226), 1, - sym_declaration_list, - STATE(2922), 1, - sym_where_clause, - STATE(2422), 2, + STATE(2435), 2, sym_line_comment, sym_block_comment, - [75073] = 9, + ACTIONS(3558), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75767] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, anon_sym_COLON, - STATE(1294), 1, + STATE(1238), 1, sym_declaration_list, - STATE(2689), 1, + STATE(2649), 1, sym_trait_bounds, - STATE(3328), 1, + STATE(3366), 1, sym_where_clause, - STATE(2423), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - [75102] = 9, + [75796] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, + ACTIONS(5501), 1, + anon_sym_RBRACK, + ACTIONS(4957), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3672), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [75819] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3672), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4957), 2, anon_sym_COLON, - STATE(1231), 1, - sym_declaration_list, - STATE(2674), 1, - sym_trait_bounds, - STATE(3203), 1, - sym_where_clause, - STATE(2424), 2, + anon_sym_PIPE, + ACTIONS(5501), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [75131] = 6, + [75842] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(5132), 1, + ACTIONS(5057), 1, anon_sym_for, - STATE(2425), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, + ACTIONS(3509), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75154] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [75865] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5471), 1, - anon_sym_if, - STATE(3532), 1, - sym_label, - STATE(406), 2, - sym_if_expression, - sym_block, - STATE(2426), 2, - sym_line_comment, - sym_block_comment, - [75181] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5473), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5504), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(608), 1, sym_declaration_list, - STATE(2962), 1, + STATE(2895), 1, sym_where_clause, - STATE(2427), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [75210] = 9, + [75894] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5475), 1, - anon_sym_SEMI, - STATE(626), 1, - sym_declaration_list, - STATE(3137), 1, - sym_where_clause, - STATE(2428), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(252), 1, + sym_closure_parameters, + STATE(404), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [75239] = 7, + [75923] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, + ACTIONS(4662), 1, anon_sym_DOT_DOT, - ACTIONS(5282), 1, + ACTIONS(5402), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, + ACTIONS(4664), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5441), 2, + ACTIONS(5386), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2429), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - [75264] = 5, + [75948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_DOT_DOT, - STATE(2430), 2, + ACTIONS(5506), 1, + anon_sym_DASH_GT, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(4755), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75285] = 9, + ACTIONS(3688), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75969] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5508), 1, + anon_sym_DASH_GT, + STATE(2444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3652), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75990] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3204), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5477), 1, - anon_sym_SEMI, - STATE(609), 1, - sym_declaration_list, - STATE(3018), 1, - sym_where_clause, - STATE(2431), 2, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5510), 1, + anon_sym_GT, + ACTIONS(5512), 1, + anon_sym_COMMA, + STATE(2972), 1, + sym_trait_bounds, + STATE(2973), 1, + aux_sym_type_arguments_repeat1, + STATE(2445), 2, sym_line_comment, sym_block_comment, - [75314] = 9, + [76019] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5479), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5514), 1, anon_sym_SEMI, - STATE(615), 1, + STATE(1169), 1, sym_declaration_list, - STATE(2903), 1, + STATE(2991), 1, sym_where_clause, - STATE(2432), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - [75343] = 5, + [76048] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2433), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(5086), 1, + anon_sym_for, + STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 4, - anon_sym_RPAREN, + ACTIONS(3509), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [75364] = 9, + anon_sym_where, + [76071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5481), 1, - anon_sym_SEMI, - STATE(521), 1, - sym_declaration_list, - STATE(3088), 1, - sym_where_clause, - STATE(2434), 2, + ACTIONS(4787), 1, + anon_sym_DOT_DOT, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [75393] = 6, + ACTIONS(4785), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5483), 1, - anon_sym_RBRACK, - ACTIONS(4973), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2435), 2, + ACTIONS(5516), 1, + anon_sym_DASH_GT, + STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 3, - anon_sym_SEMI, + ACTIONS(3658), 5, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH_GT, - [75416] = 9, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [76113] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5486), 1, - anon_sym_SEMI, - STATE(523), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, + anon_sym_COLON, + STATE(1179), 1, sym_declaration_list, - STATE(3106), 1, + STATE(2627), 1, + sym_trait_bounds, + STATE(3269), 1, sym_where_clause, - STATE(2436), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - [75445] = 9, + [76142] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5518), 1, anon_sym_SEMI, - STATE(618), 1, + STATE(524), 1, sym_declaration_list, - STATE(2964), 1, + STATE(2974), 1, sym_where_clause, - STATE(2437), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - [75474] = 9, + [76171] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(681), 1, - sym_declaration_list, - STATE(2665), 1, - sym_trait_bounds, - STATE(3385), 1, - sym_where_clause, - STATE(2438), 2, + ACTIONS(5520), 1, + anon_sym_RBRACK, + ACTIONS(5049), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2452), 2, sym_line_comment, sym_block_comment, - [75503] = 6, + ACTIONS(3698), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76194] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_for, - STATE(2439), 2, + ACTIONS(4807), 1, + anon_sym_DOT_DOT, + ACTIONS(4809), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75526] = 8, + ACTIONS(4650), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76217] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, + ACTIONS(4767), 1, anon_sym_COLON_COLON, - ACTIONS(5490), 1, + ACTIONS(5523), 1, anon_sym_GT, - ACTIONS(5492), 1, + ACTIONS(5525), 1, anon_sym_COMMA, - STATE(2984), 1, + STATE(3124), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3518), 2, + ACTIONS(3509), 2, anon_sym_PLUS, anon_sym_as, - STATE(2440), 2, + STATE(2454), 2, sym_line_comment, sym_block_comment, - [75553] = 5, + [76244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5494), 1, - anon_sym_DASH_GT, - STATE(2441), 2, + ACTIONS(945), 1, + anon_sym_DOT_DOT, + STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [75574] = 9, + ACTIONS(947), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76265] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(1172), 1, - sym_declaration_list, - STATE(2655), 1, - sym_trait_bounds, - STATE(3159), 1, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1151), 1, + sym_field_declaration_list, + STATE(2866), 1, + sym_type_parameters, + STATE(3478), 1, sym_where_clause, - STATE(2442), 2, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [75603] = 9, + [76294] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5496), 1, - anon_sym_SEMI, - ACTIONS(5498), 1, - anon_sym_EQ, - STATE(2881), 1, - sym_trait_bounds, - STATE(3179), 1, - sym_where_clause, - STATE(2443), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5386), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [75632] = 9, + [76319] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - STATE(1133), 1, + STATE(658), 1, sym_enum_variant_list, - STATE(2635), 1, + STATE(2659), 1, sym_type_parameters, - STATE(3310), 1, + STATE(3425), 1, sym_where_clause, - STATE(2444), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [75661] = 9, + [76348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(5500), 1, - anon_sym_SEMI, - STATE(1136), 1, - sym_declaration_list, - STATE(3080), 1, - sym_where_clause, - STATE(2445), 2, + ACTIONS(975), 1, + anon_sym_DOT_DOT, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [75690] = 5, + ACTIONS(977), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76369] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COMMA, - STATE(2446), 3, + ACTIONS(5170), 1, + sym_identifier, + ACTIONS(5174), 1, + anon_sym_DOT_DOT, + ACTIONS(5178), 1, + anon_sym_ref, + ACTIONS(5180), 1, + sym_mutable_specifier, + STATE(2460), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5502), 4, - anon_sym_SEMI, + STATE(3442), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [76396] = 8, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75711] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5116), 1, - anon_sym_for, - STATE(2447), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5529), 1, + anon_sym_if, + STATE(3702), 1, + sym_label, + STATE(399), 2, + sym_if_expression, + sym_block, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75734] = 6, + [76423] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5078), 1, - anon_sym_for, - STATE(2448), 2, + ACTIONS(1037), 1, + anon_sym_DOT_DOT, + STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75757] = 5, + ACTIONS(1039), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76444] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5507), 1, - anon_sym_DASH_GT, - STATE(2449), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(1261), 1, + sym_declaration_list, + STATE(2968), 1, + sym_where_clause, + STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3660), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [75778] = 6, + [76473] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2450), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3208), 1, anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, anon_sym_where, - [75801] = 9, + ACTIONS(5533), 1, + anon_sym_SEMI, + STATE(1263), 1, + sym_declaration_list, + STATE(2970), 1, + sym_where_clause, + STATE(2464), 2, + sym_line_comment, + sym_block_comment, + [76502] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5509), 1, - anon_sym_GT, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(3002), 1, + STATE(630), 1, + sym_declaration_list, + STATE(2743), 1, sym_trait_bounds, - STATE(3003), 1, - aux_sym_type_arguments_repeat1, - STATE(2451), 2, + STATE(3266), 1, + sym_where_clause, + STATE(2465), 2, sym_line_comment, sym_block_comment, - [75830] = 6, + [76531] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 2, + ACTIONS(3208), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4973), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5483), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2452), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5535), 1, + anon_sym_SEMI, + STATE(1267), 1, + sym_declaration_list, + STATE(2978), 1, + sym_where_clause, + STATE(2466), 2, sym_line_comment, sym_block_comment, - [75853] = 9, + [76560] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5513), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5537), 1, anon_sym_SEMI, - STATE(1179), 1, + STATE(1269), 1, sym_declaration_list, - STATE(2882), 1, + STATE(2980), 1, sym_where_clause, - STATE(2453), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - [75882] = 9, + [76589] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(588), 1, - sym_enum_variant_list, - STATE(2650), 1, - sym_type_parameters, - STATE(3347), 1, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5539), 1, + anon_sym_SEMI, + ACTIONS(5541), 1, + anon_sym_EQ, + STATE(3031), 1, + sym_trait_bounds, + STATE(3272), 1, sym_where_clause, - STATE(2454), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [75911] = 9, + [76618] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - STATE(1144), 1, - sym_field_declaration_list, - STATE(2639), 1, - sym_type_parameters, - STATE(3352), 1, + ACTIONS(5160), 1, + anon_sym_COLON, + STATE(1301), 1, + sym_declaration_list, + STATE(2668), 1, + sym_trait_bounds, + STATE(3421), 1, sym_where_clause, - STATE(2455), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - [75940] = 6, + [76647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5122), 1, - anon_sym_for, - STATE(2456), 2, + ACTIONS(981), 1, + anon_sym_DOT_DOT, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(983), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76668] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3698), 2, anon_sym_PLUS, - anon_sym_where, - [75963] = 9, + anon_sym_DASH_GT, + ACTIONS(5049), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5520), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2471), 2, + sym_line_comment, + sym_block_comment, + [76691] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(777), 1, - sym_field_declaration_list, - STATE(2691), 1, - sym_type_parameters, - STATE(3340), 1, - sym_where_clause, - STATE(2457), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5458), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [75992] = 9, + [76716] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5515), 1, + ACTIONS(5543), 1, + anon_sym_COMMA, + STATE(2419), 1, + aux_sym_where_clause_repeat1, + STATE(2473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3481), 4, anon_sym_SEMI, - ACTIONS(5517), 1, + anon_sym_LBRACE, anon_sym_EQ, - STATE(3016), 1, - sym_trait_bounds, - STATE(3212), 1, + anon_sym_SQUOTE, + [76739] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5545), 1, + anon_sym_SEMI, + STATE(684), 1, + sym_declaration_list, + STATE(3122), 1, sym_where_clause, - STATE(2458), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [76021] = 4, + [76768] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2459), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5547), 1, + anon_sym_SEMI, + STATE(1186), 1, + sym_declaration_list, + STATE(3050), 1, + sym_where_clause, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76040] = 9, + [76797] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5519), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5549), 1, anon_sym_SEMI, - STATE(563), 1, + STATE(750), 1, sym_declaration_list, - STATE(3095), 1, + STATE(2962), 1, sym_where_clause, - STATE(2460), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [76069] = 9, + [76826] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5521), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5551), 1, anon_sym_SEMI, - STATE(1312), 1, + STATE(752), 1, sym_declaration_list, - STATE(2956), 1, + STATE(3005), 1, sym_where_clause, - STATE(2461), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [76098] = 5, + [76855] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5523), 1, - anon_sym_DASH_GT, - STATE(2462), 2, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(643), 1, + sym_field_declaration_list, + STATE(2669), 1, + sym_type_parameters, + STATE(3398), 1, + sym_where_clause, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76119] = 7, + [76884] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5324), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2463), 2, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5553), 1, + anon_sym_LBRACE, + STATE(1190), 1, + sym_enum_variant_list, + STATE(2631), 1, + sym_type_parameters, + STATE(3281), 1, + sym_where_clause, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [76144] = 8, + [76913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5525), 1, - anon_sym_if, - STATE(3740), 1, - sym_label, - STATE(486), 2, - sym_if_expression, - sym_block, - STATE(2464), 2, + ACTIONS(4957), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [76171] = 5, + ACTIONS(3672), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [76934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_DOT_DOT, - STATE(2465), 2, + ACTIONS(5049), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [76192] = 9, + ACTIONS(3698), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [76955] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5527), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5555), 1, anon_sym_SEMI, - STATE(1314), 1, + STATE(664), 1, sym_declaration_list, - STATE(2957), 1, + STATE(2990), 1, sym_where_clause, - STATE(2466), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [76221] = 9, + [76984] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(568), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5557), 1, + anon_sym_SEMI, + STATE(633), 1, sym_declaration_list, - STATE(2692), 1, - sym_trait_bounds, - STATE(3256), 1, + STATE(3150), 1, sym_where_clause, - STATE(2467), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [76250] = 5, + [77013] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, - anon_sym_DASH_GT, - STATE(2468), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5559), 1, + anon_sym_SEMI, + STATE(526), 1, + sym_declaration_list, + STATE(3013), 1, + sym_where_clause, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76271] = 4, + [77042] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2469), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(5063), 1, + anon_sym_for, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3509), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - [76290] = 5, + anon_sym_PLUS, + anon_sym_where, + [77065] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, - anon_sym_DASH_GT, - STATE(2470), 2, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(735), 1, + sym_field_declaration_list, + STATE(2809), 1, + sym_type_parameters, + STATE(3344), 1, + sym_where_clause, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76311] = 9, + [77094] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5533), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5561), 1, anon_sym_SEMI, - STATE(1328), 1, + STATE(756), 1, sym_declaration_list, - STATE(2959), 1, + STATE(2953), 1, sym_where_clause, - STATE(2471), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [76340] = 9, + [77123] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, - anon_sym_SEMI, - STATE(599), 1, - sym_declaration_list, - STATE(3130), 1, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1195), 1, + sym_field_declaration_list, + STATE(2632), 1, + sym_type_parameters, + STATE(3288), 1, sym_where_clause, - STATE(2472), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - [76369] = 9, + [77152] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5563), 1, anon_sym_SEMI, - STATE(1330), 1, + STATE(1319), 1, sym_declaration_list, - STATE(2960), 1, + STATE(3032), 1, sym_where_clause, - STATE(2473), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [76398] = 9, + [77181] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(2474), 2, - sym_line_comment, - sym_block_comment, - [76427] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(731), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5565), 1, + anon_sym_SEMI, + STATE(758), 1, sym_declaration_list, - STATE(2604), 1, - sym_trait_bounds, - STATE(3343), 1, + STATE(2967), 1, sym_where_clause, - STATE(2475), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - [76456] = 4, + [77210] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2476), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(5148), 1, + anon_sym_for, + STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(5543), 5, + ACTIONS(3509), 4, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - [76474] = 8, + [77233] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(5545), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5567), 1, anon_sym_SEMI, - STATE(706), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2477), 2, + STATE(1321), 1, + sym_declaration_list, + STATE(3033), 1, + sym_where_clause, + STATE(2492), 2, sym_line_comment, sym_block_comment, - [76500] = 7, + [77262] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2478), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5569), 1, + anon_sym_SEMI, + STATE(1335), 1, + sym_declaration_list, + STATE(3038), 1, + sym_where_clause, + STATE(2493), 2, sym_line_comment, sym_block_comment, - [76524] = 6, + [77291] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3886), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5015), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5551), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2479), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5571), 1, + anon_sym_SEMI, + STATE(1337), 1, + sym_declaration_list, + STATE(3039), 1, + sym_where_clause, + STATE(2494), 2, sym_line_comment, sym_block_comment, - [76546] = 6, + [77320] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(5558), 1, - anon_sym_as, - STATE(2480), 2, + ACTIONS(5156), 1, + anon_sym_for, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(5554), 3, + ACTIONS(3509), 4, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76568] = 7, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77343] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5562), 1, - anon_sym_STAR, - STATE(3027), 1, - sym_use_list, - ACTIONS(5560), 2, - sym_identifier, - sym_super, - STATE(2481), 2, + STATE(638), 1, + sym_enum_variant_list, + STATE(2635), 1, + sym_type_parameters, + STATE(3331), 1, + sym_where_clause, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [76592] = 6, + [77372] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(5568), 1, - anon_sym_as, - STATE(2482), 2, + ACTIONS(5152), 1, + anon_sym_for, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, + ACTIONS(3509), 4, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76614] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2483), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 5, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76632] = 4, + anon_sym_where, + [77395] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2484), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5573), 1, + anon_sym_SEMI, + STATE(1339), 1, + sym_declaration_list, + STATE(3047), 1, + sym_where_clause, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(5570), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76650] = 4, + [77424] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2485), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(5154), 1, + anon_sym_for, + STATE(2499), 2, sym_line_comment, sym_block_comment, - ACTIONS(5572), 5, + ACTIONS(3509), 4, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - [76668] = 4, + [77447] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2486), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5575), 1, + anon_sym_SEMI, + STATE(1341), 1, + sym_declaration_list, + STATE(3048), 1, + sym_where_clause, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(5574), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76686] = 8, + [77476] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1522), 1, + STATE(252), 1, + sym_closure_parameters, + STATE(1453), 1, sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2487), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - [76712] = 4, + [77505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2488), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(5104), 1, + anon_sym_for, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 5, + ACTIONS(3509), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_where, - [76730] = 8, + [77528] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5071), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5553), 1, anon_sym_LBRACE, - ACTIONS(5576), 1, - anon_sym_SEMI, - STATE(550), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2489), 2, + STATE(1140), 1, + sym_enum_variant_list, + STATE(2856), 1, + sym_type_parameters, + STATE(3446), 1, + sym_where_clause, + STATE(2503), 2, sym_line_comment, sym_block_comment, - [76756] = 6, + [77557] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, - anon_sym_as, - ACTIONS(5578), 1, - anon_sym_COLON_COLON, - STATE(2490), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5564), 3, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5577), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76778] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2491), 2, + STATE(1143), 1, + sym_declaration_list, + STATE(3148), 1, + sym_where_clause, + STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76796] = 4, + [77586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2492), 2, + ACTIONS(5579), 1, + anon_sym_DASH_GT, + STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3692), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76814] = 4, + ACTIONS(3702), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2493), 2, + STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76832] = 8, + ACTIONS(5581), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77625] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5580), 1, + ACTIONS(5583), 1, anon_sym_SEMI, - STATE(555), 1, + STATE(580), 1, sym_block, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2494), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - [76858] = 4, + [77651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2495), 2, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 5, + ACTIONS(3718), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [76876] = 4, + [77669] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2496), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1764), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(5582), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76894] = 4, + [77695] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2497), 2, + STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(5584), 5, + ACTIONS(3568), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76912] = 8, + [77713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5586), 1, - sym_identifier, - ACTIONS(5588), 1, - anon_sym_GT, - ACTIONS(5590), 1, - anon_sym_COMMA, - STATE(3051), 1, - sym_lifetime, - STATE(2498), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - [76938] = 8, + ACTIONS(5585), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1433), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2499), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - [76964] = 4, + ACTIONS(3726), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [77749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2500), 2, + STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(5592), 5, + ACTIONS(5587), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76982] = 4, + [77767] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2501), 2, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5468), 1, + anon_sym_GT, + ACTIONS(5470), 1, + anon_sym_COMMA, + STATE(3134), 1, + sym_trait_bounds, + STATE(3135), 1, + aux_sym_type_arguments_repeat1, + STATE(2514), 2, sym_line_comment, sym_block_comment, - ACTIONS(5594), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77000] = 6, + [77793] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, - anon_sym_as, - ACTIONS(5596), 1, - anon_sym_COLON_COLON, - STATE(2502), 2, + ACTIONS(5589), 1, + anon_sym_RPAREN, + ACTIONS(5591), 1, + anon_sym_COMMA, + STATE(2877), 1, + aux_sym_parameters_repeat1, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2515), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [77022] = 8, + [77817] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5598), 1, - anon_sym_SEMI, - STATE(560), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1869), 1, sym_block, - STATE(3736), 1, + STATE(3777), 1, sym_label, - STATE(2503), 2, + STATE(2516), 2, sym_line_comment, sym_block_comment, - [77048] = 8, + [77843] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4969), 1, + ACTIONS(5593), 1, anon_sym_RPAREN, - ACTIONS(5600), 1, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(3027), 1, + aux_sym_parameters_repeat1, + ACTIONS(4650), 2, anon_sym_COLON, - ACTIONS(5602), 1, anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, - STATE(2504), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [77074] = 7, + [77867] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5599), 1, + anon_sym_SEMI, + STATE(1344), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2518), 2, + sym_line_comment, + sym_block_comment, + [77893] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3796), 1, anon_sym_PLUS, - ACTIONS(5152), 1, + ACTIONS(5037), 2, anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, + anon_sym_PIPE, + ACTIONS(5601), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2505), 2, + STATE(2519), 2, sym_line_comment, sym_block_comment, - [77098] = 4, + [77915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2506), 2, + ACTIONS(5037), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(5608), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3796), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_where, - [77116] = 8, + [77935] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3076), 1, anon_sym_SQUOTE, - ACTIONS(5610), 1, - anon_sym_move, - STATE(481), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2507), 2, + ACTIONS(5604), 1, + sym_identifier, + ACTIONS(5606), 1, + anon_sym_GT, + ACTIONS(5608), 1, + anon_sym_COMMA, + STATE(2922), 1, + sym_lifetime, + STATE(2521), 2, sym_line_comment, sym_block_comment, - [77142] = 4, + [77961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2508), 2, + ACTIONS(5612), 1, + anon_sym_COLON_COLON, + ACTIONS(5614), 1, + anon_sym_as, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 5, + ACTIONS(5610), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77160] = 8, + anon_sym_RBRACE, + anon_sym_COMMA, + [77983] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5612), 1, - anon_sym_SEMI, - ACTIONS(5614), 1, - anon_sym_COLON, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5184), 1, + anon_sym_LBRACE, ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5618), 1, - anon_sym_EQ, - ACTIONS(5620), 1, - anon_sym_else, - STATE(2509), 2, + anon_sym_SEMI, + STATE(1358), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2523), 2, sym_line_comment, sym_block_comment, - [77186] = 5, + [78009] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2510), 2, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(5620), 1, + anon_sym_STAR, + STATE(3181), 1, + sym_use_list, + ACTIONS(5618), 2, + sym_identifier, + sym_super, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3518), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77206] = 7, + [78033] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(5352), 1, - anon_sym_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2511), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5622), 1, + anon_sym_SEMI, + STATE(599), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2525), 2, sym_line_comment, sym_block_comment, - [77230] = 8, + [78059] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PIPE, - ACTIONS(5622), 1, - anon_sym_SEMI, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5184), 1, + anon_sym_LBRACE, ACTIONS(5624), 1, - anon_sym_COLON, - ACTIONS(5626), 1, - anon_sym_EQ, - ACTIONS(5628), 1, - anon_sym_else, - STATE(2512), 2, + anon_sym_SEMI, + STATE(1363), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2526), 2, sym_line_comment, sym_block_comment, - [77256] = 8, + [78085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5630), 1, - sym_identifier, - ACTIONS(5632), 1, - anon_sym_GT, - ACTIONS(5634), 1, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(5626), 1, anon_sym_COMMA, - STATE(2863), 1, - sym_lifetime, - STATE(2513), 2, + STATE(2888), 1, + aux_sym_parameters_repeat1, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2527), 2, sym_line_comment, sym_block_comment, - [77282] = 8, + [78109] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1450), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2514), 2, + ACTIONS(1369), 1, + anon_sym_RPAREN, + ACTIONS(5628), 1, + anon_sym_COMMA, + STATE(2960), 1, + aux_sym_parameters_repeat1, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2528), 2, sym_line_comment, sym_block_comment, - [77308] = 8, + [78133] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(1154), 1, - sym_parameters, - STATE(2006), 1, - sym_type_arguments, - STATE(2515), 2, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(5372), 1, + anon_sym_STAR, + STATE(2902), 1, + sym_use_list, + ACTIONS(5370), 2, + sym_identifier, + sym_super, + STATE(2529), 2, sym_line_comment, sym_block_comment, - [77334] = 8, + [78157] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - ACTIONS(5539), 1, - anon_sym_GT, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(3048), 1, - sym_trait_bounds, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, - STATE(2516), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1779), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2530), 2, sym_line_comment, sym_block_comment, - [77360] = 8, + [78183] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_PIPE, - ACTIONS(5636), 1, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5630), 1, anon_sym_SEMI, - ACTIONS(5638), 1, - anon_sym_COLON, - ACTIONS(5640), 1, - anon_sym_EQ, - ACTIONS(5642), 1, - anon_sym_else, - STATE(2517), 2, + STATE(1210), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2531), 2, sym_line_comment, sym_block_comment, - [77386] = 8, + [78209] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5644), 1, + ACTIONS(5632), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(1388), 1, sym_block, - STATE(3736), 1, + STATE(3775), 1, sym_label, - STATE(2518), 2, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [77412] = 8, + [78235] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(4981), 1, + anon_sym_PIPE, + ACTIONS(5634), 1, + anon_sym_SEMI, + ACTIONS(5636), 1, + anon_sym_COLON, + ACTIONS(5638), 1, + anon_sym_EQ, + ACTIONS(5640), 1, + anon_sym_else, + STATE(2533), 2, + sym_line_comment, + sym_block_comment, + [78261] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1904), 1, + STATE(1532), 1, sym_block, - STATE(3741), 1, + STATE(3712), 1, sym_label, - STATE(2519), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [77438] = 8, + [78287] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5416), 1, + STATE(3045), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3350), 1, + sym_trait_bounds, + ACTIONS(5642), 2, anon_sym_GT, - ACTIONS(5418), 1, anon_sym_COMMA, - STATE(2898), 1, - sym_trait_bounds, - STATE(2899), 1, - aux_sym_type_arguments_repeat1, - STATE(2520), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - [77464] = 7, + [78311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - ACTIONS(5648), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2521), 2, + STATE(2536), 2, sym_line_comment, sym_block_comment, - [77488] = 8, + ACTIONS(5644), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78329] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5650), 1, + ACTIONS(5646), 1, anon_sym_SEMI, - STATE(1203), 1, + STATE(1396), 1, sym_block, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2522), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [77514] = 8, + [78355] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1747), 1, + STATE(1544), 1, sym_block, - STATE(3741), 1, + STATE(3712), 1, sym_label, - STATE(2523), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [77540] = 7, + [78381] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2524), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [77564] = 4, + ACTIONS(5648), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78399] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2525), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3390), 5, anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77582] = 7, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [78417] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, + ACTIONS(5652), 1, + anon_sym_COLON_COLON, ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2526), 2, + anon_sym_as, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [77606] = 8, + ACTIONS(5650), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78439] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, ACTIONS(5656), 1, anon_sym_SEMI, - STATE(1250), 1, + STATE(1406), 1, sym_block, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2527), 2, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [77632] = 8, + [78465] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, ACTIONS(5658), 1, anon_sym_SEMI, - STATE(498), 1, + STATE(1257), 1, sym_block, - STATE(3736), 1, + STATE(3775), 1, sym_label, - STATE(2528), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [77658] = 8, + [78491] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1886), 1, + ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5660), 1, + anon_sym_SEMI, + STATE(1411), 1, sym_block, - STATE(3741), 1, + STATE(3775), 1, sym_label, - STATE(2529), 2, + STATE(2544), 2, sym_line_comment, sym_block_comment, - [77684] = 8, + [78517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2468), 1, - sym_parameters, - STATE(2530), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [77710] = 8, + ACTIONS(5662), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78535] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5660), 1, + ACTIONS(5664), 1, anon_sym_SEMI, - STATE(1284), 1, + STATE(1415), 1, sym_block, - STATE(3739), 1, + STATE(3775), 1, sym_label, - STATE(2531), 2, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [77736] = 8, + [78561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5662), 1, + ACTIONS(5666), 1, + anon_sym_RBRACK, + ACTIONS(3509), 2, anon_sym_SEMI, - STATE(540), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2532), 2, + anon_sym_PLUS, + ACTIONS(4650), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [77762] = 8, + [78583] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5664), 1, - anon_sym_SEMI, - STATE(1337), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2533), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + ACTIONS(4825), 1, + anon_sym_COLON, + STATE(2020), 1, + sym_type_arguments, + STATE(2613), 1, + sym_trait_bounds, + STATE(2548), 2, sym_line_comment, sym_block_comment, - [77788] = 8, + [78609] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5666), 1, - anon_sym_SEMI, - STATE(1351), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1508), 1, sym_block, - STATE(3739), 1, + STATE(3712), 1, sym_label, - STATE(2534), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - [77814] = 8, + [78635] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5668), 1, + ACTIONS(5669), 1, anon_sym_SEMI, - STATE(1356), 1, + STATE(529), 1, sym_block, - STATE(3739), 1, + STATE(3772), 1, sym_label, - STATE(2535), 2, + STATE(2550), 2, sym_line_comment, sym_block_comment, - [77840] = 8, + [78661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5670), 1, - anon_sym_SEMI, - STATE(1381), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2536), 2, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [77866] = 8, + ACTIONS(3586), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78679] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5672), 1, - anon_sym_SEMI, - STATE(1389), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2537), 2, + ACTIONS(4945), 1, + anon_sym_RPAREN, + ACTIONS(5671), 1, + anon_sym_COLON, + ACTIONS(5673), 1, + anon_sym_PIPE, + ACTIONS(5675), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_closure_parameters_repeat1, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [77892] = 8, + [78705] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5674), 1, - anon_sym_SEMI, - STATE(1399), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2538), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(1161), 1, + sym_parameters, + STATE(2020), 1, + sym_type_arguments, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [77918] = 8, + [78731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5676), 1, - anon_sym_SEMI, - STATE(1404), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2539), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - [77944] = 8, + ACTIONS(3582), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78749] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5678), 1, - anon_sym_SEMI, - STATE(1408), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2540), 2, + ACTIONS(5654), 1, + anon_sym_as, + ACTIONS(5677), 1, + anon_sym_COLON_COLON, + STATE(2555), 2, sym_line_comment, sym_block_comment, - [77970] = 8, + ACTIONS(5650), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [78771] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3076), 1, anon_sym_SQUOTE, - ACTIONS(5680), 1, - anon_sym_move, - STATE(1778), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2541), 2, + ACTIONS(5679), 1, + sym_identifier, + ACTIONS(5681), 1, + anon_sym_GT, + ACTIONS(5683), 1, + anon_sym_COMMA, + STATE(3185), 1, + sym_lifetime, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [77996] = 8, + [78797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5684), 1, - anon_sym_GT, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(2997), 1, - sym_lifetime, - STATE(2542), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - [78022] = 8, + ACTIONS(5685), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78815] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, + ACTIONS(4114), 1, anon_sym_LPAREN, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(1697), 1, + STATE(1655), 1, sym_parameters, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2543), 2, + STATE(2558), 2, sym_line_comment, sym_block_comment, - [78048] = 8, + [78841] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5509), 1, + STATE(3376), 1, + sym_trait_bounds, + ACTIONS(5687), 2, anon_sym_GT, - ACTIONS(5511), 1, anon_sym_COMMA, - STATE(3002), 1, - sym_trait_bounds, - STATE(3003), 1, - aux_sym_type_arguments_repeat1, - STATE(2544), 2, + STATE(2559), 2, sym_line_comment, sym_block_comment, - [78074] = 7, + [78865] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, + STATE(2560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5689), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + anon_sym_SQUOTE, + [78883] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5160), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2545), 2, + ACTIONS(5460), 1, + anon_sym_GT, + ACTIONS(5462), 1, + anon_sym_COMMA, + STATE(2884), 1, + sym_trait_bounds, + STATE(2885), 1, + aux_sym_type_arguments_repeat1, + STATE(2561), 2, sym_line_comment, sym_block_comment, - [78098] = 8, + [78909] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5692), 1, - anon_sym_STAR_SLASH, - ACTIONS(5694), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5696), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5698), 1, - sym__block_comment_content, - STATE(3369), 1, - sym__block_doc_comment_marker, - STATE(2546), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5388), 1, + anon_sym_COLON, + ACTIONS(5390), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2562), 2, sym_line_comment, sym_block_comment, - [78124] = 7, + [78933] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + ACTIONS(5691), 1, anon_sym_RPAREN, - ACTIONS(5700), 1, + ACTIONS(5693), 1, anon_sym_COMMA, - STATE(2846), 1, + STATE(2887), 1, aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(4650), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2547), 2, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [78148] = 8, + [78957] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5704), 1, - anon_sym_COLON, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, - STATE(2548), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5695), 1, + anon_sym_SEMI, + STATE(746), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [78174] = 8, + [78983] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(5160), 1, anon_sym_COLON, - ACTIONS(5396), 1, + ACTIONS(5510), 1, anon_sym_GT, - ACTIONS(5398), 1, + ACTIONS(5512), 1, anon_sym_COMMA, - STATE(3024), 1, + STATE(2972), 1, sym_trait_bounds, - STATE(3025), 1, + STATE(2973), 1, aux_sym_type_arguments_repeat1, - STATE(2549), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [78200] = 8, + [79009] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3509), 1, + anon_sym_PLUS, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5666), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2566), 2, + sym_line_comment, + sym_block_comment, + [79031] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5708), 1, + ACTIONS(5697), 1, anon_sym_SEMI, - STATE(504), 1, + STATE(590), 1, sym_block, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2550), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - [78226] = 7, + [79057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(5712), 1, - anon_sym_STAR, - STATE(2854), 1, - sym_use_list, - ACTIONS(5710), 2, - sym_identifier, - sym_super, - STATE(2551), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [78250] = 7, + ACTIONS(5699), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79075] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4274), 1, - anon_sym_LBRACE, - ACTIONS(5314), 1, - anon_sym_STAR, - STATE(2861), 1, - sym_use_list, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2552), 2, + ACTIONS(5701), 1, + anon_sym_STAR_SLASH, + ACTIONS(5703), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5705), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5707), 1, + sym__block_comment_content, + STATE(3411), 1, + sym__block_doc_comment_marker, + STATE(2569), 2, sym_line_comment, sym_block_comment, - [78274] = 4, + [79101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2553), 2, + STATE(2570), 2, sym_line_comment, sym_block_comment, - ACTIONS(5714), 5, + ACTIONS(5709), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78292] = 8, + [79119] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_POUND, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5718), 1, - sym_integer_literal, - STATE(1079), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1115), 1, - sym_attribute_item, - STATE(2554), 2, + ACTIONS(1375), 1, + anon_sym_RPAREN, + ACTIONS(5711), 1, + anon_sym_COMMA, + STATE(2897), 1, + aux_sym_parameters_repeat1, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2571), 2, sym_line_comment, sym_block_comment, - [78318] = 5, + [79143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 2, - anon_sym_COLON, + STATE(2572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5713), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79161] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5184), 1, + anon_sym_LBRACE, + ACTIONS(5715), 1, + anon_sym_SEMI, + STATE(1291), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2573), 2, + sym_line_comment, + sym_block_comment, + [79187] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3830), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2574), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4833), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - STATE(2555), 2, + anon_sym_if, + [79207] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(4676), 1, + anon_sym_COLON_COLON, + STATE(2020), 1, + sym_type_arguments, + STATE(2425), 1, + sym_parameters, + STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(3886), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78338] = 4, + [79233] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2556), 2, + STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(5720), 5, + ACTIONS(5717), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78356] = 4, + [79251] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2557), 2, + STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(5722), 5, + ACTIONS(5719), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78374] = 7, + [79269] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(5160), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2558), 2, + STATE(3350), 1, + sym_trait_bounds, + ACTIONS(5642), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2578), 2, sym_line_comment, sym_block_comment, - [78398] = 8, + [79293] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5726), 1, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5721), 1, anon_sym_SEMI, - ACTIONS(5728), 1, - anon_sym_COLON, - ACTIONS(5730), 1, - anon_sym_EQ, - ACTIONS(5732), 1, - anon_sym_else, - STATE(2559), 2, + STATE(681), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2579), 2, sym_line_comment, sym_block_comment, - [78424] = 7, + [79319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, + ACTIONS(5601), 1, + anon_sym_RBRACK, + ACTIONS(3796), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5037), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2560), 2, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [78448] = 5, + [79341] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2561), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5723), 1, + anon_sym_SEMI, + STATE(786), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78468] = 4, + [79367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2562), 2, + STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(5734), 5, + ACTIONS(3578), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [78486] = 5, + [79385] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2563), 2, + ACTIONS(5160), 1, + anon_sym_COLON, + ACTIONS(5479), 1, + anon_sym_GT, + ACTIONS(5481), 1, + anon_sym_COMMA, + STATE(2932), 1, + sym_trait_bounds, + STATE(2933), 1, + aux_sym_type_arguments_repeat1, + STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78506] = 7, + [79411] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_EQ, - ACTIONS(5152), 1, + ACTIONS(5725), 1, + anon_sym_RPAREN, + ACTIONS(5727), 1, anon_sym_COLON, - STATE(3099), 1, - sym_trait_bounds, - ACTIONS(4778), 2, - anon_sym_GT, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(5731), 1, anon_sym_COMMA, - STATE(2564), 2, + STATE(2979), 1, + aux_sym_slice_pattern_repeat1, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [78530] = 4, + [79437] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2565), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5390), 1, + anon_sym_COLON_COLON, + ACTIONS(5398), 1, + anon_sym_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(5736), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78548] = 4, + [79461] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2566), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1794), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(5738), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78566] = 4, + [79487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2567), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5740), 5, + ACTIONS(5472), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - [78584] = 8, + [79505] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(5733), 1, anon_sym_SEMI, - STATE(603), 1, - sym_block, - STATE(3736), 1, - sym_label, - STATE(2568), 2, + ACTIONS(5735), 1, + anon_sym_COLON, + ACTIONS(5737), 1, + anon_sym_EQ, + ACTIONS(5739), 1, + anon_sym_else, + STATE(2588), 2, sym_line_comment, sym_block_comment, - [78610] = 8, + [79531] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5744), 1, + ACTIONS(5741), 1, anon_sym_SEMI, - STATE(659), 1, + STATE(675), 1, sym_block, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2569), 2, + STATE(2589), 2, sym_line_comment, sym_block_comment, - [78636] = 7, + [79557] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, - anon_sym_RPAREN, - ACTIONS(5749), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2570), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5743), 1, + anon_sym_SEMI, + STATE(543), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [78660] = 6, + [79583] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4827), 1, + anon_sym_EQ, + ACTIONS(5160), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5752), 2, - anon_sym_RPAREN, + STATE(3091), 1, + sym_trait_bounds, + ACTIONS(4829), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2571), 2, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [78682] = 7, + [79607] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5326), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2572), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5745), 1, + sym_identifier, + ACTIONS(5747), 1, + anon_sym_GT, + ACTIONS(5749), 1, + anon_sym_COMMA, + STATE(2910), 1, + sym_lifetime, + STATE(2592), 2, sym_line_comment, sym_block_comment, - [78706] = 8, + [79633] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2567), 1, - sym_trait_bounds, - STATE(2573), 2, + STATE(2593), 2, sym_line_comment, sym_block_comment, - [78732] = 8, + ACTIONS(3694), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79651] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5755), 1, - anon_sym_move, - STATE(1452), 1, + STATE(1455), 1, sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2574), 2, + STATE(2594), 2, sym_line_comment, sym_block_comment, - [78758] = 6, + [79677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_RBRACK, - ACTIONS(3518), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4626), 2, + ACTIONS(4650), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_COMMA, - STATE(2575), 2, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [78780] = 4, + ACTIONS(3509), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [79697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2576), 2, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 5, + ACTIONS(5751), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [78798] = 4, + [79715] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5502), 5, + ACTIONS(4981), 1, + anon_sym_PIPE, + ACTIONS(5753), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5755), 1, + anon_sym_COLON, + ACTIONS(5757), 1, anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5759), 1, + anon_sym_else, + STATE(2597), 2, + sym_line_comment, + sym_block_comment, + [79741] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, anon_sym_SQUOTE, - [78816] = 8, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5761), 1, + anon_sym_SEMI, + STATE(595), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2598), 2, + sym_line_comment, + sym_block_comment, + [79767] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5184), 1, anon_sym_LBRACE, - ACTIONS(5757), 1, + ACTIONS(5763), 1, anon_sym_SEMI, - STATE(531), 1, + STATE(1313), 1, sym_block, - STATE(3736), 1, + STATE(3775), 1, sym_label, - STATE(2578), 2, + STATE(2599), 2, + sym_line_comment, + sym_block_comment, + [79793] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3914), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2600), 2, sym_line_comment, sym_block_comment, - [78842] = 8, + ACTIONS(4833), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79813] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5759), 1, + ACTIONS(5765), 1, anon_sym_EQ, - STATE(3150), 1, + STATE(3164), 1, sym_type_parameters, - STATE(3718), 1, + STATE(3753), 1, sym_where_clause, - STATE(2579), 2, + STATE(2601), 2, + sym_line_comment, + sym_block_comment, + [79839] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5767), 1, + anon_sym_SEMI, + STATE(572), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2602), 2, + sym_line_comment, + sym_block_comment, + [79865] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3074), 1, + anon_sym_POUND, + ACTIONS(5769), 1, + sym_identifier, + ACTIONS(5771), 1, + sym_integer_literal, + STATE(1095), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(2603), 2, + sym_line_comment, + sym_block_comment, + [79891] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [78868] = 8, + ACTIONS(5773), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79909] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5071), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5761), 1, + ACTIONS(5775), 1, anon_sym_EQ, - STATE(2934), 1, + STATE(2958), 1, sym_type_parameters, - STATE(3526), 1, + STATE(3572), 1, sym_where_clause, - STATE(2580), 2, + STATE(2605), 2, sym_line_comment, sym_block_comment, - [78894] = 6, + [79935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, - anon_sym_RBRACK, - ACTIONS(3886), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(5015), 2, + STATE(2606), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3708), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79953] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5654), 1, + anon_sym_as, + ACTIONS(5777), 1, + anon_sym_COLON_COLON, + STATE(2607), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5650), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2581), 2, + [79975] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(5779), 1, + anon_sym_SEMI, + ACTIONS(5781), 1, + anon_sym_COLON, + ACTIONS(5783), 1, + anon_sym_EQ, + ACTIONS(5785), 1, + anon_sym_else, + STATE(2608), 2, sym_line_comment, sym_block_comment, - [78916] = 8, + [80001] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5136), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5763), 1, + ACTIONS(5787), 1, anon_sym_SEMI, - STATE(596), 1, + STATE(546), 1, sym_block, - STATE(3736), 1, + STATE(3772), 1, sym_label, - STATE(2582), 2, + STATE(2609), 2, + sym_line_comment, + sym_block_comment, + [80027] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5789), 1, + anon_sym_RPAREN, + ACTIONS(5791), 1, + anon_sym_COMMA, + STATE(3027), 1, + aux_sym_parameters_repeat1, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2610), 2, + sym_line_comment, + sym_block_comment, + [80051] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(5795), 1, + anon_sym_STAR, + STATE(3028), 1, + sym_use_list, + ACTIONS(5793), 2, + sym_identifier, + sym_super, + STATE(2611), 2, sym_line_comment, sym_block_comment, - [78942] = 8, + [80075] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4676), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2081), 1, + STATE(2094), 1, sym_parameters, - STATE(2583), 2, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [78968] = 8, + [80101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(5765), 1, + STATE(2613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5797), 5, anon_sym_SEMI, - STATE(1306), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2584), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80119] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1369), 1, + anon_sym_RPAREN, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5628), 1, + anon_sym_COMMA, + STATE(2960), 1, + aux_sym_parameters_repeat1, + STATE(2614), 2, sym_line_comment, sym_block_comment, - [78994] = 7, + [80142] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3717), 1, + STATE(1522), 1, sym_block, - STATE(2585), 2, + STATE(3712), 1, + sym_label, + STATE(2615), 2, sym_line_comment, sym_block_comment, - [79017] = 7, + [80165] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4869), 1, - anon_sym_for, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - STATE(2006), 1, - sym_type_arguments, - STATE(2586), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + STATE(719), 1, + sym_declaration_list, + STATE(3472), 1, + sym_where_clause, + STATE(2616), 2, sym_line_comment, sym_block_comment, - [79040] = 4, + [80188] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2587), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4732), 1, + anon_sym_BANG, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(4414), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [79057] = 5, - ACTIONS(3), 1, + [80211] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5769), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2588), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + STATE(3745), 1, + sym_type_arguments, + ACTIONS(5799), 2, + sym_identifier, + sym_super, + STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(5771), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79076] = 7, + [80232] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5773), 1, + STATE(3735), 1, + sym_type_arguments, + ACTIONS(5799), 2, sym_identifier, - ACTIONS(5775), 1, sym_super, - STATE(2099), 1, - sym_type_arguments, - STATE(2589), 2, + STATE(2619), 2, + sym_line_comment, + sym_block_comment, + [80253] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(5801), 1, + anon_sym_RPAREN, + ACTIONS(5803), 1, + anon_sym_COMMA, + STATE(3141), 1, + aux_sym_slice_pattern_repeat1, + STATE(2620), 2, + sym_line_comment, + sym_block_comment, + [80276] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(5805), 1, + anon_sym_RPAREN, + ACTIONS(5807), 1, + anon_sym_COMMA, + STATE(3155), 1, + aux_sym_slice_pattern_repeat1, + STATE(2621), 2, + sym_line_comment, + sym_block_comment, + [80299] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5589), 1, + anon_sym_RPAREN, + ACTIONS(5591), 1, + anon_sym_COMMA, + STATE(2877), 1, + aux_sym_parameters_repeat1, + STATE(2622), 2, sym_line_comment, sym_block_comment, - [79099] = 5, + [80322] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5777), 1, - anon_sym_COMMA, - ACTIONS(4308), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2590), 3, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5809), 1, + anon_sym_SEMI, + STATE(3623), 1, + sym_where_clause, + STATE(2623), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79118] = 7, + [80345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5780), 1, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(5811), 1, anon_sym_RPAREN, - ACTIONS(5782), 1, + ACTIONS(5813), 1, anon_sym_COMMA, - STATE(2971), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2591), 2, + STATE(3001), 1, + aux_sym_slice_pattern_repeat1, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [79141] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80368] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(400), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2592), 2, + STATE(2625), 2, sym_line_comment, sym_block_comment, - [79164] = 7, - ACTIONS(19), 1, + ACTIONS(4442), 4, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [80385] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(399), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2593), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5815), 1, + anon_sym_SEMI, + ACTIONS(5817), 1, + anon_sym_EQ, + ACTIONS(5819), 1, + anon_sym_else, + STATE(2626), 2, sym_line_comment, sym_block_comment, - [79187] = 5, - ACTIONS(3), 1, + [80408] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5784), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2594), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1226), 1, + sym_declaration_list, + STATE(3361), 1, + sym_where_clause, + STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(5786), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79206] = 7, + [80431] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, - anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - STATE(2595), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5821), 1, + anon_sym_SEMI, + STATE(3523), 1, + sym_where_clause, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [79229] = 7, + [80454] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5788), 1, - anon_sym_RPAREN, - ACTIONS(5790), 1, + ACTIONS(5823), 1, + anon_sym_EQ, + ACTIONS(5825), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3114), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2596), 2, + STATE(2629), 2, sym_line_comment, sym_block_comment, - [79252] = 6, + [80475] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5792), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2597), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1237), 1, + sym_declaration_list, + STATE(3365), 1, + sym_where_clause, + STATE(2630), 2, sym_line_comment, sym_block_comment, - [79273] = 7, + [80498] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5553), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1457), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2598), 2, + STATE(1242), 1, + sym_enum_variant_list, + STATE(3377), 1, + sym_where_clause, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [79296] = 7, + [80521] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5069), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1248), 1, + sym_field_declaration_list, + STATE(3380), 1, + sym_where_clause, + STATE(2632), 2, + sym_line_comment, + sym_block_comment, + [80544] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1464), 1, + STATE(1476), 1, sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2599), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [79319] = 6, + [80567] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5796), 1, - anon_sym_DQUOTE, - STATE(2619), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2600), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + STATE(3745), 1, + sym_type_arguments, + ACTIONS(5827), 2, + sym_identifier, + sym_super, + STATE(2634), 2, sym_line_comment, sym_block_comment, - [79340] = 7, + [80588] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1603), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(2165), 1, - sym_block, - STATE(3732), 1, - sym_label, - STATE(2601), 2, + STATE(725), 1, + sym_enum_variant_list, + STATE(3480), 1, + sym_where_clause, + STATE(2635), 2, sym_line_comment, sym_block_comment, - [79363] = 7, + [80611] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(476), 1, + STATE(1512), 1, sym_block, - STATE(3740), 1, + STATE(3712), 1, sym_label, - STATE(2602), 2, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [79386] = 7, + [80634] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1453), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2603), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5829), 1, + anon_sym_COLON_COLON, + ACTIONS(5831), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [79409] = 7, + [80657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(500), 1, - sym_declaration_list, - STATE(3456), 1, - sym_where_clause, - STATE(2604), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + STATE(3735), 1, + sym_type_arguments, + ACTIONS(5827), 2, + sym_identifier, + sym_super, + STATE(2638), 2, sym_line_comment, sym_block_comment, - [79432] = 6, + [80678] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT_DOT, - ACTIONS(5798), 1, - anon_sym_COLON_COLON, - ACTIONS(4803), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2605), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3712), 1, + sym_label, + STATE(3788), 1, + sym_block, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [79453] = 7, + [80701] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_SEMI, - STATE(3603), 1, - sym_where_clause, - STATE(2606), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(5835), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2640), 2, sym_line_comment, sym_block_comment, - [79476] = 7, + [80724] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_delim_token_tree, - STATE(2607), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(5837), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2641), 2, sym_line_comment, sym_block_comment, - [79499] = 7, + [80747] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, - STATE(1488), 1, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2025), 1, sym_type_arguments, - STATE(2608), 2, + STATE(2443), 1, + sym_parameters, + STATE(2642), 2, sym_line_comment, sym_block_comment, - [79522] = 7, + [80770] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(5013), 1, - anon_sym_BANG, - STATE(1123), 1, + ACTIONS(5827), 1, + sym_super, + ACTIONS(5839), 1, + sym_identifier, + STATE(3735), 1, sym_type_arguments, - STATE(2609), 2, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [79545] = 6, + [80793] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, - STATE(2610), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5841), 1, + anon_sym_SEMI, + ACTIONS(5843), 1, + anon_sym_EQ, + ACTIONS(5845), 1, + anon_sym_else, + STATE(2644), 2, sym_line_comment, sym_block_comment, - [79566] = 7, + [80816] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1486), 1, - sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2611), 2, + STATE(3806), 1, + sym_block, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [79589] = 7, + [80839] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, - anon_sym_LBRACE, - STATE(1487), 1, - sym_delim_token_tree, - STATE(2612), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5847), 1, + anon_sym_SEMI, + STATE(3510), 1, + sym_where_clause, + STATE(2646), 2, sym_line_comment, sym_block_comment, - [79612] = 7, + [80862] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1489), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2613), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5849), 1, + anon_sym_SEMI, + STATE(3609), 1, + sym_where_clause, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [79635] = 7, + [80885] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1134), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2614), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5851), 1, + anon_sym_SEMI, + STATE(3611), 1, + sym_where_clause, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [79658] = 7, + [80908] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5810), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2615), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1286), 1, + sym_declaration_list, + STATE(3414), 1, + sym_where_clause, + STATE(2649), 2, sym_line_comment, sym_block_comment, - [79681] = 6, + [80931] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5775), 2, - sym_identifier, - sym_super, - STATE(2616), 2, + ACTIONS(5853), 1, + anon_sym_async, + ACTIONS(5855), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [79702] = 4, + [80954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2617), 2, + STATE(2651), 2, sym_line_comment, sym_block_comment, - ACTIONS(5812), 4, + ACTIONS(5857), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [79719] = 7, + [80971] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1496), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2618), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5859), 1, + anon_sym_SEMI, + ACTIONS(5861), 1, + anon_sym_EQ, + ACTIONS(5863), 1, + anon_sym_else, + STATE(2652), 2, sym_line_comment, sym_block_comment, - [79742] = 6, + [80994] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5814), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2619), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5865), 1, + anon_sym_SEMI, + STATE(3625), 1, + sym_where_clause, + STATE(2653), 2, sym_line_comment, sym_block_comment, - [79763] = 7, + [81017] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5334), 1, - anon_sym_LPAREN, - ACTIONS(5336), 1, - anon_sym_LBRACK, - ACTIONS(5340), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - STATE(1497), 1, - sym_delim_token_tree, - STATE(2620), 2, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1300), 1, + sym_declaration_list, + STATE(3419), 1, + sym_where_clause, + STATE(2654), 2, sym_line_comment, sym_block_comment, - [79786] = 7, + [81040] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, - STATE(1616), 1, - sym_type_arguments, - STATE(2621), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(410), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2655), 2, sym_line_comment, sym_block_comment, - [79809] = 7, + [81063] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5818), 1, - anon_sym_SEMI, - STATE(3606), 1, - sym_where_clause, - STATE(2622), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(5867), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2656), 2, sym_line_comment, sym_block_comment, - [79832] = 7, + [81086] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, sym_identifier, - STATE(1609), 1, - sym_type_arguments, - STATE(2623), 2, + ACTIONS(5869), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [79855] = 7, + [81109] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(4650), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5820), 1, + ACTIONS(5871), 2, anon_sym_RPAREN, - ACTIONS(5822), 1, anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2624), 2, + STATE(2658), 2, sym_line_comment, sym_block_comment, - [79878] = 7, + [81128] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5824), 1, - anon_sym_RBRACK, - ACTIONS(5826), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_slice_pattern_repeat1, - STATE(2625), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5527), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_enum_variant_list, + STATE(3245), 1, + sym_where_clause, + STATE(2659), 2, sym_line_comment, sym_block_comment, - [79901] = 7, + [81151] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, - STATE(2626), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3569), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2660), 2, sym_line_comment, sym_block_comment, - [79924] = 7, + [81174] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5828), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2627), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5390), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [79947] = 7, + [81195] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5830), 1, - anon_sym_RPAREN, - ACTIONS(5832), 1, - anon_sym_COMMA, - STATE(2855), 1, - aux_sym_tuple_type_repeat1, - STATE(2628), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3585), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [79970] = 7, + [81218] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5834), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2629), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5873), 1, + anon_sym_SEMI, + STATE(3674), 1, + sym_where_clause, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [79993] = 6, + [81241] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2630), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(416), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [80014] = 7, + [81264] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5312), 1, + ACTIONS(5827), 1, sym_super, - ACTIONS(5836), 1, + ACTIONS(5875), 1, sym_identifier, - STATE(3605), 1, + STATE(2122), 1, sym_type_arguments, - STATE(2631), 2, + STATE(2665), 2, sym_line_comment, sym_block_comment, - [80037] = 7, + [81287] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1155), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, - STATE(2632), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5877), 1, + anon_sym_SEMI, + STATE(3716), 1, + sym_where_clause, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [80060] = 7, + [81310] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2633), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5879), 1, + anon_sym_SEMI, + STATE(3717), 1, + sym_where_clause, + STATE(2667), 2, sym_line_comment, sym_block_comment, - [80083] = 7, + [81333] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3609), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2634), 2, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1353), 1, + sym_declaration_list, + STATE(3450), 1, + sym_where_clause, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [80106] = 7, + [81356] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - STATE(1158), 1, - sym_enum_variant_list, - STATE(3214), 1, + STATE(731), 1, + sym_field_declaration_list, + STATE(3383), 1, sym_where_clause, - STATE(2635), 2, + STATE(2669), 2, + sym_line_comment, + sym_block_comment, + [81379] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_LT, + STATE(2322), 1, + sym_parameters, + STATE(3232), 1, + sym_type_parameters, + STATE(2670), 2, sym_line_comment, sym_block_comment, - [80129] = 7, + [81402] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, + ACTIONS(4927), 1, anon_sym_for, - STATE(2006), 1, + ACTIONS(5829), 1, + anon_sym_COLON_COLON, + STATE(2020), 1, sym_type_arguments, - STATE(2636), 2, + STATE(2671), 2, sym_line_comment, sym_block_comment, - [80152] = 7, + [81425] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(1171), 1, + ACTIONS(5073), 1, + anon_sym_where, + STATE(781), 1, sym_declaration_list, - STATE(3457), 1, + STATE(3430), 1, sym_where_clause, - STATE(2637), 2, + STATE(2672), 2, sym_line_comment, sym_block_comment, - [80175] = 7, + [81448] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(398), 1, + STATE(368), 1, sym_block, - STATE(3532), 1, + STATE(3702), 1, sym_label, - STATE(2638), 2, + STATE(2673), 2, sym_line_comment, sym_block_comment, - [80198] = 7, + [81471] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5041), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, anon_sym_where, - STATE(1177), 1, - sym_field_declaration_list, - STATE(3186), 1, + ACTIONS(5881), 1, + anon_sym_SEMI, + STATE(3732), 1, sym_where_clause, - STATE(2639), 2, + STATE(2674), 2, sym_line_comment, sym_block_comment, - [80221] = 7, + [81494] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2640), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5883), 1, + anon_sym_RPAREN, + ACTIONS(5885), 1, + anon_sym_COMMA, + STATE(3166), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2675), 2, sym_line_comment, sym_block_comment, - [80244] = 7, + [81517] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1451), 1, + STATE(3707), 1, sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2641), 2, + STATE(2676), 2, sym_line_comment, sym_block_comment, - [80267] = 7, + [81540] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5702), 1, - anon_sym_RPAREN, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_slice_pattern_repeat1, - STATE(2642), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_LT, + STATE(2291), 1, + sym_parameters, + STATE(3305), 1, + sym_type_parameters, + STATE(2677), 2, sym_line_comment, sym_block_comment, - [80290] = 7, + [81563] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - STATE(567), 1, - sym_declaration_list, - STATE(3166), 1, - sym_where_clause, - STATE(2643), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(494), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2678), 2, sym_line_comment, sym_block_comment, - [80313] = 7, + [81586] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5773), 1, - sym_identifier, - ACTIONS(5775), 1, - sym_super, - STATE(2102), 1, - sym_type_arguments, - STATE(2644), 2, + ACTIONS(1403), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(498), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [80336] = 6, + [81609] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, - sym_super, - STATE(2645), 2, + ACTIONS(5887), 1, + anon_sym_DQUOTE, + STATE(2694), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2680), 2, sym_line_comment, sym_block_comment, - [80357] = 6, + [81630] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5840), 2, - sym_identifier, - sym_super, - STATE(2646), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(5184), 1, + anon_sym_LBRACE, + STATE(2883), 1, + sym_block, + STATE(3775), 1, + sym_label, + STATE(2681), 2, sym_line_comment, sym_block_comment, - [80378] = 7, + [81653] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(5602), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, - STATE(2647), 2, + ACTIONS(5891), 1, + anon_sym_async, + ACTIONS(5893), 1, + anon_sym_move, + STATE(239), 1, + sym_closure_parameters, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [80401] = 7, + [81676] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_RPAREN, - ACTIONS(5844), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_slice_pattern_repeat1, - STATE(2648), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1801), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [80424] = 7, + [81699] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_RPAREN, - ACTIONS(5848), 1, - anon_sym_COMMA, - STATE(2902), 1, - aux_sym_slice_pattern_repeat1, - STATE(2649), 2, + ACTIONS(4118), 1, + anon_sym_LT2, + ACTIONS(4302), 1, + anon_sym_COLON_COLON, + ACTIONS(4985), 1, + anon_sym_BANG, + STATE(1696), 1, + sym_type_arguments, + STATE(2684), 2, sym_line_comment, sym_block_comment, - [80447] = 7, + [81722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, + ACTIONS(5895), 1, + anon_sym_DQUOTE, + ACTIONS(5897), 2, + sym_string_content, + sym_escape_sequence, + STATE(2685), 3, + sym_line_comment, + sym_block_comment, + aux_sym_string_literal_repeat1, + [81741] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(701), 1, - sym_enum_variant_list, - STATE(3426), 1, - sym_where_clause, - STATE(2650), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3614), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [80470] = 7, + [81764] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5646), 1, + ACTIONS(5789), 1, anon_sym_RPAREN, - ACTIONS(5648), 1, + ACTIONS(5791), 1, anon_sym_COMMA, - STATE(2906), 1, + STATE(3027), 1, aux_sym_parameters_repeat1, - STATE(2651), 2, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [80493] = 5, + [81787] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - STATE(2652), 2, + ACTIONS(5900), 1, + anon_sym_LPAREN, + ACTIONS(5902), 1, + anon_sym_LBRACK, + ACTIONS(5904), 1, + anon_sym_LBRACE, + STATE(2049), 1, + sym_delim_token_tree, + STATE(2688), 2, sym_line_comment, sym_block_comment, - ACTIONS(5850), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [80512] = 7, + [81810] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5852), 1, - anon_sym_SEMI, - ACTIONS(5854), 1, - anon_sym_EQ, - ACTIONS(5856), 1, - anon_sym_else, - STATE(2653), 2, + ACTIONS(1403), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(477), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2689), 2, sym_line_comment, sym_block_comment, - [80535] = 7, + [81833] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(3519), 1, + STATE(462), 1, sym_block, - STATE(3677), 1, + STATE(3776), 1, sym_label, - STATE(2654), 2, + STATE(2690), 2, sym_line_comment, sym_block_comment, - [80558] = 7, + [81856] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1219), 1, - sym_declaration_list, - STATE(3197), 1, + ACTIONS(5906), 1, + anon_sym_SEMI, + STATE(3774), 1, sym_where_clause, - STATE(2655), 2, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [80581] = 7, + [81879] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5858), 1, - anon_sym_SEMI, - STATE(3699), 1, - sym_where_clause, - STATE(2656), 2, + ACTIONS(5671), 1, + anon_sym_COLON, + ACTIONS(5673), 1, + anon_sym_PIPE, + ACTIONS(5675), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_closure_parameters_repeat1, + STATE(2692), 2, sym_line_comment, sym_block_comment, - [80604] = 7, + [81902] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - STATE(1230), 1, - sym_declaration_list, - STATE(3202), 1, - sym_where_clause, - STATE(2657), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(479), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2693), 2, sym_line_comment, sym_block_comment, - [80627] = 6, + [81925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3363), 1, - sym_trait_bounds, - ACTIONS(5652), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2658), 2, + ACTIONS(5908), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2694), 2, sym_line_comment, sym_block_comment, - [80648] = 7, + [81946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5394), 1, + ACTIONS(5900), 1, + anon_sym_LPAREN, + ACTIONS(5902), 1, + anon_sym_LBRACK, + ACTIONS(5904), 1, anon_sym_LBRACE, - STATE(1235), 1, - sym_enum_variant_list, - STATE(3218), 1, - sym_where_clause, - STATE(2659), 2, + STATE(2047), 1, + sym_delim_token_tree, + STATE(2695), 2, sym_line_comment, sym_block_comment, - [80671] = 7, + [81969] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5860), 1, - anon_sym_SEMI, - STATE(3745), 1, - sym_where_clause, - STATE(2660), 2, + ACTIONS(4118), 1, + anon_sym_LT2, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(5912), 1, + sym_super, + STATE(1626), 1, + sym_type_arguments, + STATE(2696), 2, sym_line_comment, sym_block_comment, - [80694] = 7, + [81992] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_where, - STATE(1241), 1, - sym_field_declaration_list, - STATE(3229), 1, - sym_where_clause, - STATE(2661), 2, + ACTIONS(4118), 1, + anon_sym_LT2, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(5912), 1, + sym_super, + STATE(1629), 1, + sym_type_arguments, + STATE(2697), 2, + sym_line_comment, + sym_block_comment, + [82015] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5799), 1, + sym_super, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(5916), 1, + anon_sym_LT2, + STATE(2574), 1, + sym_type_arguments, + STATE(2698), 2, + sym_line_comment, + sym_block_comment, + [82038] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5799), 1, + sym_super, + ACTIONS(5914), 1, + sym_identifier, + ACTIONS(5916), 1, + anon_sym_LT2, + STATE(2600), 1, + sym_type_arguments, + STATE(2699), 2, sym_line_comment, sym_block_comment, - [80717] = 7, + [82061] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5862), 1, - anon_sym_SEMI, - STATE(3747), 1, - sym_where_clause, - STATE(2662), 2, + ACTIONS(5918), 1, + anon_sym_RPAREN, + ACTIONS(5920), 1, + anon_sym_COMMA, + STATE(3170), 1, + aux_sym_tuple_type_repeat1, + STATE(2700), 2, sym_line_comment, sym_block_comment, - [80740] = 7, + [82084] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1499), 1, - sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2663), 2, + STATE(3781), 1, + sym_block, + STATE(2701), 2, sym_line_comment, sym_block_comment, - [80763] = 7, + [82107] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_enum_variant_list, - STATE(3399), 1, - sym_where_clause, - STATE(2664), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(5875), 1, + sym_identifier, + STATE(3745), 1, + sym_type_arguments, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [80786] = 7, + [82130] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_declaration_list, - STATE(3449), 1, - sym_where_clause, - STATE(2665), 2, + ACTIONS(4114), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, + anon_sym_LT2, + STATE(1656), 1, + sym_parameters, + STATE(2025), 1, + sym_type_arguments, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [80809] = 7, + [82153] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, - STATE(2666), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(5875), 1, + sym_identifier, + STATE(3735), 1, + sym_type_arguments, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [80832] = 7, + [82176] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5866), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2667), 2, + STATE(413), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [80855] = 7, + [82199] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(1403), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5868), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2668), 2, + STATE(482), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [80878] = 5, + [82222] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - STATE(2669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5870), 3, + ACTIONS(5922), 1, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5924), 1, anon_sym_COMMA, - [80897] = 7, + STATE(3043), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2707), 2, + sym_line_comment, + sym_block_comment, + [82245] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5872), 1, - anon_sym_SEMI, - ACTIONS(5874), 1, - anon_sym_EQ, - ACTIONS(5876), 1, - anon_sym_else, - STATE(2670), 2, + ACTIONS(5691), 1, + anon_sym_RPAREN, + ACTIONS(5693), 1, + anon_sym_COMMA, + STATE(2887), 1, + aux_sym_parameters_repeat1, + STATE(2708), 2, sym_line_comment, sym_block_comment, - [80920] = 7, + [82268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5878), 1, - anon_sym_SEMI, - STATE(3724), 1, - sym_where_clause, - STATE(2671), 2, + ACTIONS(5926), 1, + sym_identifier, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [80943] = 7, + ACTIONS(5928), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [82287] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5880), 1, - anon_sym_SEMI, - STATE(3752), 1, - sym_where_clause, - STATE(2672), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(425), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2710), 2, sym_line_comment, sym_block_comment, - [80966] = 7, + [82310] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5882), 1, - anon_sym_SEMI, - STATE(3761), 1, - sym_where_clause, - STATE(2673), 2, + ACTIONS(5725), 1, + anon_sym_RPAREN, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(5731), 1, + anon_sym_COMMA, + STATE(2979), 1, + aux_sym_slice_pattern_repeat1, + STATE(2711), 2, sym_line_comment, sym_block_comment, - [80989] = 7, + [82333] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5930), 1, + anon_sym_LPAREN, + ACTIONS(5932), 1, + anon_sym_LBRACK, + ACTIONS(5934), 1, anon_sym_LBRACE, - STATE(1279), 1, - sym_declaration_list, - STATE(3314), 1, - sym_where_clause, - STATE(2674), 2, + STATE(408), 1, + sym_delim_token_tree, + STATE(2712), 2, sym_line_comment, sym_block_comment, - [81012] = 7, + [82356] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5884), 1, - anon_sym_SEMI, - STATE(3487), 1, - sym_where_clause, - STATE(2675), 2, + ACTIONS(1403), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(486), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2713), 2, sym_line_comment, sym_block_comment, - [81035] = 7, + [82379] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5936), 1, + anon_sym_LPAREN, + ACTIONS(5938), 1, + anon_sym_LBRACK, + ACTIONS(5940), 1, anon_sym_LBRACE, - STATE(1293), 1, - sym_declaration_list, - STATE(3327), 1, - sym_where_clause, - STATE(2676), 2, - sym_line_comment, - sym_block_comment, - [81058] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5886), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2677), 2, + STATE(2651), 1, + sym_token_tree, + STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(5888), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81077] = 7, + [82402] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_declaration_list, - STATE(3313), 1, - sym_where_clause, - STATE(2678), 2, + ACTIONS(1375), 1, + anon_sym_RPAREN, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5711), 1, + anon_sym_COMMA, + STATE(2897), 1, + aux_sym_parameters_repeat1, + STATE(2715), 2, sym_line_comment, sym_block_comment, - [81100] = 4, + [82425] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2679), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(5942), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81117] = 7, + [82448] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3076), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(5833), 1, sym_identifier, - ACTIONS(5890), 1, + ACTIONS(5944), 1, anon_sym_GT, - STATE(3278), 1, + STATE(3401), 1, sym_lifetime, - STATE(2680), 2, + STATE(2717), 2, + sym_line_comment, + sym_block_comment, + [82471] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5946), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [81140] = 7, + ACTIONS(5948), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82490] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3076), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(5833), 1, sym_identifier, - ACTIONS(5892), 1, + ACTIONS(5950), 1, anon_sym_GT, - STATE(3278), 1, + STATE(3401), 1, sym_lifetime, - STATE(2681), 2, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [81163] = 5, + [82513] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - anon_sym_COLON_COLON, - STATE(2682), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(5952), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2720), 2, sym_line_comment, sym_block_comment, - ACTIONS(4845), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81182] = 7, + [82536] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5896), 1, + ACTIONS(5954), 1, anon_sym_SEMI, - STATE(3545), 1, + STATE(3629), 1, sym_where_clause, - STATE(2683), 2, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [81205] = 5, + [82559] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, - STATE(2684), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1800), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2722), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81224] = 5, + [82582] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, - STATE(2685), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1802), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81243] = 5, + [82605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2686), 2, + ACTIONS(5956), 1, + anon_sym_DQUOTE, + STATE(2733), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2724), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81262] = 7, + [82626] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5904), 1, + ACTIONS(5958), 1, anon_sym_SEMI, - STATE(3571), 1, + STATE(3704), 1, sym_where_clause, - STATE(2687), 2, + STATE(2725), 2, + sym_line_comment, + sym_block_comment, + [82649] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1403), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(489), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2726), 2, + sym_line_comment, + sym_block_comment, + [82672] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5121), 1, + anon_sym_move, + ACTIONS(5960), 1, + anon_sym_async, + STATE(220), 1, + sym_closure_parameters, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [81285] = 7, + [82695] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(5906), 1, + ACTIONS(5962), 1, anon_sym_SEMI, - STATE(3572), 1, + STATE(3754), 1, sym_where_clause, - STATE(2688), 2, + STATE(2728), 2, sym_line_comment, sym_block_comment, - [81308] = 7, + [82718] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(5966), 1, + anon_sym_LBRACK, + ACTIONS(5968), 1, anon_sym_LBRACE, - STATE(1346), 1, - sym_declaration_list, - STATE(3371), 1, - sym_where_clause, - STATE(2689), 2, + STATE(1077), 1, + sym_delim_token_tree, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [81331] = 7, + [82741] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3770), 1, + STATE(1810), 1, sym_block, - STATE(2690), 2, + STATE(3777), 1, + sym_label, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [81354] = 7, + [82764] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(580), 1, - sym_field_declaration_list, - STATE(3279), 1, - sym_where_clause, - STATE(2691), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1635), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2731), 2, sym_line_comment, sym_block_comment, - [81377] = 7, + [82787] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(654), 1, - sym_declaration_list, - STATE(3324), 1, - sym_where_clause, - STATE(2692), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1813), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2732), 2, sym_line_comment, sym_block_comment, - [81400] = 7, + [82810] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5908), 1, - anon_sym_SEMI, - ACTIONS(5910), 1, - anon_sym_EQ, - ACTIONS(5912), 1, - anon_sym_else, - STATE(2693), 2, + ACTIONS(5970), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [81423] = 7, + [82831] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5076), 1, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(5966), 1, + anon_sym_LBRACK, + ACTIONS(5968), 1, anon_sym_LBRACE, - STATE(736), 1, - sym_field_declaration_list, - STATE(3248), 1, - sym_where_clause, - STATE(2694), 2, + STATE(1075), 1, + sym_delim_token_tree, + STATE(2734), 2, sym_line_comment, sym_block_comment, - [81446] = 5, + [82854] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - STATE(2695), 2, + ACTIONS(5972), 1, + anon_sym_COLON, + STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(5914), 3, - anon_sym_COLON, - anon_sym_GT, + ACTIONS(4981), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - [81465] = 7, + [82873] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5916), 1, - anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, - STATE(2696), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(5974), 1, + sym_identifier, + STATE(2118), 1, + sym_type_arguments, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [81488] = 7, + [82896] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5918), 1, - anon_sym_RPAREN, - ACTIONS(5920), 1, - anon_sym_COMMA, - STATE(3067), 1, - aux_sym_slice_pattern_repeat1, - STATE(2697), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(5974), 1, + sym_identifier, + STATE(2122), 1, + sym_type_arguments, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [81511] = 7, + [82919] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2008), 1, + ACTIONS(5827), 1, + sym_super, + ACTIONS(5976), 1, + sym_identifier, + STATE(3745), 1, sym_type_arguments, - STATE(2470), 1, - sym_parameters, - STATE(2698), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - [81534] = 7, + [82942] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2283), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, - STATE(2699), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(5976), 1, + sym_identifier, + STATE(3735), 1, + sym_type_arguments, + STATE(2739), 2, sym_line_comment, sym_block_comment, - [81557] = 7, + [82965] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5827), 1, sym_super, - ACTIONS(5836), 1, + ACTIONS(5839), 1, sym_identifier, - STATE(3759), 1, + STATE(3745), 1, sym_type_arguments, - STATE(2700), 2, + STATE(2740), 2, sym_line_comment, sym_block_comment, - [81580] = 7, + [82988] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(485), 1, + STATE(1832), 1, sym_block, - STATE(3740), 1, + STATE(3777), 1, sym_label, - STATE(2701), 2, + STATE(2741), 2, sym_line_comment, sym_block_comment, - [81603] = 7, + [83011] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3076), 1, anon_sym_SQUOTE, - STATE(490), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2702), 2, - sym_line_comment, - sym_block_comment, - [81626] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_DQUOTE, - STATE(2715), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2703), 2, - sym_line_comment, - sym_block_comment, - [81647] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2275), 1, - sym_parameters, - STATE(3200), 1, - sym_type_parameters, - STATE(2704), 2, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(5978), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2742), 2, sym_line_comment, sym_block_comment, - [81670] = 7, + [83034] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - ACTIONS(5142), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(3035), 1, - sym_block, - STATE(3739), 1, - sym_label, - STATE(2705), 2, + ACTIONS(5073), 1, + anon_sym_where, + STATE(538), 1, + sym_declaration_list, + STATE(3369), 1, + sym_where_clause, + STATE(2743), 2, sym_line_comment, sym_block_comment, - [81693] = 7, + [83057] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1781), 1, + STATE(1839), 1, sym_block, - STATE(3741), 1, + STATE(3777), 1, sym_label, - STATE(2706), 2, + STATE(2744), 2, sym_line_comment, sym_block_comment, - [81716] = 7, + [83080] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(1643), 1, - sym_type_arguments, - STATE(2707), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5980), 1, + anon_sym_SEMI, + STATE(3536), 1, + sym_where_clause, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [81739] = 7, + [83103] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_RBRACK, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(3133), 1, - aux_sym_slice_pattern_repeat1, - STATE(2708), 2, + ACTIONS(5982), 1, + anon_sym_DQUOTE, + STATE(2752), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2746), 2, sym_line_comment, sym_block_comment, - [81762] = 7, + [83124] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3076), 1, anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2709), 2, - sym_line_comment, - sym_block_comment, - [81785] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2710), 2, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(5984), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2747), 2, sym_line_comment, sym_block_comment, - [81804] = 7, + [83147] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - anon_sym_LPAREN, - ACTIONS(5932), 1, - anon_sym_LBRACK, - ACTIONS(5934), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(2020), 1, - sym_delim_token_tree, - STATE(2711), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1844), 1, + sym_block, + STATE(3777), 1, + sym_label, + STATE(2748), 2, sym_line_comment, sym_block_comment, - [81827] = 7, + [83170] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2712), 2, + ACTIONS(5986), 1, + anon_sym_async, + ACTIONS(5988), 1, + anon_sym_move, + STATE(229), 1, + sym_closure_parameters, + STATE(2749), 2, sym_line_comment, sym_block_comment, - [81850] = 7, + [83193] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(459), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2713), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(5875), 1, + sym_identifier, + STATE(2118), 1, + sym_type_arguments, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [81873] = 7, + [83216] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, + ACTIONS(5990), 1, + anon_sym_LPAREN, + ACTIONS(5992), 1, + anon_sym_LBRACK, + ACTIONS(5994), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(478), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2714), 2, + STATE(1849), 1, + sym_delim_token_tree, + STATE(2751), 2, sym_line_comment, sym_block_comment, - [81896] = 6, + [83239] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5936), 1, + ACTIONS(5996), 1, anon_sym_DQUOTE, - STATE(2779), 1, + STATE(2685), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5889), 2, sym_string_content, sym_escape_sequence, - STATE(2715), 2, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [81917] = 7, + [83260] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, + ACTIONS(5990), 1, anon_sym_LPAREN, - ACTIONS(5932), 1, + ACTIONS(5992), 1, anon_sym_LBRACK, - ACTIONS(5934), 1, + ACTIONS(5994), 1, anon_sym_LBRACE, - STATE(2022), 1, + STATE(1851), 1, sym_delim_token_tree, - STATE(2716), 2, + STATE(2753), 2, sym_line_comment, sym_block_comment, - [81940] = 7, + [83283] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, + ACTIONS(5827), 1, sym_super, - STATE(1633), 1, + ACTIONS(5998), 1, + sym_identifier, + STATE(2118), 1, sym_type_arguments, - STATE(2717), 2, + STATE(2754), 2, sym_line_comment, sym_block_comment, - [81963] = 7, + [83306] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, + ACTIONS(5827), 1, sym_super, - STATE(1636), 1, + ACTIONS(5998), 1, + sym_identifier, + STATE(2122), 1, sym_type_arguments, - STATE(2718), 2, - sym_line_comment, - sym_block_comment, - [81986] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4626), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2719), 2, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [82005] = 7, + [83329] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, sym_super, - ACTIONS(5944), 1, + ACTIONS(5976), 1, sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2561), 1, + STATE(3745), 1, sym_type_arguments, - STATE(2720), 2, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [82028] = 7, + [83352] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, sym_super, - ACTIONS(5944), 1, + ACTIONS(5976), 1, sym_identifier, - ACTIONS(5946), 1, - anon_sym_LT2, - STATE(2563), 1, + STATE(3735), 1, sym_type_arguments, - STATE(2721), 2, - sym_line_comment, - sym_block_comment, - [82051] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5948), 1, - anon_sym_RPAREN, - ACTIONS(5950), 1, - anon_sym_COMMA, - STATE(2993), 1, - aux_sym_tuple_type_repeat1, - STATE(2722), 2, + STATE(2757), 2, sym_line_comment, sym_block_comment, - [82074] = 7, + [83375] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(5110), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(678), 1, - sym_declaration_list, - STATE(3359), 1, - sym_where_clause, - STATE(2723), 2, - sym_line_comment, - sym_block_comment, - [82097] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2724), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3678), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [82120] = 7, + [83398] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(1698), 1, - sym_parameters, - STATE(2008), 1, - sym_type_arguments, - STATE(2725), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6000), 1, + anon_sym_RPAREN, + ACTIONS(6002), 1, + anon_sym_COMMA, + STATE(3040), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2759), 2, sym_line_comment, sym_block_comment, - [82143] = 7, + [83421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2726), 2, + ACTIONS(6004), 1, + anon_sym_COLON_COLON, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [82166] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(4885), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(403), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2727), 2, + ACTIONS(6008), 1, + anon_sym_COMMA, + ACTIONS(6006), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2761), 3, sym_line_comment, sym_block_comment, - [82189] = 7, + aux_sym_slice_pattern_repeat1, + [83459] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(470), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2728), 2, + ACTIONS(6011), 1, + anon_sym_DQUOTE, + STATE(2765), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [82212] = 7, + [83480] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3701), 1, - sym_block, - STATE(2729), 2, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [82235] = 7, + ACTIONS(3390), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [83497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - STATE(2730), 2, + ACTIONS(6013), 1, + anon_sym_COLON_COLON, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [82258] = 6, + ACTIONS(4889), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83516] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5952), 1, + ACTIONS(6015), 1, anon_sym_DQUOTE, - STATE(2597), 1, + STATE(2685), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5889), 2, sym_string_content, sym_escape_sequence, - STATE(2731), 2, + STATE(2765), 2, sym_line_comment, sym_block_comment, - [82279] = 5, + [83537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5954), 1, + ACTIONS(6017), 1, + anon_sym_COLON_COLON, + STATE(2766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4889), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83556] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(6019), 1, sym_identifier, - STATE(2732), 2, + STATE(3745), 1, + sym_type_arguments, + STATE(2767), 2, sym_line_comment, sym_block_comment, - ACTIONS(5956), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82298] = 7, + [83579] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(489), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2733), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(6019), 1, + sym_identifier, + STATE(3735), 1, + sym_type_arguments, + STATE(2768), 2, sym_line_comment, sym_block_comment, - [82321] = 5, + [83602] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5958), 1, + ACTIONS(6021), 1, aux_sym_token_repetition_pattern_token1, - STATE(2734), 2, + STATE(2769), 2, sym_line_comment, sym_block_comment, - ACTIONS(5960), 3, + ACTIONS(6023), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [82340] = 7, + [83621] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, - anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - STATE(2735), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(6025), 1, + sym_identifier, + STATE(1489), 1, + sym_type_arguments, + STATE(2770), 2, sym_line_comment, sym_block_comment, - [82363] = 7, + [83644] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5962), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2736), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [82386] = 7, + ACTIONS(6027), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [83663] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(5964), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2737), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + STATE(620), 1, + sym_declaration_list, + STATE(3296), 1, + sym_where_clause, + STATE(2772), 2, sym_line_comment, sym_block_comment, - [82409] = 7, + [83686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_LPAREN, - ACTIONS(5968), 1, - anon_sym_LBRACK, - ACTIONS(5970), 1, - anon_sym_LBRACE, - STATE(2617), 1, - sym_token_tree, - STATE(2738), 2, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [82432] = 7, + ACTIONS(1025), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83703] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(6019), 1, sym_identifier, - ACTIONS(5972), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2739), 2, + STATE(3745), 1, + sym_type_arguments, + STATE(2774), 2, sym_line_comment, sym_block_comment, - [82455] = 7, + [83726] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(6019), 1, sym_identifier, - ACTIONS(5974), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2740), 2, + STATE(3735), 1, + sym_type_arguments, + STATE(2775), 2, sym_line_comment, sym_block_comment, - [82478] = 7, + [83749] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1780), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2741), 2, + ACTIONS(5073), 1, + anon_sym_where, + STATE(629), 1, + sym_declaration_list, + STATE(3265), 1, + sym_where_clause, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [82501] = 7, + [83772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1782), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2742), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + STATE(2777), 2, sym_line_comment, sym_block_comment, - [82524] = 6, + ACTIONS(6029), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [83791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5976), 1, - anon_sym_DQUOTE, - STATE(2750), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2743), 2, + ACTIONS(6031), 1, + anon_sym_COLON_COLON, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [82545] = 7, + ACTIONS(4889), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83810] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1369), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(488), 1, - sym_block, - STATE(3740), 1, - sym_label, - STATE(2744), 2, + ACTIONS(6033), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2779), 2, sym_line_comment, sym_block_comment, - [82568] = 7, + [83831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1787), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2745), 2, + ACTIONS(6035), 1, + anon_sym_COMMA, + ACTIONS(4324), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2780), 3, sym_line_comment, sym_block_comment, - [82591] = 7, + aux_sym_arguments_repeat1, + [83850] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_delim_token_tree, - STATE(2746), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5402), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2781), 2, sym_line_comment, sym_block_comment, - [82614] = 7, + [83871] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1789), 1, + STATE(1514), 1, sym_block, - STATE(3741), 1, + STATE(3712), 1, sym_label, - STATE(2747), 2, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [82637] = 7, + [83894] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1615), 1, + STATE(1517), 1, sym_block, - STATE(3741), 1, + STATE(3712), 1, sym_label, - STATE(2748), 2, + STATE(2783), 2, sym_line_comment, sym_block_comment, - [82660] = 7, + [83917] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1793), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2749), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_LT, + STATE(2285), 1, + sym_parameters, + STATE(3360), 1, + sym_type_parameters, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [82683] = 6, + [83940] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5984), 1, + ACTIONS(6038), 1, anon_sym_DQUOTE, - STATE(2779), 1, + STATE(2825), 1, aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, + ACTIONS(5889), 2, sym_string_content, sym_escape_sequence, - STATE(2750), 2, - sym_line_comment, - sym_block_comment, - [82704] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_LPAREN, - ACTIONS(5980), 1, - anon_sym_LBRACK, - ACTIONS(5982), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_delim_token_tree, - STATE(2751), 2, - sym_line_comment, - sym_block_comment, - [82727] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, - STATE(2752), 2, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [82750] = 7, + [83961] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5986), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2753), 2, + ACTIONS(6040), 1, + anon_sym_in, + STATE(2786), 2, sym_line_comment, sym_block_comment, - [82773] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(6042), 3, + sym_self, sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2754), 2, - sym_line_comment, - sym_block_comment, - [82796] = 7, + sym_crate, + [83980] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2755), 2, + ACTIONS(6044), 1, + anon_sym_LBRACE, + ACTIONS(6046), 1, + anon_sym_for, + ACTIONS(6048), 1, + anon_sym_loop, + ACTIONS(6050), 1, + anon_sym_while, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [82819] = 7, + [84003] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1810), 1, + STATE(1515), 1, sym_block, - STATE(3741), 1, + STATE(3712), 1, sym_label, - STATE(2756), 2, - sym_line_comment, - sym_block_comment, - [82842] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2757), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82859] = 7, + [84026] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1617), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(1816), 1, + STATE(2219), 1, sym_block, - STATE(3741), 1, + STATE(3768), 1, sym_label, - STATE(2758), 2, + STATE(2789), 2, sym_line_comment, sym_block_comment, - [82882] = 6, + [84049] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5990), 1, - anon_sym_DQUOTE, - STATE(2763), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2759), 2, + ACTIONS(6052), 1, + anon_sym_async, + ACTIONS(6054), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, + STATE(2790), 2, sym_line_comment, sym_block_comment, - [82903] = 7, + [84072] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1821), 1, - sym_block, - STATE(3741), 1, - sym_label, - STATE(2760), 2, - sym_line_comment, - sym_block_comment, - [82926] = 7, - ACTIONS(19), 1, + ACTIONS(1403), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(421), 1, + STATE(495), 1, sym_block, - STATE(3532), 1, + STATE(3776), 1, sym_label, - STATE(2761), 2, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [82949] = 7, + [84095] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, + ACTIONS(6056), 1, anon_sym_LBRACE, - STATE(1826), 1, - sym_delim_token_tree, - STATE(2762), 2, + ACTIONS(6058), 1, + anon_sym_for, + ACTIONS(6060), 1, + anon_sym_loop, + ACTIONS(6062), 1, + anon_sym_while, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [82972] = 6, + [84118] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5998), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2763), 2, + ACTIONS(5160), 1, + anon_sym_COLON, + STATE(3350), 1, + sym_trait_bounds, + ACTIONS(5642), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [82993] = 7, + [84139] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_LPAREN, - ACTIONS(5994), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(1830), 1, - sym_delim_token_tree, - STATE(2764), 2, + ACTIONS(5073), 1, + anon_sym_where, + STATE(708), 1, + sym_declaration_list, + STATE(3205), 1, + sym_where_clause, + STATE(2794), 2, sym_line_comment, sym_block_comment, - [83016] = 7, + [84162] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, - sym_identifier, - STATE(2099), 1, - sym_type_arguments, - STATE(2765), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6064), 1, + anon_sym_SEMI, + STATE(3530), 1, + sym_where_clause, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [83039] = 7, + [84185] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6000), 1, - sym_identifier, - STATE(2102), 1, - sym_type_arguments, - STATE(2766), 2, + ACTIONS(5930), 1, + anon_sym_LPAREN, + ACTIONS(5932), 1, + anon_sym_LBRACK, + ACTIONS(5934), 1, + anon_sym_LBRACE, + STATE(426), 1, + sym_delim_token_tree, + STATE(2796), 2, sym_line_comment, sym_block_comment, - [83062] = 7, + [84208] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2767), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3653), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2797), 2, sym_line_comment, sym_block_comment, - [83085] = 7, + [84231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2768), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [83108] = 5, + ACTIONS(6066), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84250] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - STATE(2769), 2, + ACTIONS(6068), 1, + anon_sym_COLON, + STATE(2799), 2, sym_line_comment, sym_block_comment, - ACTIONS(6002), 3, + ACTIONS(4981), 3, anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_COMMA, - [83127] = 6, + [84269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6004), 1, - anon_sym_DQUOTE, - STATE(2771), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2770), 2, + ACTIONS(4807), 1, + anon_sym_DOT_DOT, + ACTIONS(6070), 1, + anon_sym_COLON_COLON, + ACTIONS(4809), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [83148] = 6, + [84290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_DQUOTE, - STATE(2779), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5794), 2, - sym_string_content, - sym_escape_sequence, - STATE(2771), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_LT, + STATE(2324), 1, + sym_parameters, + STATE(3389), 1, + sym_type_parameters, + STATE(2801), 2, sym_line_comment, sym_block_comment, - [83169] = 7, + [84313] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5775), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2772), 2, + ACTIONS(1377), 1, + anon_sym_RPAREN, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5626), 1, + anon_sym_COMMA, + STATE(2888), 1, + aux_sym_parameters_repeat1, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [83192] = 7, + [84336] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(5775), 1, + ACTIONS(5370), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(6025), 1, sym_identifier, - STATE(3759), 1, + STATE(1459), 1, sym_type_arguments, - STATE(2773), 2, + STATE(2803), 2, sym_line_comment, sym_block_comment, - [83215] = 5, + [84359] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6010), 1, - anon_sym_COMMA, - ACTIONS(6002), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2774), 3, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3618), 1, + anon_sym_COLON_COLON, + ACTIONS(4947), 1, + anon_sym_BANG, + STATE(1130), 1, + sym_type_arguments, + STATE(2804), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [83234] = 4, + [84382] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2775), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + STATE(3745), 1, + sym_type_arguments, + ACTIONS(5370), 2, + sym_identifier, + sym_super, + STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [83251] = 7, + [84403] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5808), 1, - sym_identifier, - STATE(1430), 1, + STATE(3735), 1, sym_type_arguments, - STATE(2776), 2, + ACTIONS(5370), 2, + sym_identifier, + sym_super, + STATE(2806), 2, sym_line_comment, sym_block_comment, - [83274] = 5, + [84424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - STATE(2777), 2, + STATE(2807), 2, sym_line_comment, sym_block_comment, - ACTIONS(6013), 3, + ACTIONS(6072), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [83293] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(405), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2778), 2, - sym_line_comment, - sym_block_comment, - [83316] = 5, + [84443] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6017), 2, - sym_string_content, - sym_escape_sequence, - STATE(2779), 3, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, + anon_sym_LBRACK, + ACTIONS(5308), 1, + anon_sym_LBRACE, + STATE(1454), 1, + sym_delim_token_tree, + STATE(2808), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [83335] = 7, + [84466] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3605), 1, - sym_type_arguments, - STATE(2780), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(631), 1, + sym_field_declaration_list, + STATE(3405), 1, + sym_where_clause, + STATE(2809), 2, sym_line_comment, sym_block_comment, - [83358] = 7, - ACTIONS(103), 1, + [84489] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5312), 1, - sym_super, - ACTIONS(6008), 1, - sym_identifier, - STATE(3759), 1, - sym_type_arguments, - STATE(2781), 2, + ACTIONS(6074), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [83381] = 7, + ACTIONS(6076), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84508] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6020), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2782), 2, - sym_line_comment, - sym_block_comment, - [83404] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(4658), 1, - anon_sym_BANG, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - STATE(2783), 2, + STATE(1456), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2811), 2, sym_line_comment, sym_block_comment, - [83427] = 7, + [84531] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(3493), 1, + STATE(1141), 1, sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2784), 2, + STATE(2812), 2, sym_line_comment, sym_block_comment, - [83450] = 6, + [84554] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2785), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6078), 1, + anon_sym_RBRACK, + ACTIONS(6080), 1, + anon_sym_COMMA, + STATE(3173), 1, + aux_sym_slice_pattern_repeat1, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [83471] = 7, + [84577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6022), 1, - anon_sym_RPAREN, - ACTIONS(6024), 1, + ACTIONS(5160), 1, + anon_sym_COLON, + STATE(3376), 1, + sym_trait_bounds, + ACTIONS(5687), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2998), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2786), 2, + STATE(2814), 2, sym_line_comment, sym_block_comment, - [83494] = 7, + [84598] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2312), 1, - sym_parameters, - STATE(3321), 1, - sym_type_parameters, - STATE(2787), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, + sym_identifier, + ACTIONS(6082), 1, + anon_sym_GT, + STATE(3401), 1, + sym_lifetime, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [83517] = 7, + [84621] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(3076), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, + ACTIONS(5833), 1, sym_identifier, - ACTIONS(6026), 1, + ACTIONS(6084), 1, anon_sym_GT, - STATE(3278), 1, + STATE(3401), 1, sym_lifetime, - STATE(2788), 2, + STATE(2816), 2, sym_line_comment, sym_block_comment, - [83540] = 5, + [84644] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6028), 1, - anon_sym_in, - STATE(2789), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3505), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2817), 2, sym_line_comment, sym_block_comment, - ACTIONS(6030), 3, - sym_self, - sym_super, - sym_crate, - [83559] = 7, + [84667] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_RPAREN, - ACTIONS(6034), 1, - anon_sym_COMMA, - STATE(3011), 1, - aux_sym_tuple_type_repeat1, - STATE(2790), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_LT, + STATE(2328), 1, + sym_parameters, + STATE(3407), 1, + sym_type_parameters, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [83582] = 7, + [84690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, - ACTIONS(6038), 1, - anon_sym_for, - ACTIONS(6040), 1, - anon_sym_loop, - ACTIONS(6042), 1, - anon_sym_while, - STATE(2791), 2, + ACTIONS(6004), 1, + anon_sym_COLON_COLON, + STATE(2819), 2, sym_line_comment, sym_block_comment, - [83605] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(4865), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(319), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2792), 2, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [83628] = 7, + ACTIONS(1029), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [84726] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(6046), 1, - anon_sym_for, - ACTIONS(6048), 1, - anon_sym_loop, - ACTIONS(6050), 1, - anon_sym_while, - STATE(2793), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(1465), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [83651] = 5, + [84749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, + ACTIONS(6013), 1, anon_sym_COLON_COLON, - STATE(2794), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 3, + ACTIONS(4871), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83670] = 7, + [84768] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(3510), 1, + STATE(3601), 1, sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2795), 2, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [83693] = 5, + [84791] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, - anon_sym_COLON_COLON, - STATE(2796), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3602), 1, + sym_block, + STATE(3712), 1, + sym_label, + STATE(2824), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83712] = 5, + [84814] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON_COLON, - STATE(2797), 2, + ACTIONS(6086), 1, + anon_sym_DQUOTE, + STATE(2685), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83731] = 5, + [84835] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_COLON, - STATE(2798), 2, + ACTIONS(5302), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, + anon_sym_LBRACK, + ACTIONS(5308), 1, + anon_sym_LBRACE, + STATE(1466), 1, + sym_delim_token_tree, + STATE(2826), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83750] = 7, + [84858] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2301), 1, - sym_parameters, - STATE(3353), 1, - sym_type_parameters, - STATE(2799), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(6088), 1, + sym_identifier, + STATE(1627), 1, + sym_type_arguments, + STATE(2827), 2, + sym_line_comment, + sym_block_comment, + [84881] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6090), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6092), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84900] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(6088), 1, + sym_identifier, + STATE(1640), 1, + sym_type_arguments, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [83773] = 7, + [84923] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(3665), 1, + STATE(3666), 1, sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2800), 2, + STATE(2830), 2, sym_line_comment, sym_block_comment, - [83796] = 5, + [84946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2801), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(3712), 1, + sym_label, + STATE(3813), 1, + sym_block, + STATE(2831), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83815] = 7, + [84969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6094), 2, anon_sym_RPAREN, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5724), 1, anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - STATE(2802), 2, - sym_line_comment, - sym_block_comment, - [83838] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3605), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2803), 2, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [83859] = 6, + [84988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - STATE(3759), 1, - sym_type_arguments, - ACTIONS(5312), 2, - sym_identifier, - sym_super, - STATE(2804), 2, + ACTIONS(6017), 1, + anon_sym_COLON_COLON, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [83880] = 5, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, + ACTIONS(6031), 1, anon_sym_COLON_COLON, - STATE(2805), 2, + STATE(2834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4915), 3, + ACTIONS(4871), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83899] = 7, + [85026] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3454), 1, anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6054), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2806), 2, + STATE(3712), 1, + sym_label, + STATE(3726), 1, + sym_block, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [83922] = 7, + [85049] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, + ACTIONS(3454), 1, anon_sym_SQUOTE, - STATE(3550), 1, - sym_block, - STATE(3677), 1, + STATE(3712), 1, sym_label, - STATE(2807), 2, + STATE(3736), 1, + sym_block, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [83945] = 7, + [85072] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - ACTIONS(6056), 1, - anon_sym_GT, - STATE(3278), 1, - sym_lifetime, - STATE(2808), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6096), 1, + anon_sym_RPAREN, + ACTIONS(6098), 1, + anon_sym_COMMA, + STATE(3035), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2837), 2, sym_line_comment, sym_block_comment, - [83968] = 5, + [85095] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5898), 1, + ACTIONS(3438), 1, + anon_sym_LT2, + ACTIONS(3618), 1, anon_sym_COLON_COLON, - STATE(2809), 2, + ACTIONS(4732), 1, + anon_sym_BANG, + STATE(1130), 1, + sym_type_arguments, + STATE(2838), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, + [85118] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5729), 1, anon_sym_PIPE, - anon_sym_if, - [83987] = 5, + ACTIONS(6100), 1, + anon_sym_RBRACK, + ACTIONS(6102), 1, + anon_sym_COMMA, + STATE(3082), 1, + aux_sym_slice_pattern_repeat1, + STATE(2839), 2, + sym_line_comment, + sym_block_comment, + [85141] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(4118), 1, + anon_sym_LT2, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - STATE(2810), 2, + ACTIONS(4732), 1, + anon_sym_BANG, + STATE(1696), 1, + sym_type_arguments, + STATE(2840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84006] = 5, + [85164] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5829), 1, anon_sym_COLON_COLON, - STATE(2811), 2, + ACTIONS(6104), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84025] = 7, + [85187] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2296), 1, - sym_parameters, - STATE(3366), 1, - sym_type_parameters, - STATE(2812), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5160), 1, + anon_sym_COLON, + STATE(2025), 1, + sym_type_arguments, + STATE(2560), 1, + sym_trait_bounds, + STATE(2842), 2, sym_line_comment, sym_block_comment, - [84048] = 7, + [85210] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(2286), 1, - sym_parameters, - STATE(3331), 1, - sym_type_parameters, - STATE(2813), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(6106), 1, + sym_identifier, + STATE(2118), 1, + sym_type_arguments, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [84071] = 7, + [85233] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3703), 1, - sym_block, - STATE(2814), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [84094] = 7, + [85254] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3677), 1, - sym_label, - STATE(3704), 1, - sym_block, - STATE(2815), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(6106), 1, + sym_identifier, + STATE(2122), 1, + sym_type_arguments, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [84117] = 6, + [85277] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(3222), 1, - sym_trait_bounds, - ACTIONS(5606), 2, - anon_sym_GT, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6108), 1, + anon_sym_RPAREN, + ACTIONS(6110), 1, anon_sym_COMMA, - STATE(2816), 2, + STATE(3100), 1, + aux_sym_tuple_type_repeat1, + STATE(2846), 2, sym_line_comment, sym_block_comment, - [84138] = 7, + [85300] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6112), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3667), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2817), 2, + ACTIONS(6114), 1, + anon_sym_for, + ACTIONS(6116), 1, + anon_sym_loop, + ACTIONS(6118), 1, + anon_sym_while, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [84161] = 7, + [85323] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3530), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2818), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6120), 1, + anon_sym_RPAREN, + ACTIONS(6122), 1, + anon_sym_COMMA, + STATE(2890), 1, + aux_sym_tuple_type_repeat1, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [84184] = 7, + [85346] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3541), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2819), 2, + ACTIONS(4662), 1, + anon_sym_DOT_DOT, + ACTIONS(5416), 1, + anon_sym_COLON_COLON, + ACTIONS(4664), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2849), 2, sym_line_comment, sym_block_comment, - [84207] = 7, + [85367] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6124), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3597), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2820), 2, + ACTIONS(6126), 1, + anon_sym_for, + ACTIONS(6128), 1, + anon_sym_loop, + ACTIONS(6130), 1, + anon_sym_while, + STATE(2850), 2, sym_line_comment, sym_block_comment, - [84230] = 7, + [85390] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(3622), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2821), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(5839), 1, + sym_identifier, + STATE(3745), 1, + sym_type_arguments, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [84253] = 7, + [85413] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(3602), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1123), 1, - sym_type_arguments, - STATE(2822), 2, + ACTIONS(6132), 1, + sym_identifier, + STATE(2852), 2, sym_line_comment, sym_block_comment, - [84276] = 7, + ACTIONS(6134), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [85432] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, + ACTIONS(3430), 1, + anon_sym_LPAREN, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_BANG, - STATE(1643), 1, + STATE(1162), 1, + sym_parameters, + STATE(2025), 1, sym_type_arguments, - STATE(2823), 2, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [84299] = 6, + [85455] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6058), 1, - anon_sym_EQ, - ACTIONS(6060), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2824), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(5839), 1, + sym_identifier, + STATE(3735), 1, + sym_type_arguments, + STATE(2854), 2, sym_line_comment, sym_block_comment, - [84320] = 6, + [85478] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2825), 2, + ACTIONS(6136), 1, + anon_sym_DQUOTE, + STATE(2779), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5889), 2, + sym_string_content, + sym_escape_sequence, + STATE(2855), 2, sym_line_comment, sym_block_comment, - [84341] = 7, + [85499] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(5553), 1, anon_sym_LBRACE, - ACTIONS(6064), 1, - anon_sym_for, - ACTIONS(6066), 1, - anon_sym_loop, - ACTIONS(6068), 1, - anon_sym_while, - STATE(2826), 2, + STATE(1165), 1, + sym_enum_variant_list, + STATE(3243), 1, + sym_where_clause, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [84364] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [85522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(409), 1, - sym_block, - STATE(3532), 1, - sym_label, - STATE(2827), 2, + ACTIONS(6004), 1, + anon_sym_COLON_COLON, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [84387] = 7, + ACTIONS(4915), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85541] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_LPAREN, - ACTIONS(5804), 1, - anon_sym_LBRACK, - ACTIONS(5806), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_delim_token_tree, - STATE(2828), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(4939), 1, + anon_sym_for, + ACTIONS(5829), 1, + anon_sym_COLON_COLON, + STATE(2020), 1, + sym_type_arguments, + STATE(2858), 2, sym_line_comment, sym_block_comment, - [84410] = 6, + [85564] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_DOT_DOT, - ACTIONS(5320), 1, + ACTIONS(6013), 1, anon_sym_COLON_COLON, - ACTIONS(4640), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2829), 2, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [84431] = 7, + ACTIONS(4879), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85583] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, - anon_sym_for, - ACTIONS(6074), 1, - anon_sym_loop, - ACTIONS(6076), 1, - anon_sym_while, - STATE(2830), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(421), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2860), 2, sym_line_comment, sym_block_comment, - [84454] = 7, + [85606] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(6078), 1, - anon_sym_SEMI, - STATE(3587), 1, + STATE(1178), 1, + sym_declaration_list, + STATE(3268), 1, sym_where_clause, - STATE(2831), 2, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [84477] = 5, + [85629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - sym_identifier, - STATE(2832), 2, + ACTIONS(6017), 1, + anon_sym_COLON_COLON, + STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(6082), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84496] = 7, + ACTIONS(4879), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85648] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(2008), 1, + ACTIONS(5829), 1, + anon_sym_COLON_COLON, + ACTIONS(6138), 1, + anon_sym_for, + STATE(2020), 1, sym_type_arguments, - STATE(2565), 1, - sym_trait_bounds, - STATE(2833), 2, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [84519] = 7, + [85671] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4905), 1, - anon_sym_for, - ACTIONS(5767), 1, + ACTIONS(5829), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(6140), 1, + anon_sym_for, + STATE(2020), 1, sym_type_arguments, - STATE(2834), 2, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [84542] = 5, + [85694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_in, - STATE(2835), 2, + ACTIONS(6031), 1, + anon_sym_COLON_COLON, + STATE(2865), 2, sym_line_comment, sym_block_comment, - ACTIONS(6086), 3, - sym_self, - sym_super, - sym_crate, - [84561] = 7, + ACTIONS(4879), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85713] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(6088), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2836), 2, + ACTIONS(5069), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_where, + STATE(1184), 1, + sym_field_declaration_list, + STATE(3273), 1, + sym_where_clause, + STATE(2866), 2, sym_line_comment, sym_block_comment, - [84584] = 7, + [85736] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5767), 1, - anon_sym_COLON_COLON, - ACTIONS(6090), 1, - anon_sym_for, - STATE(2006), 1, - sym_type_arguments, - STATE(2837), 2, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + STATE(414), 1, + sym_block, + STATE(3702), 1, + sym_label, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [84607] = 5, + [85759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6092), 1, - anon_sym_COLON, - STATE(2838), 2, + ACTIONS(6142), 1, + anon_sym_in, + STATE(2868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84626] = 7, + ACTIONS(6144), 3, + sym_self, + sym_super, + sym_crate, + [85778] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(5767), 1, + ACTIONS(5829), 1, anon_sym_COLON_COLON, - ACTIONS(6094), 1, + ACTIONS(6146), 1, anon_sym_for, - STATE(2006), 1, + STATE(2020), 1, sym_type_arguments, - STATE(2839), 2, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [84649] = 7, + [85801] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(6096), 1, + ACTIONS(6148), 1, anon_sym_SEMI, - ACTIONS(6098), 1, + ACTIONS(6150), 1, anon_sym_EQ, - ACTIONS(6100), 1, + ACTIONS(6152), 1, anon_sym_else, - STATE(2840), 2, + STATE(2870), 2, sym_line_comment, sym_block_comment, - [84672] = 7, + [85824] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6102), 1, - anon_sym_SEMI, - STATE(3758), 1, - sym_where_clause, - STATE(2841), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5829), 1, + anon_sym_COLON_COLON, + ACTIONS(6154), 1, + anon_sym_for, + STATE(2020), 1, + sym_type_arguments, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [84695] = 7, + [85847] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_SQUOTE, - STATE(1460), 1, - sym_block, - STATE(3677), 1, - sym_label, - STATE(2842), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + ACTIONS(5071), 1, + anon_sym_LT, + STATE(2318), 1, + sym_parameters, + STATE(3426), 1, + sym_type_parameters, + STATE(2872), 2, sym_line_comment, sym_block_comment, - [84718] = 7, + [85870] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(2076), 1, + STATE(2095), 1, sym_parameters, - STATE(2843), 2, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [84741] = 7, + [85893] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5729), 1, anon_sym_PIPE, - ACTIONS(6104), 1, + ACTIONS(6156), 1, anon_sym_RPAREN, - ACTIONS(6106), 1, + ACTIONS(6158), 1, anon_sym_COMMA, - STATE(3071), 1, + STATE(3125), 1, aux_sym_tuple_pattern_repeat1, - STATE(2844), 2, + STATE(2874), 2, sym_line_comment, sym_block_comment, - [84764] = 7, + [85916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6108), 1, - anon_sym_SEMI, - STATE(3577), 1, - sym_where_clause, - STATE(2845), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [84787] = 6, + ACTIONS(6006), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [85935] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1357), 1, - anon_sym_RPAREN, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(2846), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5154), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(2876), 2, sym_line_comment, sym_block_comment, - [84807] = 6, + [85955] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2572), 1, + ACTIONS(1369), 1, anon_sym_RPAREN, - ACTIONS(6112), 1, + ACTIONS(5628), 1, anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2847), 2, + STATE(3096), 1, + aux_sym_parameters_repeat1, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [84827] = 4, + [85975] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2848), 2, + ACTIONS(6160), 1, + anon_sym_move, + STATE(252), 1, + sym_closure_parameters, + STATE(2878), 2, sym_line_comment, sym_block_comment, - ACTIONS(6114), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84843] = 6, + [85995] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3120), 1, - anon_sym_RBRACK, - ACTIONS(6116), 1, + ACTIONS(1369), 1, + anon_sym_RPAREN, + ACTIONS(5628), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(2849), 2, + STATE(2960), 1, + aux_sym_parameters_repeat1, + STATE(2879), 2, sym_line_comment, sym_block_comment, - [84863] = 6, + [86015] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, + ACTIONS(6162), 1, anon_sym_RBRACE, - ACTIONS(6120), 1, + ACTIONS(6164), 1, anon_sym_COMMA, - STATE(2868), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2850), 2, + STATE(3161), 1, + aux_sym_struct_pattern_repeat1, + STATE(2880), 2, sym_line_comment, sym_block_comment, - [84883] = 6, + [86035] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, + ACTIONS(5119), 1, anon_sym_RBRACE, - ACTIONS(6124), 1, + ACTIONS(6166), 1, anon_sym_COMMA, - STATE(2901), 1, - aux_sym_struct_pattern_repeat1, - STATE(2851), 2, + STATE(3157), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2881), 2, sym_line_comment, sym_block_comment, - [84903] = 4, + [86055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2852), 2, + STATE(2882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4963), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84919] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6126), 1, + ACTIONS(6168), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(6128), 1, anon_sym_COMMA, - STATE(2904), 1, - aux_sym_struct_pattern_repeat1, - STATE(2853), 2, - sym_line_comment, - sym_block_comment, - [84939] = 4, + [86071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2854), 2, + STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(6130), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84955] = 6, + ACTIONS(1541), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_RPAREN, - ACTIONS(6132), 1, + ACTIONS(1627), 1, + anon_sym_GT, + ACTIONS(6170), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(2855), 2, + STATE(2896), 1, + aux_sym_type_arguments_repeat1, + STATE(2884), 2, sym_line_comment, sym_block_comment, - [84975] = 4, + [86107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2856), 2, + ACTIONS(1627), 1, + anon_sym_GT, + ACTIONS(6170), 1, + anon_sym_COMMA, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(6134), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84991] = 4, + [86127] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2857), 2, + ACTIONS(5835), 1, + anon_sym_GT, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(2929), 1, + aux_sym_use_bounds_repeat1, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(6136), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85007] = 4, + [86147] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2858), 2, + ACTIONS(1375), 1, + anon_sym_RPAREN, + ACTIONS(5711), 1, + anon_sym_COMMA, + STATE(3096), 1, + aux_sym_parameters_repeat1, + STATE(2887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85023] = 6, + [86167] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(5648), 1, + ACTIONS(6174), 1, anon_sym_COMMA, - STATE(2906), 1, + STATE(3096), 1, aux_sym_parameters_repeat1, - STATE(2859), 2, + STATE(2888), 2, sym_line_comment, sym_block_comment, - [85043] = 4, + [86187] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2860), 2, + ACTIONS(1375), 1, + anon_sym_RPAREN, + ACTIONS(5711), 1, + anon_sym_COMMA, + STATE(2897), 1, + aux_sym_parameters_repeat1, + STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85059] = 4, + [86207] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2861), 2, + ACTIONS(3300), 1, + anon_sym_RPAREN, + ACTIONS(6176), 1, + anon_sym_COMMA, + STATE(3012), 1, + aux_sym_tuple_type_repeat1, + STATE(2890), 2, sym_line_comment, sym_block_comment, - ACTIONS(6138), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85075] = 6, + [86227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6140), 1, + ACTIONS(5837), 1, anon_sym_GT, - ACTIONS(6142), 1, + ACTIONS(6178), 1, anon_sym_COMMA, - STATE(2910), 1, + STATE(2929), 1, aux_sym_use_bounds_repeat1, - STATE(2862), 2, + STATE(2891), 2, sym_line_comment, sym_block_comment, - [85095] = 6, + [86247] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, + ACTIONS(5942), 1, anon_sym_GT, - ACTIONS(6146), 1, + ACTIONS(6180), 1, anon_sym_COMMA, - STATE(2911), 1, + STATE(2929), 1, aux_sym_use_bounds_repeat1, - STATE(2863), 2, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [85115] = 4, + [86267] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2864), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + STATE(2893), 2, sym_line_comment, sym_block_comment, - ACTIONS(6148), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [86287] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5944), 1, + anon_sym_GT, + ACTIONS(6182), 1, anon_sym_COMMA, - [85131] = 6, + STATE(2929), 1, + aux_sym_use_bounds_repeat1, + STATE(2894), 2, + sym_line_comment, + sym_block_comment, + [86307] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6150), 1, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6184), 1, anon_sym_SEMI, - ACTIONS(6152), 1, - anon_sym_EQ, - STATE(2865), 2, + STATE(688), 1, + sym_declaration_list, + STATE(2895), 2, sym_line_comment, sym_block_comment, - [85151] = 6, + [86327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, - ACTIONS(6156), 1, + ACTIONS(1651), 1, + anon_sym_GT, + ACTIONS(6186), 1, anon_sym_COMMA, - STATE(2912), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2866), 2, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(2896), 2, sym_line_comment, sym_block_comment, - [85171] = 6, + [86347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6158), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2867), 2, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(6188), 1, + anon_sym_COMMA, + STATE(3096), 1, + aux_sym_parameters_repeat1, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [85191] = 6, + [86367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, + ACTIONS(5082), 1, anon_sym_RBRACE, - ACTIONS(6160), 1, + ACTIONS(6190), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2868), 2, + STATE(3084), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2898), 2, sym_line_comment, sym_block_comment, - [85211] = 4, + [86387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2869), 2, + ACTIONS(5082), 1, + anon_sym_RBRACE, + ACTIONS(6190), 1, + anon_sym_COMMA, + STATE(2965), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2899), 2, sym_line_comment, sym_block_comment, - ACTIONS(5023), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85227] = 4, + [86407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2870), 2, + ACTIONS(6192), 1, + anon_sym_RBRACE, + ACTIONS(6194), 1, + anon_sym_COMMA, + STATE(3006), 1, + aux_sym_struct_pattern_repeat1, + STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4919), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85243] = 6, + [86427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, + ACTIONS(5523), 1, anon_sym_GT, - ACTIONS(6162), 1, + ACTIONS(5525), 1, anon_sym_COMMA, - STATE(3128), 1, + STATE(3124), 1, aux_sym_type_parameters_repeat1, - STATE(2871), 2, + STATE(2901), 2, sym_line_comment, sym_block_comment, - [85263] = 6, + [86447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_GT, - ACTIONS(6162), 1, - anon_sym_COMMA, - STATE(2914), 1, - aux_sym_type_parameters_repeat1, - STATE(2872), 2, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [85283] = 4, + ACTIONS(6196), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2873), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6198), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85299] = 6, + [86481] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6164), 1, - anon_sym_SEMI, - STATE(1207), 1, - sym_declaration_list, - STATE(2874), 2, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [85319] = 4, + ACTIONS(6200), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86497] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2875), 2, + STATE(2905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85335] = 5, + ACTIONS(6202), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86513] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6166), 1, - anon_sym_RPAREN, - ACTIONS(6168), 1, + ACTIONS(4849), 1, + anon_sym_GT, + ACTIONS(6204), 1, anon_sym_COMMA, - STATE(2876), 3, + STATE(3119), 1, + aux_sym_type_parameters_repeat1, + STATE(2906), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [85353] = 6, + [86533] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6171), 1, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6206), 1, anon_sym_SEMI, - ACTIONS(6173), 1, - anon_sym_EQ, - STATE(2877), 2, + STATE(1265), 1, + sym_declaration_list, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [85373] = 6, + [86553] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, - anon_sym_RBRACE, - ACTIONS(6177), 1, + ACTIONS(6208), 1, + anon_sym_GT, + ACTIONS(6210), 1, anon_sym_COMMA, - STATE(2919), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2878), 2, + STATE(3055), 1, + aux_sym_use_bounds_repeat1, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [85393] = 6, + [86573] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6179), 1, - anon_sym_SEMI, - STATE(3672), 1, - sym_where_clause, - STATE(2879), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(6212), 1, + anon_sym_GT, + STATE(3382), 1, + sym_lifetime, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [85413] = 4, + [86593] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2880), 2, + ACTIONS(6214), 1, + anon_sym_GT, + ACTIONS(6216), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym_use_bounds_repeat1, + STATE(2910), 2, sym_line_comment, sym_block_comment, - ACTIONS(6181), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [85429] = 6, + [86613] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6183), 1, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6218), 1, anon_sym_SEMI, - STATE(3471), 1, - sym_where_clause, - STATE(2881), 2, + STATE(1271), 1, + sym_declaration_list, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [85449] = 6, + [86633] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6185), 1, - anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, - STATE(2882), 2, + STATE(2912), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5025), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86649] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6220), 1, + anon_sym_GT, + ACTIONS(6222), 1, + anon_sym_COMMA, + STATE(2913), 3, sym_line_comment, sym_block_comment, - [85469] = 4, + aux_sym_for_lifetimes_repeat1, + [86667] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2883), 2, + ACTIONS(6225), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, + STATE(2914), 2, sym_line_comment, sym_block_comment, - ACTIONS(6187), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [85485] = 6, + [86687] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_RBRACE, - ACTIONS(6189), 1, + ACTIONS(5589), 1, + anon_sym_RPAREN, + ACTIONS(5591), 1, anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2884), 2, + STATE(2877), 1, + aux_sym_parameters_repeat1, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [85505] = 6, + [86707] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6191), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6227), 1, anon_sym_SEMI, - STATE(3601), 1, - sym_where_clause, - STATE(2885), 2, + ACTIONS(6229), 1, + anon_sym_EQ, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [85525] = 4, + [86727] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2886), 2, + STATE(2917), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 3, + ACTIONS(913), 3, anon_sym_COLON, anon_sym_GT, anon_sym_COMMA, - [85541] = 5, + [86743] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6193), 2, + ACTIONS(5084), 1, anon_sym_RBRACE, + ACTIONS(6231), 1, anon_sym_COMMA, - STATE(2887), 2, + STATE(3157), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2918), 2, sym_line_comment, sym_block_comment, - [85559] = 6, + [86763] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, + ACTIONS(5084), 1, + anon_sym_RBRACE, + ACTIONS(6231), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2888), 2, + STATE(2997), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [85579] = 6, + [86783] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(6233), 1, anon_sym_GT, - ACTIONS(6195), 1, + ACTIONS(6235), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(2889), 2, + STATE(2886), 1, + aux_sym_use_bounds_repeat1, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [85599] = 6, + [86803] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6197), 1, - anon_sym_SEMI, - STATE(3616), 1, - sym_where_clause, - STATE(2890), 2, + ACTIONS(4118), 1, + anon_sym_LT2, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + STATE(1696), 1, + sym_type_arguments, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [85619] = 6, + [86823] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6201), 1, - anon_sym_ref, - ACTIONS(6203), 1, - sym_mutable_specifier, - STATE(2891), 2, + ACTIONS(6237), 1, + anon_sym_GT, + ACTIONS(6239), 1, + anon_sym_COMMA, + STATE(2891), 1, + aux_sym_use_bounds_repeat1, + STATE(2922), 2, sym_line_comment, sym_block_comment, - [85639] = 6, + [86843] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, - anon_sym_RBRACE, - ACTIONS(6205), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2892), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6241), 1, + anon_sym_SEMI, + STATE(1426), 1, + sym_declaration_list, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [85659] = 5, + [86863] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6209), 1, - anon_sym_COLON, - ACTIONS(6207), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2893), 2, + STATE(2924), 2, sym_line_comment, sym_block_comment, - [85677] = 5, + ACTIONS(5029), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_GT, - ACTIONS(6211), 1, - anon_sym_COMMA, - STATE(2894), 3, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6243), 1, + anon_sym_SEMI, + ACTIONS(6245), 1, + anon_sym_EQ, + STATE(2925), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [85695] = 5, + [86899] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_COLON, - ACTIONS(6214), 2, + ACTIONS(6247), 1, anon_sym_RBRACE, + ACTIONS(6249), 1, anon_sym_COMMA, - STATE(2895), 2, + STATE(3081), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [85713] = 6, + [86919] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1029), 1, - anon_sym_RBRACK, - ACTIONS(6218), 1, + ACTIONS(5127), 1, + anon_sym_RBRACE, + ACTIONS(6251), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2896), 2, + STATE(3157), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2927), 2, sym_line_comment, sym_block_comment, - [85733] = 6, + [86939] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(4462), 1, anon_sym_RBRACE, - ACTIONS(6222), 1, + ACTIONS(6253), 1, anon_sym_COMMA, - STATE(3057), 1, - aux_sym_struct_pattern_repeat1, - STATE(2897), 2, + STATE(3101), 1, + aux_sym_use_list_repeat1, + STATE(2928), 2, sym_line_comment, sym_block_comment, - [85753] = 6, + [86959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, + ACTIONS(6255), 1, anon_sym_GT, - ACTIONS(6224), 1, + ACTIONS(6257), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_type_arguments_repeat1, - STATE(2898), 2, + STATE(2929), 3, sym_line_comment, sym_block_comment, - [85773] = 6, + aux_sym_use_bounds_repeat1, + [86977] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1653), 1, - anon_sym_GT, - ACTIONS(6224), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(2899), 2, + STATE(2930), 2, sym_line_comment, sym_block_comment, - [85793] = 6, + ACTIONS(5031), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3128), 1, - anon_sym_RPAREN, - ACTIONS(6226), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(2900), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6260), 1, + anon_sym_SEMI, + ACTIONS(6262), 1, + anon_sym_EQ, + STATE(2931), 2, sym_line_comment, sym_block_comment, - [85813] = 6, + [87013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RBRACE, - ACTIONS(6228), 1, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6264), 1, anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(2901), 2, + STATE(2935), 1, + aux_sym_type_arguments_repeat1, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [85833] = 6, + [87033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3106), 1, - anon_sym_RPAREN, - ACTIONS(6230), 1, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6264), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(2902), 2, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [85853] = 6, + [87053] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6232), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6266), 1, anon_sym_SEMI, - STATE(722), 1, - sym_declaration_list, - STATE(2903), 2, + STATE(3624), 1, + sym_where_clause, + STATE(2934), 2, sym_line_comment, sym_block_comment, - [85873] = 6, + [87073] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5264), 1, - anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(1661), 1, + anon_sym_GT, + ACTIONS(6268), 1, anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(2904), 2, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [85893] = 6, + [87093] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, + ACTIONS(5073), 1, anon_sym_where, - ACTIONS(6236), 1, + ACTIONS(6270), 1, anon_sym_SEMI, - STATE(3497), 1, + STATE(3508), 1, sym_where_clause, - STATE(2905), 2, - sym_line_comment, - sym_block_comment, - [85913] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(2906), 2, + STATE(2936), 2, sym_line_comment, sym_block_comment, - [85933] = 6, + [87113] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(622), 1, - sym_declaration_list, - STATE(2907), 2, + ACTIONS(6272), 1, + sym_identifier, + ACTIONS(6274), 1, + anon_sym_await, + ACTIONS(6276), 1, + sym_integer_literal, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [85953] = 6, + [87133] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1355), 1, - anon_sym_RPAREN, - ACTIONS(5654), 1, + ACTIONS(6278), 1, + anon_sym_RBRACE, + ACTIONS(6280), 1, anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, - STATE(2908), 2, + STATE(2898), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - [85973] = 6, + [87153] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6240), 1, - sym_mutable_specifier, - ACTIONS(6242), 1, - sym_self, - STATE(2909), 2, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [85993] = 6, + ACTIONS(5033), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_GT, - ACTIONS(6244), 1, + ACTIONS(4767), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(2910), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [86013] = 6, + [87187] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_GT, - ACTIONS(6246), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(2911), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6282), 1, + anon_sym_SEMI, + ACTIONS(6284), 1, + anon_sym_EQ, + STATE(2941), 2, sym_line_comment, sym_block_comment, - [86033] = 6, + [87207] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5092), 1, + ACTIONS(6286), 1, anon_sym_RBRACE, - ACTIONS(6248), 1, + ACTIONS(6288), 1, anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2912), 2, + STATE(2927), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2942), 2, sym_line_comment, sym_block_comment, - [86053] = 6, + [87227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5092), 1, - anon_sym_RBRACE, - ACTIONS(6248), 1, + ACTIONS(939), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, anon_sym_COMMA, - STATE(2938), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2913), 2, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(2943), 2, sym_line_comment, sym_block_comment, - [86073] = 6, + [87247] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4827), 1, - anon_sym_GT, - ACTIONS(6250), 1, + ACTIONS(1009), 1, + anon_sym_RPAREN, + ACTIONS(6292), 1, anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, - STATE(2914), 2, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(2944), 2, sym_line_comment, sym_block_comment, - [86093] = 6, + [87267] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6252), 1, + ACTIONS(6294), 1, anon_sym_SEMI, - STATE(1258), 1, + STATE(560), 1, sym_declaration_list, - STATE(2915), 2, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [86113] = 6, + [87287] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6254), 1, - anon_sym_SEMI, - STATE(1264), 1, - sym_declaration_list, - STATE(2916), 2, + ACTIONS(6296), 1, + anon_sym_move, + STATE(231), 1, + sym_closure_parameters, + STATE(2946), 2, sym_line_comment, sym_block_comment, - [86133] = 5, + [87307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6258), 1, - anon_sym_COLON, - ACTIONS(6256), 2, - anon_sym_RBRACE, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6298), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2917), 2, + STATE(2947), 2, sym_line_comment, sym_block_comment, - [86151] = 6, + [87325] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6260), 1, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6300), 1, anon_sym_SEMI, - ACTIONS(6262), 1, - anon_sym_EQ, - STATE(2918), 2, + STATE(3785), 1, + sym_where_clause, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [86171] = 6, + [87345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, + ACTIONS(6304), 1, + anon_sym_COLON, + ACTIONS(6302), 2, anon_sym_RBRACE, - ACTIONS(6264), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2919), 2, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [86191] = 6, + [87363] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5096), 1, - anon_sym_RBRACE, - ACTIONS(6264), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2920), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - [86211] = 4, + ACTIONS(4981), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87379] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2921), 2, + STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(6266), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86227] = 6, + ACTIONS(4983), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87395] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(1655), 1, + anon_sym_GT, + ACTIONS(6306), 1, + anon_sym_COMMA, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(2952), 2, + sym_line_comment, + sym_block_comment, + [87415] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6268), 1, + ACTIONS(6308), 1, anon_sym_SEMI, - STATE(1419), 1, + STATE(506), 1, sym_declaration_list, - STATE(2922), 2, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [86247] = 5, + [87435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6270), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2923), 2, + STATE(2954), 2, sym_line_comment, sym_block_comment, - [86265] = 4, + ACTIONS(4995), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2924), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6310), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2955), 2, sym_line_comment, sym_block_comment, - ACTIONS(6272), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86281] = 6, + [87469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6274), 1, - anon_sym_SEMI, - ACTIONS(6276), 1, - anon_sym_EQ, - STATE(2925), 2, + ACTIONS(6310), 1, + anon_sym_RPAREN, + ACTIONS(6312), 1, + anon_sym_COMMA, + STATE(2956), 3, sym_line_comment, sym_block_comment, - [86301] = 6, + aux_sym_tuple_pattern_repeat1, + [87487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6278), 1, - anon_sym_SEMI, - STATE(3486), 1, - sym_where_clause, - STATE(2926), 2, + STATE(2957), 2, sym_line_comment, sym_block_comment, - [86321] = 6, + ACTIONS(5013), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87503] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, - anon_sym_LBRACE, - ACTIONS(6280), 1, - anon_sym_COLON_COLON, - STATE(1832), 1, - sym_field_initializer_list, - STATE(2927), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6315), 1, + anon_sym_EQ, + STATE(3656), 1, + sym_where_clause, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [86341] = 5, + [87523] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5600), 1, - anon_sym_COLON, - ACTIONS(6282), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2928), 2, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [86359] = 6, + ACTIONS(4650), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87539] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, + ACTIONS(1367), 1, anon_sym_RPAREN, - ACTIONS(6284), 1, + ACTIONS(6317), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2929), 2, + STATE(3096), 1, + aux_sym_parameters_repeat1, + STATE(2960), 2, sym_line_comment, sym_block_comment, - [86379] = 6, + [87559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6286), 1, - anon_sym_SEMI, - STATE(3755), 1, - sym_where_clause, - STATE(2930), 2, + ACTIONS(6321), 1, + anon_sym_COLON, + ACTIONS(6319), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [86399] = 6, + [87577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1613), 1, - anon_sym_GT, - ACTIONS(6288), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(2931), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6323), 1, + anon_sym_SEMI, + STATE(697), 1, + sym_declaration_list, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [86419] = 4, + [87597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2932), 2, + ACTIONS(5675), 1, + anon_sym_COMMA, + ACTIONS(6325), 1, + anon_sym_PIPE, + STATE(3165), 1, + aux_sym_closure_parameters_repeat1, + STATE(2963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4973), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86435] = 4, + [87617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2933), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 3, + ACTIONS(4989), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86451] = 6, + [87633] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6290), 1, - anon_sym_EQ, - STATE(3511), 1, - sym_where_clause, - STATE(2934), 2, + ACTIONS(5090), 1, + anon_sym_RBRACE, + ACTIONS(6327), 1, + anon_sym_COMMA, + STATE(3084), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2965), 2, sym_line_comment, sym_block_comment, - [86471] = 6, + [87653] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1361), 1, - anon_sym_RPAREN, - ACTIONS(6292), 1, + ACTIONS(6329), 1, + anon_sym_RBRACE, + ACTIONS(6331), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(2935), 2, + STATE(3107), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2966), 2, sym_line_comment, sym_block_comment, - [86491] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [87673] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6294), 1, - anon_sym_move, - STATE(237), 1, - sym_closure_parameters, - STATE(2936), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6333), 1, + anon_sym_SEMI, + STATE(508), 1, + sym_declaration_list, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [86511] = 4, + [87693] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2937), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6335), 1, + anon_sym_SEMI, + STATE(1315), 1, + sym_declaration_list, + STATE(2968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4971), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86527] = 6, + [87713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5126), 1, - anon_sym_RBRACE, - ACTIONS(6296), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2938), 2, + STATE(2969), 2, sym_line_comment, sym_block_comment, - [86547] = 6, + ACTIONS(6337), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [87729] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(6298), 1, + ACTIONS(6339), 1, anon_sym_SEMI, - STATE(1308), 1, + STATE(1317), 1, sym_declaration_list, - STATE(2939), 2, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [86567] = 6, + [87749] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6300), 1, - anon_sym_SEMI, - STATE(1310), 1, - sym_declaration_list, - STATE(2940), 2, + ACTIONS(4853), 1, + anon_sym_GT, + ACTIONS(6341), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_type_parameters_repeat1, + STATE(2971), 2, sym_line_comment, sym_block_comment, - [86587] = 5, + [87769] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 1, - anon_sym_PIPE, - ACTIONS(6302), 1, + ACTIONS(1669), 1, + anon_sym_GT, + ACTIONS(6343), 1, anon_sym_COMMA, - STATE(2941), 3, + STATE(3131), 1, + aux_sym_type_arguments_repeat1, + STATE(2972), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [86605] = 6, + [87789] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6305), 1, - anon_sym_SEMI, - STATE(1316), 1, - sym_declaration_list, - STATE(2942), 2, + ACTIONS(1669), 1, + anon_sym_GT, + ACTIONS(6343), 1, + anon_sym_COMMA, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [86625] = 6, + [87809] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6307), 1, + ACTIONS(6345), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(566), 1, sym_declaration_list, - STATE(2943), 2, + STATE(2974), 2, sym_line_comment, sym_block_comment, - [86645] = 4, + [87829] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2944), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6347), 1, + anon_sym_SEMI, + STATE(3669), 1, + sym_where_clause, + STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86661] = 6, + [87849] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6309), 1, - anon_sym_SEMI, - ACTIONS(6311), 1, - anon_sym_EQ, - STATE(2945), 2, + ACTIONS(4853), 1, + anon_sym_GT, + ACTIONS(6341), 1, + anon_sym_COMMA, + STATE(2906), 1, + aux_sym_type_parameters_repeat1, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [86681] = 4, + [87869] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2946), 2, + ACTIONS(6349), 1, + anon_sym_RBRACE, + ACTIONS(6351), 1, + anon_sym_COMMA, + STATE(2987), 1, + aux_sym_struct_pattern_repeat1, + STATE(2977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4969), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86697] = 6, + [87889] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(2947), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6353), 1, + anon_sym_SEMI, + STATE(1323), 1, + sym_declaration_list, + STATE(2978), 2, sym_line_comment, sym_block_comment, - [86717] = 6, + [87909] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, - anon_sym_RBRACE, - ACTIONS(6313), 1, + ACTIONS(3128), 1, + anon_sym_RPAREN, + ACTIONS(6355), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2948), 2, + STATE(2761), 1, + aux_sym_slice_pattern_repeat1, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [86737] = 5, + [87929] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_RBRACE, - ACTIONS(6317), 1, - anon_sym_COMMA, - STATE(2949), 3, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6357), 1, + anon_sym_SEMI, + STATE(1325), 1, + sym_declaration_list, + STATE(2980), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [86755] = 4, + [87949] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2950), 2, + STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, + ACTIONS(5043), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86771] = 6, + [87965] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_RBRACE, - ACTIONS(6320), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2951), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6359), 1, + anon_sym_SEMI, + STATE(3579), 1, + sym_where_clause, + STATE(2982), 2, sym_line_comment, sym_block_comment, - [86791] = 4, + [87985] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2952), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(6361), 1, + anon_sym_GT, + ACTIONS(6363), 1, + anon_sym_as, + STATE(2983), 2, sym_line_comment, sym_block_comment, - ACTIONS(5564), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86807] = 6, + [88005] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6322), 1, - anon_sym_SEMI, - STATE(3713), 1, - sym_where_clause, - STATE(2953), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6365), 1, + sym_mutable_specifier, + ACTIONS(6367), 1, + sym_self, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [86827] = 5, + [88025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 1, + ACTIONS(6371), 1, + anon_sym_COLON, + ACTIONS(6369), 2, anon_sym_RBRACE, - ACTIONS(6326), 1, anon_sym_COMMA, - STATE(2954), 3, + STATE(2985), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [86845] = 4, + [88043] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2955), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6373), 1, + anon_sym_SEMI, + ACTIONS(6375), 1, + anon_sym_EQ, + STATE(2986), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86861] = 6, + [88063] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6329), 1, - anon_sym_SEMI, - STATE(1358), 1, - sym_declaration_list, - STATE(2956), 2, + ACTIONS(5374), 1, + anon_sym_RBRACE, + ACTIONS(6377), 1, + anon_sym_COMMA, + STATE(3112), 1, + aux_sym_struct_pattern_repeat1, + STATE(2987), 2, sym_line_comment, sym_block_comment, - [86881] = 6, + [88083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - anon_sym_SEMI, - STATE(1360), 1, - sym_declaration_list, - STATE(2957), 2, + ACTIONS(6379), 1, + anon_sym_GT, + ACTIONS(6381), 1, + anon_sym_COMMA, + STATE(3045), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [86901] = 4, + [88103] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2958), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6383), 1, + anon_sym_SEMI, + STATE(3791), 1, + sym_where_clause, + STATE(2989), 2, sym_line_comment, sym_block_comment, - ACTIONS(6333), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86917] = 6, + [88123] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6335), 1, + ACTIONS(6385), 1, anon_sym_SEMI, - STATE(1367), 1, + STATE(610), 1, sym_declaration_list, - STATE(2959), 2, + STATE(2990), 2, sym_line_comment, sym_block_comment, - [86937] = 6, + [88143] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(6337), 1, + ACTIONS(6387), 1, anon_sym_SEMI, - STATE(1369), 1, + STATE(1214), 1, sym_declaration_list, - STATE(2960), 2, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [86957] = 6, + [88163] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6339), 1, - anon_sym_SEMI, - ACTIONS(6341), 1, - anon_sym_EQ, - STATE(2961), 2, + ACTIONS(3552), 1, + anon_sym_LBRACE, + ACTIONS(6389), 1, + anon_sym_COLON_COLON, + STATE(1528), 1, + sym_field_initializer_list, + STATE(2992), 2, sym_line_comment, sym_block_comment, - [86977] = 6, + [88183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6343), 1, - anon_sym_SEMI, - STATE(1375), 1, - sym_declaration_list, - STATE(2962), 2, + STATE(2993), 2, sym_line_comment, sym_block_comment, - [86997] = 6, + ACTIONS(4997), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(6391), 1, + anon_sym_LPAREN, + ACTIONS(6393), 1, + anon_sym_LBRACK, + ACTIONS(6395), 1, anon_sym_LBRACE, - ACTIONS(6345), 1, - anon_sym_SEMI, - STATE(1377), 1, - sym_declaration_list, - STATE(2963), 2, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [87017] = 6, + [88219] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(6397), 1, + anon_sym_LPAREN, + ACTIONS(6399), 1, + anon_sym_LBRACK, + ACTIONS(6401), 1, anon_sym_LBRACE, - ACTIONS(6347), 1, - anon_sym_SEMI, - STATE(741), 1, - sym_declaration_list, - STATE(2964), 2, + STATE(2995), 2, sym_line_comment, sym_block_comment, - [87037] = 6, + [88239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6349), 1, - anon_sym_SEMI, - ACTIONS(6351), 1, - anon_sym_EQ, - STATE(2965), 2, + STATE(2996), 2, sym_line_comment, sym_block_comment, - [87057] = 6, + ACTIONS(4999), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88255] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5102), 1, + ACTIONS(5092), 1, anon_sym_RBRACE, - ACTIONS(6160), 1, + ACTIONS(6403), 1, anon_sym_COMMA, - STATE(2951), 1, + STATE(3157), 1, aux_sym_field_declaration_list_repeat1, - STATE(2966), 2, + STATE(2997), 2, sym_line_comment, sym_block_comment, - [87077] = 6, + [88275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6353), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_declaration_list, - STATE(2967), 2, + STATE(2998), 2, sym_line_comment, sym_block_comment, - [87097] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6355), 1, + ACTIONS(6405), 3, anon_sym_SEMI, - STATE(1397), 1, - sym_declaration_list, - STATE(2968), 2, - sym_line_comment, - sym_block_comment, - [87117] = 5, + anon_sym_RBRACE, + anon_sym_COMMA, + [88291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 1, - anon_sym_RBRACE, - ACTIONS(6359), 1, + ACTIONS(973), 1, + anon_sym_RBRACK, + ACTIONS(4332), 1, anon_sym_COMMA, - STATE(2969), 3, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(2999), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87135] = 6, + [88311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(6407), 1, anon_sym_LBRACE, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_declaration_list, - STATE(2970), 2, + STATE(2025), 1, + sym_type_arguments, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [87155] = 6, + [88331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6364), 1, + ACTIONS(3130), 1, anon_sym_RPAREN, - ACTIONS(6366), 1, + ACTIONS(6409), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2971), 2, + STATE(2761), 1, + aux_sym_slice_pattern_repeat1, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [87175] = 5, + [88351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6368), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2972), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6411), 1, + anon_sym_SEMI, + STATE(586), 1, + sym_declaration_list, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [87193] = 5, + [88371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6370), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2973), 2, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [87211] = 6, - ACTIONS(27), 1, + ACTIONS(5049), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [88387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_move, - STATE(252), 1, - sym_closure_parameters, - STATE(2974), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6413), 1, + anon_sym_SEMI, + STATE(588), 1, + sym_declaration_list, + STATE(3004), 2, sym_line_comment, sym_block_comment, - [87231] = 6, + [88407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(4298), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2975), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6415), 1, + anon_sym_SEMI, + STATE(705), 1, + sym_declaration_list, + STATE(3005), 2, sym_line_comment, sym_block_comment, - [87251] = 5, + [88427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(5441), 2, - anon_sym_RPAREN, + ACTIONS(5378), 1, + anon_sym_RBRACE, + ACTIONS(6417), 1, anon_sym_COMMA, - STATE(2976), 2, + STATE(3112), 1, + aux_sym_struct_pattern_repeat1, + STATE(3006), 2, sym_line_comment, sym_block_comment, - [87269] = 6, + [88447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6374), 1, - anon_sym_GT, - ACTIONS(6376), 1, - anon_sym_COMMA, - STATE(3091), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2977), 2, + STATE(3007), 2, sym_line_comment, sym_block_comment, - [87289] = 6, + ACTIONS(5011), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - STATE(2978), 2, + ACTIONS(6419), 1, + anon_sym_AMP_AMP, + ACTIONS(4366), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3008), 2, sym_line_comment, sym_block_comment, - [87309] = 6, + [88481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6421), 2, anon_sym_RPAREN, - ACTIONS(6378), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(2979), 2, + STATE(3009), 2, sym_line_comment, sym_block_comment, - [87329] = 5, + [88499] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - ACTIONS(6380), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2980), 2, + STATE(3010), 2, sym_line_comment, sym_block_comment, - [87347] = 4, + ACTIONS(5015), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88515] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2981), 2, + STATE(3011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4975), 3, + ACTIONS(5017), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87363] = 6, + [88531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_RBRACE, - ACTIONS(6384), 1, + ACTIONS(6421), 1, + anon_sym_RPAREN, + ACTIONS(6423), 1, anon_sym_COMMA, - STATE(3069), 1, - aux_sym_struct_pattern_repeat1, - STATE(2982), 2, + STATE(3012), 3, sym_line_comment, sym_block_comment, - [87383] = 5, + aux_sym_tuple_type_repeat1, + [88549] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2983), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6426), 1, + anon_sym_SEMI, + STATE(568), 1, + sym_declaration_list, + STATE(3013), 2, sym_line_comment, sym_block_comment, - [87401] = 6, + [88569] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, - STATE(2984), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6428), 1, + anon_sym_SEMI, + ACTIONS(6430), 1, + anon_sym_EQ, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [87421] = 6, + [88589] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(4204), 1, anon_sym_LBRACE, - ACTIONS(6388), 1, - anon_sym_SEMI, - STATE(1139), 1, - sym_declaration_list, - STATE(2985), 2, + ACTIONS(6432), 1, + anon_sym_COLON_COLON, + STATE(1863), 1, + sym_field_initializer_list, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [87441] = 6, + [88609] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, + ACTIONS(905), 1, anon_sym_RBRACK, - ACTIONS(4304), 1, + ACTIONS(4346), 1, anon_sym_COMMA, - STATE(2590), 1, + STATE(2780), 1, aux_sym_arguments_repeat1, - STATE(2986), 2, - sym_line_comment, - sym_block_comment, - [87461] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6390), 1, - anon_sym_SEMI, - ACTIONS(6392), 1, - anon_sym_RBRACK, - STATE(2987), 2, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [87481] = 6, + [88629] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - ACTIONS(5052), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym_type_arguments, - STATE(2988), 2, + ACTIONS(6434), 1, + anon_sym_RBRACE, + ACTIONS(6436), 1, + anon_sym_COMMA, + STATE(2918), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3017), 2, sym_line_comment, sym_block_comment, - [87501] = 4, + [88649] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2989), 2, + ACTIONS(6438), 1, + anon_sym_RBRACE, + ACTIONS(6440), 1, + anon_sym_COMMA, + STATE(3018), 3, sym_line_comment, sym_block_comment, - ACTIONS(6394), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87517] = 4, + aux_sym_field_initializer_list_repeat1, + [88667] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2990), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6443), 1, + anon_sym_SEMI, + STATE(3521), 1, + sym_where_clause, + STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87533] = 6, + [88687] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(6396), 1, + ACTIONS(6445), 1, anon_sym_SEMI, - ACTIONS(6398), 1, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(2991), 2, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [87553] = 5, + [88707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(5942), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2992), 2, + ACTIONS(6419), 1, + anon_sym_AMP_AMP, + ACTIONS(6449), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [87571] = 6, + [88725] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3274), 1, - anon_sym_RPAREN, - ACTIONS(6400), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(2993), 2, + STATE(3022), 2, sym_line_comment, sym_block_comment, - [87591] = 5, + ACTIONS(4889), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6402), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2994), 2, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [87609] = 6, + ACTIONS(4969), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_parameters_repeat1, - STATE(2995), 2, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [87629] = 6, + ACTIONS(5039), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88773] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6404), 1, - anon_sym_GT, - ACTIONS(6406), 1, + ACTIONS(5675), 1, anon_sym_COMMA, - STATE(3007), 1, - aux_sym_use_bounds_repeat1, - STATE(2996), 2, + ACTIONS(6451), 1, + anon_sym_PIPE, + STATE(2963), 1, + aux_sym_closure_parameters_repeat1, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [87649] = 6, + [88793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, - anon_sym_GT, - ACTIONS(6410), 1, - anon_sym_COMMA, - STATE(3008), 1, - aux_sym_use_bounds_repeat1, - STATE(2997), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - [87669] = 6, + ACTIONS(5027), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88809] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6412), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - ACTIONS(6414), 1, + ACTIONS(5626), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2998), 2, + STATE(3096), 1, + aux_sym_parameters_repeat1, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [87689] = 5, + [88829] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 1, - anon_sym_RPAREN, - ACTIONS(6416), 1, - anon_sym_COMMA, - STATE(2999), 3, + STATE(3028), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [87707] = 6, + ACTIONS(6453), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88845] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(5864), 1, - sym_identifier, - STATE(3278), 1, - sym_lifetime, - STATE(3000), 2, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [87727] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(6455), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6419), 1, - anon_sym_move, - STATE(238), 1, - sym_closure_parameters, - STATE(3001), 2, + ACTIONS(6457), 1, + anon_sym_EQ_GT, + ACTIONS(6459), 1, + anon_sym_PIPE, + ACTIONS(6461), 1, + anon_sym_if, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [87747] = 6, + [88881] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6421), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_arguments_repeat1, - STATE(3002), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6463), 1, + anon_sym_SEMI, + STATE(3527), 1, + sym_where_clause, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [87767] = 6, + [88901] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6421), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3003), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6465), 1, + anon_sym_SEMI, + STATE(1365), 1, + sym_declaration_list, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [87787] = 5, + [88921] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - anon_sym_RBRACE, - ACTIONS(6425), 1, - anon_sym_COMMA, - STATE(3004), 3, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6467), 1, + anon_sym_SEMI, + STATE(1367), 1, + sym_declaration_list, + STATE(3033), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87805] = 6, + [88941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + ACTIONS(1377), 1, anon_sym_RPAREN, - ACTIONS(5700), 1, + ACTIONS(5626), 1, anon_sym_COMMA, - STATE(2999), 1, + STATE(2888), 1, aux_sym_parameters_repeat1, - STATE(3005), 2, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [87825] = 6, + [88961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1367), 1, + ACTIONS(1834), 1, anon_sym_RPAREN, - ACTIONS(5700), 1, + ACTIONS(6469), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - STATE(3006), 2, + STATE(2956), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3035), 2, sym_line_comment, sym_block_comment, - [87845] = 6, + [88981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5962), 1, - anon_sym_GT, - ACTIONS(6428), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3007), 2, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [87865] = 6, + ACTIONS(5041), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88997] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5964), 1, - anon_sym_GT, - ACTIONS(6430), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3008), 2, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [87885] = 6, + ACTIONS(6471), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [89013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_GT, - ACTIONS(6432), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3009), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6473), 1, + anon_sym_SEMI, + STATE(1374), 1, + sym_declaration_list, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [87905] = 6, + [89033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, - sym_identifier, - ACTIONS(6436), 1, - anon_sym_await, - ACTIONS(6438), 1, - sym_integer_literal, - STATE(3010), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6475), 1, + anon_sym_SEMI, + STATE(1376), 1, + sym_declaration_list, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [87925] = 6, + [89053] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3270), 1, + ACTIONS(6477), 1, anon_sym_RPAREN, - ACTIONS(6440), 1, + ACTIONS(6479), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(3011), 2, + STATE(3070), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3040), 2, sym_line_comment, sym_block_comment, - [87945] = 4, + [89073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3012), 2, + STATE(3041), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, + ACTIONS(4957), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87961] = 6, + [89089] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6442), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3013), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6481), 1, + anon_sym_SEMI, + STATE(640), 1, + sym_declaration_list, + STATE(3042), 2, sym_line_comment, sym_block_comment, - [87981] = 6, + [89109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4440), 1, - anon_sym_RBRACE, - ACTIONS(6444), 1, + ACTIONS(6483), 1, + anon_sym_RPAREN, + ACTIONS(6485), 1, anon_sym_COMMA, - STATE(2969), 1, - aux_sym_use_list_repeat1, - STATE(3014), 2, + STATE(3070), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [88001] = 6, + [89129] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1349), 1, - anon_sym_RPAREN, - ACTIONS(6446), 1, + STATE(3044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5023), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89145] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6487), 1, + anon_sym_GT, + ACTIONS(6489), 1, anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(3015), 2, + STATE(2913), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [88021] = 6, + [89165] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6448), 1, - anon_sym_SEMI, - STATE(3504), 1, - sym_where_clause, - STATE(3016), 2, + STATE(3046), 2, sym_line_comment, sym_block_comment, - [88041] = 6, + ACTIONS(5045), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89181] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(4256), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3017), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6491), 1, + anon_sym_SEMI, + STATE(1382), 1, + sym_declaration_list, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [88061] = 6, + [89201] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(6450), 1, + ACTIONS(6493), 1, anon_sym_SEMI, - STATE(714), 1, + STATE(1384), 1, sym_declaration_list, - STATE(3018), 2, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [88081] = 4, + [89221] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3019), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6495), 1, + anon_sym_SEMI, + ACTIONS(6497), 1, + anon_sym_EQ, + STATE(3049), 2, sym_line_comment, sym_block_comment, - ACTIONS(6452), 3, + [89241] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6499), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88097] = 6, + STATE(1235), 1, + sym_declaration_list, + STATE(3050), 2, + sym_line_comment, + sym_block_comment, + [89261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(5871), 2, anon_sym_RPAREN, - ACTIONS(5822), 1, anon_sym_COMMA, - STATE(2847), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3020), 2, + STATE(3051), 2, sym_line_comment, sym_block_comment, - [88117] = 6, + [89279] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON_COLON, - STATE(1643), 1, - sym_type_arguments, - STATE(3021), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6503), 1, + anon_sym_EQ, + STATE(3052), 2, sym_line_comment, sym_block_comment, - [88137] = 6, + [89299] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(6454), 1, - anon_sym_GT, - ACTIONS(6456), 1, - anon_sym_as, - STATE(3022), 2, + STATE(3053), 2, sym_line_comment, sym_block_comment, - [88157] = 6, + ACTIONS(6505), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6507), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3014), 1, - aux_sym_use_list_repeat1, - STATE(3023), 2, + STATE(3054), 2, sym_line_comment, sym_block_comment, - [88177] = 6, + [89333] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, + ACTIONS(6082), 1, anon_sym_GT, - ACTIONS(6462), 1, + ACTIONS(6509), 1, anon_sym_COMMA, - STATE(3028), 1, - aux_sym_type_arguments_repeat1, - STATE(3024), 2, + STATE(2929), 1, + aux_sym_use_bounds_repeat1, + STATE(3055), 2, sym_line_comment, sym_block_comment, - [88197] = 6, + [89353] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6462), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3025), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5156), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [88217] = 4, + [89373] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3026), 2, + STATE(3057), 2, sym_line_comment, sym_block_comment, - ACTIONS(6464), 3, + ACTIONS(6511), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [88233] = 4, + [89389] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3027), 2, + ACTIONS(6084), 1, + anon_sym_GT, + ACTIONS(6513), 1, + anon_sym_COMMA, + STATE(2929), 1, + aux_sym_use_bounds_repeat1, + STATE(3058), 2, sym_line_comment, sym_block_comment, - ACTIONS(6466), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88249] = 6, + [89409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, - anon_sym_GT, - ACTIONS(6468), 1, + STATE(3059), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5009), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89425] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6515), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3028), 2, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [88269] = 6, + [89443] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6470), 1, - anon_sym_GT, - STATE(3234), 1, - sym_lifetime, - STATE(3029), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6517), 1, + anon_sym_SEMI, + STATE(1146), 1, + sym_declaration_list, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [88289] = 6, + [89463] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(6472), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, - STATE(3030), 2, + ACTIONS(6519), 1, + anon_sym_SEMI, + STATE(1402), 1, + sym_declaration_list, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [88309] = 6, + [89483] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_GT, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(3129), 1, - aux_sym_type_parameters_repeat1, - STATE(3031), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6521), 1, + anon_sym_SEMI, + STATE(1404), 1, + sym_declaration_list, + STATE(3063), 2, sym_line_comment, sym_block_comment, - [88329] = 6, + [89503] = 6, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, + ACTIONS(6523), 1, anon_sym_move, - STATE(229), 1, + STATE(215), 1, sym_closure_parameters, - STATE(3032), 2, + STATE(3064), 2, sym_line_comment, sym_block_comment, - [88349] = 5, + [89523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 1, - anon_sym_GT, - ACTIONS(6478), 1, - anon_sym_COMMA, - STATE(3033), 3, + ACTIONS(4825), 1, + anon_sym_COLON, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(2560), 1, + sym_trait_bounds, + STATE(3065), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [88367] = 6, + [89543] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_GT, - ACTIONS(5492), 1, - anon_sym_COMMA, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, - STATE(3034), 2, + STATE(3066), 2, sym_line_comment, sym_block_comment, - [88387] = 4, + ACTIONS(4971), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3035), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6525), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3067), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88403] = 6, + [89577] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6481), 1, - anon_sym_SEMI, - ACTIONS(6483), 1, - anon_sym_EQ, - STATE(3036), 2, + STATE(3068), 2, sym_line_comment, sym_block_comment, - [88423] = 4, + ACTIONS(6527), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [89593] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3037), 2, + STATE(3069), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 3, + ACTIONS(4977), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88439] = 6, + [89609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, - sym_identifier, - ACTIONS(6487), 1, - anon_sym_await, - ACTIONS(6489), 1, - sym_integer_literal, - STATE(3038), 2, + ACTIONS(6529), 1, + anon_sym_RPAREN, + ACTIONS(6531), 1, + anon_sym_COMMA, + STATE(3070), 3, sym_line_comment, sym_block_comment, - [88459] = 6, + aux_sym_ordered_field_declaration_list_repeat1, + [89627] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_RBRACK, - ACTIONS(6491), 1, + ACTIONS(1001), 1, + anon_sym_RPAREN, + ACTIONS(6534), 1, anon_sym_COMMA, - STATE(2590), 1, + STATE(2780), 1, aux_sym_arguments_repeat1, - STATE(3039), 2, + STATE(3071), 2, sym_line_comment, sym_block_comment, - [88479] = 5, + [89647] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6493), 2, + STATE(3072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5650), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89663] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1031), 1, anon_sym_RPAREN, + ACTIONS(4336), 1, anon_sym_COMMA, - STATE(3040), 2, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(3073), 2, sym_line_comment, sym_block_comment, - [88497] = 5, + [89683] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, + ACTIONS(5789), 1, anon_sym_RPAREN, - ACTIONS(6495), 1, + ACTIONS(5791), 1, anon_sym_COMMA, - STATE(3041), 3, + STATE(3027), 1, + aux_sym_parameters_repeat1, + STATE(3074), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [88515] = 6, + [89703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6498), 1, - anon_sym_SEMI, - STATE(506), 1, - sym_declaration_list, - STATE(3042), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6536), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3075), 2, sym_line_comment, sym_block_comment, - [88535] = 6, + [89721] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6500), 1, - anon_sym_SEMI, - ACTIONS(6502), 1, - anon_sym_RBRACK, - STATE(3043), 2, + ACTIONS(4973), 1, + anon_sym_RBRACE, + ACTIONS(6538), 1, + anon_sym_COMMA, + STATE(3018), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [88555] = 6, + [89741] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6504), 1, - anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, - STATE(3044), 2, + ACTIONS(6542), 1, + anon_sym_COLON, + ACTIONS(6540), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3077), 2, sym_line_comment, sym_block_comment, - [88575] = 6, + [89759] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6506), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3045), 2, + ACTIONS(6544), 1, + sym_identifier, + ACTIONS(6546), 1, + anon_sym_await, + ACTIONS(6548), 1, + sym_integer_literal, + STATE(3078), 2, sym_line_comment, sym_block_comment, - [88595] = 4, + [89779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3046), 2, + ACTIONS(6552), 1, + anon_sym_EQ, + ACTIONS(6550), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88611] = 4, + [89797] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3047), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6554), 1, + anon_sym_SEMI, + STATE(3747), 1, + sym_where_clause, + STATE(3080), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88627] = 6, + [89817] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6508), 1, + ACTIONS(5134), 1, + anon_sym_RBRACE, + ACTIONS(6556), 1, anon_sym_COMMA, - STATE(2889), 1, - aux_sym_type_arguments_repeat1, - STATE(3048), 2, + STATE(3084), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3081), 2, sym_line_comment, sym_block_comment, - [88647] = 6, + [89837] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_GT, - ACTIONS(6512), 1, + ACTIONS(3146), 1, + anon_sym_RBRACK, + ACTIONS(6558), 1, anon_sym_COMMA, - STATE(3096), 1, - aux_sym_use_bounds_repeat1, - STATE(3049), 2, + STATE(2761), 1, + aux_sym_slice_pattern_repeat1, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [88667] = 6, + [89857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, - anon_sym_GT, - ACTIONS(6508), 1, + ACTIONS(5134), 1, + anon_sym_RBRACE, + ACTIONS(6556), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_type_arguments_repeat1, - STATE(3050), 2, + STATE(3130), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [88687] = 6, + [89877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_GT, - ACTIONS(6516), 1, + ACTIONS(6560), 1, + anon_sym_RBRACE, + ACTIONS(6562), 1, anon_sym_COMMA, - STATE(3098), 1, - aux_sym_use_bounds_repeat1, - STATE(3051), 2, + STATE(3084), 3, sym_line_comment, sym_block_comment, - [88707] = 6, + aux_sym_enum_variant_list_repeat2, + [89895] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6518), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - STATE(2003), 1, - sym_type_arguments, - STATE(3052), 2, + ACTIONS(4825), 1, + anon_sym_COLON, + STATE(2560), 1, + sym_trait_bounds, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [88727] = 5, + [89915] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6520), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3053), 2, + ACTIONS(3552), 1, + anon_sym_LBRACE, + ACTIONS(6565), 1, + anon_sym_COLON_COLON, + STATE(1528), 1, + sym_field_initializer_list, + STATE(3086), 2, sym_line_comment, sym_block_comment, - [88745] = 6, + [89935] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3138), 1, - anon_sym_RPAREN, - ACTIONS(6522), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(3054), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6567), 1, + anon_sym_SEMI, + STATE(3547), 1, + sym_where_clause, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [88765] = 5, + [89955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6526), 1, - anon_sym_COLON, - ACTIONS(6524), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6569), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3055), 2, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [88783] = 4, + [89973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3056), 2, + ACTIONS(933), 1, + anon_sym_RBRACK, + ACTIONS(4266), 1, + anon_sym_COMMA, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(3089), 2, sym_line_comment, sym_block_comment, - ACTIONS(6528), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88799] = 6, + [89993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5374), 1, - anon_sym_RBRACE, - ACTIONS(6530), 1, + ACTIONS(4767), 1, + anon_sym_COLON_COLON, + ACTIONS(6571), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(3057), 2, + STATE(3090), 2, sym_line_comment, sym_block_comment, - [88819] = 6, + [90011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(6532), 1, - anon_sym_COLON_COLON, - STATE(1518), 1, - sym_field_initializer_list, - STATE(3058), 2, + ACTIONS(6573), 1, + anon_sym_EQ, + ACTIONS(6575), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [88839] = 5, + [90029] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - anon_sym_COLON, - ACTIONS(6534), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3059), 2, + STATE(3092), 2, sym_line_comment, sym_block_comment, - [88857] = 6, + ACTIONS(5047), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90045] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6538), 1, - anon_sym_LPAREN, - ACTIONS(6540), 1, - anon_sym_LBRACK, - ACTIONS(6542), 1, - anon_sym_LBRACE, - STATE(3060), 2, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6579), 1, + anon_sym_ref, + ACTIONS(6581), 1, + sym_mutable_specifier, + STATE(3093), 2, sym_line_comment, sym_block_comment, - [88877] = 6, + [90065] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6544), 1, - anon_sym_LPAREN, - ACTIONS(6546), 1, - anon_sym_LBRACK, - ACTIONS(6548), 1, - anon_sym_LBRACE, - STATE(3061), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6583), 1, + anon_sym_SEMI, + ACTIONS(6585), 1, + anon_sym_EQ, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [88897] = 6, + [90085] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_RBRACE, - ACTIONS(6552), 1, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(4280), 1, anon_sym_COMMA, - STATE(2892), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3062), 2, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [88917] = 5, + [90105] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_GT, - ACTIONS(6556), 1, + ACTIONS(5871), 1, + anon_sym_RPAREN, + ACTIONS(6587), 1, anon_sym_COMMA, - STATE(3063), 3, + STATE(3096), 3, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [88935] = 6, + aux_sym_parameters_repeat1, + [90123] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6559), 1, - anon_sym_LBRACE, - STATE(2008), 1, - sym_type_arguments, - STATE(3064), 2, + ACTIONS(6096), 1, + anon_sym_RPAREN, + ACTIONS(6098), 1, + anon_sym_COMMA, + STATE(3035), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [88955] = 4, + [90143] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3065), 2, + ACTIONS(6590), 1, + sym_identifier, + ACTIONS(6592), 1, + anon_sym_ref, + ACTIONS(6594), 1, + sym_mutable_specifier, + STATE(3098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88971] = 6, + [90163] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, + ACTIONS(979), 1, + anon_sym_RPAREN, + ACTIONS(4334), 1, anon_sym_COMMA, - ACTIONS(6561), 1, - anon_sym_PIPE, - STATE(3083), 1, - aux_sym_closure_parameters_repeat1, - STATE(3066), 2, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [88991] = 6, + [90183] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3112), 1, + ACTIONS(3268), 1, anon_sym_RPAREN, - ACTIONS(6563), 1, + ACTIONS(6596), 1, anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(3067), 2, + STATE(3012), 1, + aux_sym_tuple_type_repeat1, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [89011] = 6, + [90203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(5549), 1, + ACTIONS(6598), 1, + anon_sym_RBRACE, + ACTIONS(6600), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_parameters_repeat1, - STATE(3068), 2, + STATE(3101), 3, sym_line_comment, sym_block_comment, - [89031] = 6, + aux_sym_use_list_repeat1, + [90221] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5298), 1, - anon_sym_RBRACE, - ACTIONS(6565), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_struct_pattern_repeat1, - STATE(3069), 2, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_BANG, + ACTIONS(6603), 1, + sym_identifier, + STATE(3102), 2, + sym_line_comment, + sym_block_comment, + [90241] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(5019), 1, + anon_sym_LBRACE, + STATE(2025), 1, + sym_type_arguments, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [89051] = 5, + [90261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(6567), 2, + ACTIONS(6094), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3070), 2, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [89069] = 6, + [90279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2570), 1, - anon_sym_RPAREN, - ACTIONS(6569), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6605), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3071), 2, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [89089] = 5, + [90297] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3072), 2, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [89107] = 5, + ACTIONS(6607), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90313] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_AMP_AMP, - ACTIONS(6573), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3073), 2, + ACTIONS(4975), 1, + anon_sym_RBRACE, + ACTIONS(6609), 1, + anon_sym_COMMA, + STATE(3018), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3107), 2, sym_line_comment, sym_block_comment, - [89125] = 6, + [90333] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6575), 1, - anon_sym_SEMI, - ACTIONS(6577), 1, - anon_sym_EQ, - STATE(3074), 2, + ACTIONS(6611), 1, + anon_sym_LPAREN, + ACTIONS(6613), 1, + anon_sym_LBRACK, + ACTIONS(6615), 1, + anon_sym_LBRACE, + STATE(3108), 2, sym_line_comment, sym_block_comment, - [89145] = 5, + [90353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, - anon_sym_RPAREN, - ACTIONS(6579), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6617), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3075), 3, + STATE(3109), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [89163] = 4, + [90371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3076), 2, + ACTIONS(6621), 1, + anon_sym_COLON, + ACTIONS(6619), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89179] = 4, + [90389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3077), 2, + ACTIONS(6625), 1, + anon_sym_EQ, + ACTIONS(6623), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89195] = 6, + [90407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6582), 1, - anon_sym_GT, - ACTIONS(6584), 1, + ACTIONS(6627), 1, + anon_sym_RBRACE, + ACTIONS(6629), 1, anon_sym_COMMA, - STATE(2871), 1, - aux_sym_type_parameters_repeat1, - STATE(3078), 2, + STATE(3112), 3, sym_line_comment, sym_block_comment, - [89215] = 6, + aux_sym_struct_pattern_repeat1, + [90425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(3079), 2, + ACTIONS(6632), 1, + anon_sym_LPAREN, + ACTIONS(6634), 1, + anon_sym_LBRACK, + ACTIONS(6636), 1, + anon_sym_LBRACE, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [89235] = 6, + [90445] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - ACTIONS(6586), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_declaration_list, - STATE(3080), 2, + ACTIONS(6638), 1, + anon_sym_move, + STATE(256), 1, + sym_closure_parameters, + STATE(3114), 2, sym_line_comment, sym_block_comment, - [89255] = 6, + [90465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6588), 1, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6640), 1, anon_sym_SEMI, - STATE(3599), 1, - sym_where_clause, - STATE(3081), 2, + ACTIONS(6642), 1, + anon_sym_RBRACK, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [89275] = 4, + [90485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3082), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(6644), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(3116), 2, sym_line_comment, sym_block_comment, - ACTIONS(6590), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89291] = 6, + [90505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5604), 1, - anon_sym_COMMA, - ACTIONS(6592), 1, - anon_sym_PIPE, - STATE(2941), 1, - aux_sym_closure_parameters_repeat1, - STATE(3083), 2, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [89311] = 6, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90521] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1359), 1, - anon_sym_RPAREN, - ACTIONS(5724), 1, + ACTIONS(5671), 1, + anon_sym_COLON, + ACTIONS(6646), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3015), 1, - aux_sym_parameters_repeat1, - STATE(3084), 2, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [89331] = 6, + [90539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6594), 1, - anon_sym_SEMI, - STATE(3675), 1, - sym_where_clause, - STATE(3085), 2, + ACTIONS(6648), 1, + anon_sym_GT, + ACTIONS(6650), 1, + anon_sym_COMMA, + STATE(3119), 3, sym_line_comment, sym_block_comment, - [89351] = 4, + aux_sym_type_parameters_repeat1, + [90557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3086), 2, + ACTIONS(4839), 1, + anon_sym_GT, + ACTIONS(6653), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_type_parameters_repeat1, + STATE(3120), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89367] = 6, + [90577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + ACTIONS(3208), 1, anon_sym_PLUS, - ACTIONS(6596), 1, + ACTIONS(6655), 1, anon_sym_SEMI, - ACTIONS(6598), 1, + ACTIONS(6657), 1, anon_sym_RBRACK, - STATE(3087), 2, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [89387] = 6, + [90597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6600), 1, + ACTIONS(6659), 1, anon_sym_SEMI, - STATE(546), 1, + STATE(754), 1, sym_declaration_list, - STATE(3088), 2, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [89407] = 4, + [90617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3089), 2, + STATE(3123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, + ACTIONS(5037), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89423] = 6, + [90633] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - ACTIONS(6602), 1, + ACTIONS(4847), 1, anon_sym_GT, - STATE(3234), 1, - sym_lifetime, - STATE(3090), 2, + ACTIONS(6661), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_type_parameters_repeat1, + STATE(3124), 2, sym_line_comment, sym_block_comment, - [89443] = 6, + [90653] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6602), 1, - anon_sym_GT, - ACTIONS(6604), 1, + ACTIONS(1830), 1, + anon_sym_RPAREN, + ACTIONS(6663), 1, anon_sym_COMMA, - STATE(3033), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3091), 2, + STATE(2956), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [89463] = 4, + [90673] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3092), 2, + STATE(3126), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 3, + ACTIONS(4987), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89479] = 4, + [90689] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3093), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6665), 1, + anon_sym_SEMI, + ACTIONS(6667), 1, + anon_sym_EQ, + STATE(3127), 2, sym_line_comment, sym_block_comment, - ACTIONS(5017), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89495] = 4, + [90709] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3094), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(6669), 1, + anon_sym_COLON_COLON, + STATE(2021), 1, + sym_type_arguments, + STATE(3128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89511] = 6, + [90729] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6606), 1, + ACTIONS(6671), 1, anon_sym_SEMI, - STATE(642), 1, + STATE(558), 1, sym_declaration_list, - STATE(3095), 2, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [89531] = 6, + [90749] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6054), 1, - anon_sym_GT, - ACTIONS(6608), 1, + ACTIONS(5117), 1, + anon_sym_RBRACE, + ACTIONS(6673), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3096), 2, - sym_line_comment, - sym_block_comment, - [89551] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6610), 1, - anon_sym_SEMI, - STATE(3608), 1, - sym_where_clause, - STATE(3097), 2, + STATE(3084), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [89571] = 6, + [90769] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6056), 1, + ACTIONS(1657), 1, anon_sym_GT, - ACTIONS(6612), 1, + ACTIONS(6675), 1, anon_sym_COMMA, - STATE(3063), 1, - aux_sym_use_bounds_repeat1, - STATE(3098), 2, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [89591] = 5, + [90789] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6614), 1, - anon_sym_EQ, - ACTIONS(6616), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3099), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(5833), 1, + sym_identifier, + STATE(3401), 1, + sym_lifetime, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [89609] = 4, + [90809] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3100), 2, + ACTIONS(1003), 1, + anon_sym_RBRACK, + ACTIONS(6677), 1, + anon_sym_COMMA, + STATE(2780), 1, + aux_sym_arguments_repeat1, + STATE(3133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89625] = 5, + [90829] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6618), 2, - anon_sym_RPAREN, + ACTIONS(1659), 1, + anon_sym_GT, + ACTIONS(6679), 1, anon_sym_COMMA, - STATE(3101), 2, + STATE(2952), 1, + aux_sym_type_arguments_repeat1, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [89643] = 4, + [90849] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3102), 2, + ACTIONS(1659), 1, + anon_sym_GT, + ACTIONS(6679), 1, + anon_sym_COMMA, + STATE(3145), 1, + aux_sym_type_arguments_repeat1, + STATE(3135), 2, sym_line_comment, sym_block_comment, - ACTIONS(5019), 3, - anon_sym_EQ_GT, + [90869] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [89659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3103), 2, + ACTIONS(5121), 1, + anon_sym_move, + STATE(220), 1, + sym_closure_parameters, + STATE(3136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89675] = 6, + [90889] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6620), 1, + ACTIONS(6681), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(760), 1, sym_declaration_list, - STATE(3104), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [89695] = 6, + [90909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6683), 2, anon_sym_RBRACE, - ACTIONS(6624), 1, anon_sym_COMMA, - STATE(3110), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3105), 2, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [89715] = 6, + [90927] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(6685), 1, anon_sym_SEMI, - STATE(548), 1, + STATE(778), 1, sym_declaration_list, - STATE(3106), 2, - sym_line_comment, - sym_block_comment, - [89735] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(3107), 2, + STATE(3139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89751] = 4, + [90947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3108), 2, + STATE(3140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4977), 3, + ACTIONS(5021), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89767] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - anon_sym_EQ, - ACTIONS(6628), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3109), 2, - sym_line_comment, - sym_block_comment, - [89785] = 6, + [90963] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, + ACTIONS(3142), 1, + anon_sym_RPAREN, + ACTIONS(6687), 1, anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3110), 2, + STATE(2761), 1, + aux_sym_slice_pattern_repeat1, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [89805] = 6, + [90983] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6632), 1, - anon_sym_COMMA, - STATE(3143), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3111), 2, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [89825] = 6, + ACTIONS(4945), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90999] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, - ACTIONS(6636), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_field_initializer_list_repeat1, - STATE(3112), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6689), 1, + anon_sym_SEMI, + ACTIONS(6691), 1, + anon_sym_EQ, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [89845] = 6, + [91019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4774), 1, - anon_sym_COLON, - ACTIONS(5070), 1, - anon_sym_COLON_COLON, - STATE(2565), 1, - sym_trait_bounds, - STATE(3113), 2, + ACTIONS(6693), 1, + anon_sym_GT, + ACTIONS(6695), 1, + anon_sym_COMMA, + STATE(2971), 1, + aux_sym_type_parameters_repeat1, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [89865] = 6, + [91039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, - anon_sym_RPAREN, - ACTIONS(6640), 1, + ACTIONS(5687), 1, + anon_sym_GT, + ACTIONS(6697), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3114), 2, + STATE(3145), 3, sym_line_comment, sym_block_comment, - [89885] = 6, + aux_sym_type_arguments_repeat1, + [91057] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6642), 1, - anon_sym_EQ_GT, - ACTIONS(6644), 1, - anon_sym_PIPE, - ACTIONS(6646), 1, - anon_sym_if, - STATE(3115), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6700), 1, + anon_sym_SEMI, + ACTIONS(6702), 1, + anon_sym_RBRACK, + STATE(3146), 2, sym_line_comment, sym_block_comment, - [89905] = 6, + [91077] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - ACTIONS(6648), 1, + ACTIONS(6704), 1, anon_sym_SEMI, - STATE(1185), 1, + STATE(548), 1, sym_declaration_list, - STATE(3116), 2, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [89925] = 6, + [91097] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_RBRACK, - ACTIONS(4248), 1, - anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3117), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym_SEMI, + STATE(1171), 1, + sym_declaration_list, + STATE(3148), 2, sym_line_comment, sym_block_comment, - [89945] = 5, + [91117] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6650), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3118), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6708), 1, + anon_sym_SEMI, + STATE(692), 1, + sym_declaration_list, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [89963] = 6, + [91137] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6652), 1, + ACTIONS(5061), 1, + anon_sym_LBRACE, + ACTIONS(6710), 1, anon_sym_SEMI, - ACTIONS(6654), 1, - anon_sym_EQ, - STATE(3119), 2, + STATE(717), 1, + sym_declaration_list, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [89983] = 6, + [91157] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6656), 1, - anon_sym_LPAREN, - ACTIONS(6658), 1, - anon_sym_LBRACK, - ACTIONS(6660), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(3120), 2, + ACTIONS(6712), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_declaration_list, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [90003] = 5, + [91177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6662), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3121), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6714), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_where_clause, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [90021] = 6, + [91197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6664), 1, - sym_identifier, - ACTIONS(6666), 1, - anon_sym_ref, - ACTIONS(6668), 1, - sym_mutable_specifier, - STATE(3122), 2, + ACTIONS(5332), 1, + anon_sym_RBRACE, + ACTIONS(6716), 1, + anon_sym_COMMA, + STATE(3112), 1, + aux_sym_struct_pattern_repeat1, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [90041] = 6, + [91217] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(3438), 1, anon_sym_LT2, - ACTIONS(4979), 1, - anon_sym_LBRACE, - STATE(2008), 1, + ACTIONS(5055), 1, + anon_sym_COLON_COLON, + STATE(1130), 1, sym_type_arguments, - STATE(3123), 2, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [90061] = 6, + [91237] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LBRACK, - ACTIONS(6674), 1, - anon_sym_LBRACE, - STATE(3124), 2, + ACTIONS(3144), 1, + anon_sym_RPAREN, + ACTIONS(6718), 1, + anon_sym_COMMA, + STATE(2761), 1, + aux_sym_slice_pattern_repeat1, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [90081] = 6, + [91257] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - ACTIONS(6676), 1, - sym_identifier, - STATE(3125), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6720), 1, + anon_sym_SEMI, + STATE(3501), 1, + sym_where_clause, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [90101] = 6, + [91277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6678), 1, - anon_sym_SEMI, - STATE(517), 1, - sym_declaration_list, - STATE(3126), 2, + ACTIONS(6722), 1, + anon_sym_RBRACE, + ACTIONS(6724), 1, + anon_sym_COMMA, + STATE(3157), 3, sym_line_comment, sym_block_comment, - [90121] = 6, + aux_sym_field_declaration_list_repeat1, + [91295] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6680), 1, - anon_sym_SEMI, - STATE(565), 1, - sym_declaration_list, - STATE(3127), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(6727), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [90141] = 5, + [91315] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 1, + ACTIONS(4847), 1, anon_sym_GT, - ACTIONS(6684), 1, + ACTIONS(6661), 1, anon_sym_COMMA, - STATE(3128), 3, + STATE(3120), 1, + aux_sym_type_parameters_repeat1, + STATE(3159), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [90159] = 6, + [91335] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_GT, - ACTIONS(6687), 1, - anon_sym_COMMA, - STATE(3128), 1, - aux_sym_type_parameters_repeat1, - STATE(3129), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(6729), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(3160), 2, sym_line_comment, sym_block_comment, - [90179] = 6, + [91355] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6689), 1, - anon_sym_SEMI, - STATE(613), 1, - sym_declaration_list, - STATE(3130), 2, + ACTIONS(5334), 1, + anon_sym_RBRACE, + ACTIONS(6731), 1, + anon_sym_COMMA, + STATE(3112), 1, + aux_sym_struct_pattern_repeat1, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [90199] = 6, + [91375] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6691), 1, - anon_sym_SEMI, - STATE(519), 1, - sym_declaration_list, - STATE(3131), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(6733), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [90219] = 4, + [91395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3132), 2, + STATE(3163), 2, sym_line_comment, sym_block_comment, - ACTIONS(5021), 3, + ACTIONS(4879), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90235] = 6, + [91411] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3110), 1, - anon_sym_RBRACK, - ACTIONS(6693), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_slice_pattern_repeat1, - STATE(3133), 2, + ACTIONS(5073), 1, + anon_sym_where, + ACTIONS(6735), 1, + anon_sym_EQ, + STATE(3763), 1, + sym_where_clause, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [90255] = 5, + [91431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 1, - anon_sym_RBRACE, - ACTIONS(6697), 1, + ACTIONS(6646), 1, + anon_sym_PIPE, + ACTIONS(6737), 1, anon_sym_COMMA, - STATE(3134), 3, + STATE(3165), 3, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [90273] = 6, + aux_sym_closure_parameters_repeat1, + [91449] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6700), 1, - anon_sym_SEMI, - STATE(525), 1, - sym_declaration_list, - STATE(3135), 2, + ACTIONS(6740), 1, + anon_sym_RPAREN, + ACTIONS(6742), 1, + anon_sym_COMMA, + STATE(3070), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [90293] = 6, + [91469] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_RPAREN, - ACTIONS(6106), 1, + ACTIONS(6744), 1, + anon_sym_RBRACE, + ACTIONS(6746), 1, anon_sym_COMMA, - STATE(3071), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3136), 2, + STATE(3076), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [90313] = 6, + [91489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6702), 1, - anon_sym_SEMI, - STATE(620), 1, - sym_declaration_list, - STATE(3137), 2, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [90333] = 5, + ACTIONS(6748), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6704), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3138), 2, + ACTIONS(4668), 1, + anon_sym_LT2, + ACTIONS(6750), 1, + anon_sym_for, + STATE(2025), 1, + sym_type_arguments, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [90351] = 6, + [91525] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(4774), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, - STATE(3139), 2, + ACTIONS(3286), 1, + anon_sym_RPAREN, + ACTIONS(6752), 1, + anon_sym_COMMA, + STATE(3012), 1, + aux_sym_tuple_type_repeat1, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [90371] = 4, + [91545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3140), 2, + STATE(3171), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90387] = 6, + ACTIONS(6754), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91561] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6706), 1, - anon_sym_SEMI, - STATE(527), 1, - sym_declaration_list, - STATE(3141), 2, + ACTIONS(6756), 1, + anon_sym_RBRACE, + ACTIONS(6758), 1, + anon_sym_COMMA, + STATE(3153), 1, + aux_sym_struct_pattern_repeat1, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [90407] = 5, + [91581] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6710), 1, - anon_sym_EQ, - ACTIONS(6708), 2, - anon_sym_RBRACE, + ACTIONS(3136), 1, + anon_sym_RBRACK, + ACTIONS(6760), 1, anon_sym_COMMA, - STATE(3142), 2, + STATE(2761), 1, + aux_sym_slice_pattern_repeat1, + STATE(3173), 2, sym_line_comment, sym_block_comment, - [90425] = 6, + [91601] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5114), 1, - anon_sym_RBRACE, - ACTIONS(6712), 1, - anon_sym_COMMA, - STATE(3134), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3143), 2, + ACTIONS(6762), 1, + sym_identifier, + ACTIONS(6764), 1, + anon_sym_ref, + ACTIONS(6766), 1, + sym_mutable_specifier, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [90445] = 6, + [91621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(5118), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3144), 2, + ACTIONS(6768), 1, + anon_sym_RBRACE, + ACTIONS(6770), 1, + anon_sym_COMMA, + STATE(2928), 1, + aux_sym_use_list_repeat1, + STATE(3175), 2, sym_line_comment, sym_block_comment, - [90465] = 6, + [91641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_declaration_list, - STATE(3145), 2, + ACTIONS(5691), 1, + anon_sym_RPAREN, + ACTIONS(5693), 1, + anon_sym_COMMA, + STATE(2887), 1, + aux_sym_parameters_repeat1, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [90485] = 6, + [91661] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - ACTIONS(6716), 1, + ACTIONS(6772), 1, anon_sym_SEMI, - STATE(630), 1, + STATE(1192), 1, sym_declaration_list, - STATE(3146), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [90505] = 6, + [91681] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6718), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3147), 2, + ACTIONS(5127), 1, + anon_sym_RBRACE, + ACTIONS(6251), 1, + anon_sym_COMMA, + STATE(2881), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [90525] = 6, + [91701] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, + ACTIONS(4668), 1, anon_sym_LT2, - ACTIONS(6720), 1, + ACTIONS(6774), 1, anon_sym_for, - STATE(2008), 1, + STATE(2025), 1, sym_type_arguments, - STATE(3148), 2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [90545] = 6, + [91721] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6722), 1, - anon_sym_SEMI, - ACTIONS(6724), 1, - anon_sym_EQ, - STATE(3149), 2, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [90565] = 6, + ACTIONS(6776), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91737] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5041), 1, - anon_sym_where, - ACTIONS(6726), 1, - anon_sym_EQ, - STATE(3727), 1, - sym_where_clause, - STATE(3150), 2, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [90585] = 6, + ACTIONS(6778), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91753] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LT2, - ACTIONS(6728), 1, - anon_sym_for, - STATE(2008), 1, - sym_type_arguments, - STATE(3151), 2, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [90605] = 4, + ACTIONS(6780), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91769] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3152), 2, + ACTIONS(6156), 1, + anon_sym_RPAREN, + ACTIONS(6158), 1, + anon_sym_COMMA, + STATE(3125), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3183), 2, sym_line_comment, sym_block_comment, - ACTIONS(6730), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90621] = 6, + [91789] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, - sym_identifier, - ACTIONS(6734), 1, - anon_sym_ref, - ACTIONS(6736), 1, - sym_mutable_specifier, - STATE(3153), 2, + ACTIONS(6782), 1, + anon_sym_GT, + ACTIONS(6784), 1, + anon_sym_COMMA, + STATE(2892), 1, + aux_sym_use_bounds_repeat1, + STATE(3184), 2, sym_line_comment, sym_block_comment, - [90641] = 6, + [91809] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(4270), 1, + ACTIONS(6786), 1, + anon_sym_GT, + ACTIONS(6788), 1, anon_sym_COMMA, - STATE(2590), 1, - aux_sym_arguments_repeat1, - STATE(3154), 2, + STATE(2894), 1, + aux_sym_use_bounds_repeat1, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [90661] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [91829] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, - anon_sym_move, - STATE(248), 1, - sym_closure_parameters, - STATE(3155), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + ACTIONS(6487), 1, + anon_sym_GT, + STATE(3382), 1, + sym_lifetime, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [90681] = 5, + [91849] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - STATE(3156), 2, + ACTIONS(6598), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [90698] = 5, + [91864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6744), 1, - sym_identifier, - STATE(3157), 2, + ACTIONS(6790), 1, + anon_sym_LBRACK, + ACTIONS(6792), 1, + anon_sym_BANG, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [90715] = 5, + [91881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, - STATE(3158), 2, + ACTIONS(5410), 1, + anon_sym_RBRACK, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [90732] = 5, + [91898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5061), 1, anon_sym_LBRACE, - STATE(1218), 1, + STATE(780), 1, sym_declaration_list, - STATE(3159), 2, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [90749] = 5, + [91915] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(238), 1, + STATE(256), 1, sym_closure_parameters, - STATE(3160), 2, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [90766] = 5, + [91932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5773), 1, - sym_identifier, - ACTIONS(5775), 1, - sym_super, - STATE(3161), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(5156), 1, + anon_sym_for, + STATE(3192), 2, sym_line_comment, sym_block_comment, - [90783] = 5, + [91949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(6746), 1, - anon_sym_AMP_AMP, - STATE(3162), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_declaration_list, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [90800] = 4, + [91966] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5928), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3163), 2, + ACTIONS(4803), 1, + anon_sym_BANG, + ACTIONS(4877), 1, + anon_sym_COLON_COLON, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [90815] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, - STATE(3164), 2, + ACTIONS(6796), 1, + anon_sym_RPAREN, + ACTIONS(6798), 1, + anon_sym_COLON_COLON, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [90832] = 5, + [92000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, - anon_sym_EQ_GT, - ACTIONS(6746), 1, - anon_sym_AMP_AMP, - STATE(3165), 2, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(5912), 1, + sym_super, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [90849] = 5, + [92017] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_declaration_list, - STATE(3166), 2, + ACTIONS(5799), 2, + sym_identifier, + sym_super, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [90866] = 5, + [92032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3167), 2, + ACTIONS(6800), 1, + sym_identifier, + ACTIONS(6802), 1, + sym_super, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [90883] = 5, + [92049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, - STATE(3168), 2, + ACTIONS(6804), 1, + sym_identifier, + ACTIONS(6806), 1, + sym_super, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [90900] = 5, + [92066] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, - sym_identifier, - ACTIONS(5940), 1, - sym_super, - STATE(3169), 2, + ACTIONS(6808), 1, + anon_sym_RPAREN, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [90917] = 4, + [92083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 2, - sym_identifier, + ACTIONS(5370), 1, sym_super, - STATE(3170), 2, + ACTIONS(5839), 1, + sym_identifier, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [90932] = 5, + [92100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 1, + ACTIONS(6812), 1, sym_identifier, - ACTIONS(6752), 1, + ACTIONS(6814), 1, sym_super, - STATE(3171), 2, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [90949] = 5, + [92117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(6808), 1, + anon_sym_RPAREN, + ACTIONS(6816), 1, anon_sym_COLON_COLON, - ACTIONS(6442), 1, - anon_sym_for, - STATE(3172), 2, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [90966] = 5, + [92134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6754), 1, - sym_identifier, - ACTIONS(6756), 1, - sym_super, - STATE(3173), 2, + ACTIONS(5316), 1, + anon_sym_RBRACE, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [90983] = 5, + [92151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3174), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(771), 1, + sym_declaration_list, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [91000] = 5, + [92168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - sym_identifier, - ACTIONS(6760), 1, - sym_super, - STATE(3175), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6818), 1, + anon_sym_in, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [91017] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, - STATE(3176), 2, + ACTIONS(5318), 1, + anon_sym_RBRACE, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [91034] = 4, + [92202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3177), 2, + ACTIONS(6820), 1, + anon_sym_LT, + STATE(893), 1, + sym_type_parameters, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [91049] = 5, + [92219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, + ACTIONS(5071), 1, anon_sym_LT, - STATE(937), 1, + STATE(890), 1, sym_type_parameters, - STATE(3178), 2, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [91066] = 5, + [92236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - anon_sym_SEMI, - ACTIONS(6768), 1, - anon_sym_EQ, - STATE(3179), 2, + ACTIONS(4114), 1, + anon_sym_LPAREN, + STATE(1654), 1, + sym_parameters, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [91083] = 5, + [92253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1696), 1, - sym_parameters, - STATE(3180), 2, + ACTIONS(6808), 1, + anon_sym_RPAREN, + ACTIONS(6822), 1, + anon_sym_COLON_COLON, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [91100] = 4, + [92270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6282), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3181), 2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(6824), 1, + anon_sym_COLON_COLON, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [91115] = 5, + [92287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_in, - STATE(3182), 2, + ACTIONS(5827), 1, + sym_super, + ACTIONS(5875), 1, + sym_identifier, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [91132] = 4, + [92304] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 2, - anon_sym_RPAREN, + ACTIONS(6560), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3183), 2, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [91147] = 4, + [92319] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 2, - sym_identifier, - sym_super, - STATE(3184), 2, + STATE(217), 1, + sym_closure_parameters, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [91162] = 5, + [92336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, - STATE(3185), 2, + ACTIONS(6826), 2, + sym_identifier, + sym_super, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [91179] = 5, + [92351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(3552), 1, anon_sym_LBRACE, - STATE(1224), 1, - sym_field_declaration_list, - STATE(3186), 2, + STATE(1528), 1, + sym_field_initializer_list, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [91196] = 5, + [92368] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3556), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_field_initializer_list, - STATE(3187), 2, + ACTIONS(6646), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [91213] = 4, + [92383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 2, + ACTIONS(5418), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3188), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [91228] = 5, + [92400] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, - anon_sym_COLON_COLON, - STATE(3189), 2, + STATE(233), 1, + sym_closure_parameters, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [91245] = 5, + [92417] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_LPAREN, - STATE(1695), 1, - sym_parameters, - STATE(3190), 2, + ACTIONS(6828), 2, + sym_identifier, + sym_metavariable, + STATE(3221), 2, + sym_line_comment, + sym_block_comment, + [92432] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6722), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [91262] = 4, + [92447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 2, + ACTIONS(6830), 2, sym_identifier, - sym_metavariable, - STATE(3191), 2, + sym_super, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [91277] = 5, + [92462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(677), 1, - sym_declaration_list, - STATE(3192), 2, + ACTIONS(4114), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_parameters, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [91294] = 5, + [92479] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(1048), 1, - sym_type_parameters, - STATE(3193), 2, + ACTIONS(6832), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [91311] = 5, + [92494] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(3234), 1, - sym_lifetime, - STATE(3194), 2, + ACTIONS(5160), 1, + anon_sym_COLON, + STATE(2560), 1, + sym_trait_bounds, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [91328] = 5, + [92511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1229), 1, - sym_declaration_list, - STATE(3195), 2, + ACTIONS(5422), 1, + anon_sym_RPAREN, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [91345] = 5, + [92528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5816), 1, - sym_identifier, - STATE(3196), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(6834), 1, + anon_sym_in, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [91362] = 5, + [92545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1270), 1, - sym_declaration_list, - STATE(3197), 2, + ACTIONS(5422), 1, + anon_sym_RBRACK, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [91379] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(237), 1, - sym_closure_parameters, - STATE(3198), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6836), 1, + anon_sym_RPAREN, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [91396] = 4, + [92579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 2, - sym_identifier, - sym_super, - STATE(3199), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(4022), 1, + anon_sym_COLON, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [91411] = 5, + [92596] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(2303), 1, + STATE(2283), 1, sym_parameters, - STATE(3200), 2, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [91428] = 5, + [92613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6780), 1, - sym_identifier, - STATE(3201), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6836), 1, + anon_sym_RBRACK, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [91445] = 5, + [92630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1277), 1, - sym_declaration_list, - STATE(3202), 2, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6838), 1, + sym_identifier, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [91462] = 5, + [92647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1278), 1, - sym_declaration_list, - STATE(3203), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + STATE(1202), 1, + sym_parameters, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [91479] = 5, + [92664] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RPAREN, - STATE(3204), 2, + ACTIONS(6840), 1, + anon_sym_RBRACE, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [91496] = 5, + [92681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(5793), 1, sym_super, - ACTIONS(5808), 1, + ACTIONS(6842), 1, sym_identifier, - STATE(3205), 2, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [91513] = 4, + [92698] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3206), 2, + STATE(220), 1, + sym_closure_parameters, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [91528] = 5, + [92715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(5430), 1, + anon_sym_RBRACE, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6782), 1, - anon_sym_RBRACK, - STATE(3207), 2, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [91545] = 5, + [92732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6786), 1, - sym_identifier, - STATE(3208), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6844), 1, + anon_sym_RPAREN, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [91562] = 5, + [92749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6788), 1, - anon_sym_RBRACE, - STATE(3209), 2, + ACTIONS(6846), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [91579] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(248), 1, - sym_closure_parameters, - STATE(3210), 2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(6848), 1, + sym_identifier, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [91596] = 5, + [92781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_LT2, - STATE(1754), 1, - sym_type_arguments, - STATE(3211), 2, + ACTIONS(5553), 1, + anon_sym_LBRACE, + STATE(1206), 1, + sym_enum_variant_list, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [91613] = 5, + [92798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - anon_sym_SEMI, - ACTIONS(6792), 1, - anon_sym_EQ, - STATE(3212), 2, + ACTIONS(5618), 2, + sym_identifier, + sym_super, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [91630] = 5, + [92813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(5704), 1, - anon_sym_COLON, - STATE(3213), 2, + ACTIONS(5527), 1, + anon_sym_LBRACE, + STATE(677), 1, + sym_enum_variant_list, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [91647] = 5, + [92830] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_enum_variant_list, - STATE(3214), 2, + ACTIONS(6850), 1, + anon_sym_SEMI, + ACTIONS(6852), 1, + anon_sym_as, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [91664] = 4, + [92847] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3215), 2, + STATE(224), 1, + sym_closure_parameters, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [91679] = 4, + [92864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 2, - anon_sym_const, + ACTIONS(6854), 1, + sym_identifier, + ACTIONS(6856), 1, sym_mutable_specifier, - STATE(3216), 2, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [91694] = 5, + [92881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6796), 1, - sym_identifier, - STATE(3217), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + ACTIONS(6858), 1, + anon_sym_GT, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [91711] = 5, + [92898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1286), 1, - sym_enum_variant_list, - STATE(3218), 2, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_BANG, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [91728] = 4, + [92915] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 2, + ACTIONS(5912), 2, sym_identifier, - sym_metavariable, - STATE(3219), 2, + sym_super, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [91743] = 4, + [92930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3220), 2, + ACTIONS(6806), 1, + sym_super, + ACTIONS(6860), 1, + sym_identifier, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [91758] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(250), 1, - sym_closure_parameters, - STATE(3221), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2505), 1, + sym_parameters, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [91775] = 4, + [92964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3222), 2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(5875), 1, + sym_identifier, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [91790] = 5, + [92981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_enum_variant_list, - STATE(3223), 2, + ACTIONS(6814), 1, + sym_super, + ACTIONS(6862), 1, + sym_identifier, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [91807] = 4, + [92998] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5940), 2, - sym_identifier, - sym_super, - STATE(3224), 2, + ACTIONS(6820), 1, + anon_sym_LT, + STATE(937), 1, + sym_type_parameters, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [91822] = 5, + [93015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1289), 1, - sym_field_declaration_list, - STATE(3225), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6844), 1, + anon_sym_RBRACK, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [91839] = 5, + [93032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6804), 1, - sym_identifier, - STATE(3226), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6864), 1, + anon_sym_RBRACE, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [91856] = 5, + [93049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - sym_super, - ACTIONS(5773), 1, - sym_identifier, - STATE(3227), 2, + ACTIONS(6866), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [91873] = 5, + [93064] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6806), 1, - sym_identifier, - STATE(3228), 2, + STATE(226), 1, + sym_closure_parameters, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [91890] = 5, + [93081] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1291), 1, - sym_field_declaration_list, - STATE(3229), 2, + ACTIONS(6798), 1, + anon_sym_COLON_COLON, + ACTIONS(6868), 1, + anon_sym_RPAREN, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [91907] = 5, + [93098] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, + ACTIONS(6810), 1, + anon_sym_COLON_COLON, + ACTIONS(6870), 1, anon_sym_RPAREN, - STATE(3230), 2, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [91924] = 5, + [93115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6808), 1, - anon_sym_RBRACK, - STATE(3231), 2, + ACTIONS(6816), 1, + anon_sym_COLON_COLON, + ACTIONS(6870), 1, + anon_sym_RPAREN, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [91941] = 5, + [93132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6810), 1, - anon_sym_RBRACE, - STATE(3232), 2, + ACTIONS(6822), 1, + anon_sym_COLON_COLON, + ACTIONS(6870), 1, + anon_sym_RPAREN, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [91958] = 5, + [93149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, - STATE(3233), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(536), 1, + sym_declaration_list, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [91975] = 4, + [93166] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6476), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3234), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(537), 1, + sym_declaration_list, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [91990] = 5, + [93183] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, - STATE(3235), 2, + ACTIONS(5069), 1, + anon_sym_LBRACE, + STATE(1223), 1, + sym_field_declaration_list, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [92007] = 5, + [93200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - STATE(1292), 1, + STATE(1224), 1, sym_declaration_list, - STATE(3236), 2, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [92024] = 5, + [93217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - ACTIONS(6774), 1, - anon_sym_RPAREN, - STATE(3237), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + STATE(1225), 1, + sym_declaration_list, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [92041] = 4, + [93234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 2, - sym_identifier, - sym_super, - STATE(3238), 2, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_field_declaration_list, + STATE(3270), 2, sym_line_comment, sym_block_comment, - [92056] = 5, + [93251] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, - STATE(3239), 2, + STATE(229), 1, + sym_closure_parameters, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [92073] = 5, + [93268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6818), 1, - sym_identifier, - STATE(3240), 2, + ACTIONS(6872), 1, + anon_sym_SEMI, + ACTIONS(6874), 1, + anon_sym_EQ, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [92090] = 5, + [93285] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - STATE(1237), 1, + STATE(1231), 1, sym_field_declaration_list, - STATE(3241), 2, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [92107] = 5, + [93302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4176), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - STATE(1832), 1, - sym_field_initializer_list, - STATE(3242), 2, + STATE(612), 1, + sym_field_declaration_list, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [92124] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(229), 1, - sym_closure_parameters, - STATE(3243), 2, + ACTIONS(6876), 1, + sym_identifier, + ACTIONS(6878), 1, + sym_super, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [92141] = 4, + [93336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6324), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3244), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + STATE(1236), 1, + sym_declaration_list, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [92156] = 5, + [93353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, - STATE(3245), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2444), 1, + sym_parameters, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [92173] = 5, + [93370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5836), 1, - sym_identifier, - STATE(3246), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(6733), 1, + anon_sym_for, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [92190] = 5, + [93387] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, + STATE(231), 1, sym_closure_parameters, - STATE(3247), 2, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [92207] = 5, + [93404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(561), 1, - sym_field_declaration_list, - STATE(3248), 2, + ACTIONS(6830), 1, + sym_super, + ACTIONS(6880), 1, + sym_identifier, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [92224] = 5, + [93421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2397), 1, - sym_parameters, - STATE(3249), 2, + ACTIONS(5553), 1, + anon_sym_LBRACE, + STATE(1241), 1, + sym_enum_variant_list, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [92241] = 5, + [93438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 1, - sym_identifier, - ACTIONS(6826), 1, + ACTIONS(5827), 1, sym_super, - STATE(3250), 2, + ACTIONS(5976), 1, + sym_identifier, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [92258] = 5, + [93455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, + ACTIONS(6882), 1, sym_identifier, - ACTIONS(6828), 1, + ACTIONS(6884), 1, sym_super, - STATE(3251), 2, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [92275] = 5, + [93472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(3252), 2, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(704), 1, + sym_field_declaration_list, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [92292] = 5, + [93489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, - STATE(3253), 2, + ACTIONS(6886), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [92309] = 5, + [93504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - STATE(576), 1, + STATE(1244), 1, sym_field_declaration_list, - STATE(3254), 2, + STATE(3286), 2, + sym_line_comment, + sym_block_comment, + [93521] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6310), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [92326] = 5, + [93536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - STATE(1240), 1, + STATE(1247), 1, sym_field_declaration_list, - STATE(3255), 2, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [92343] = 5, + [93553] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(652), 1, - sym_declaration_list, - STATE(3256), 2, + STATE(232), 1, + sym_closure_parameters, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [92360] = 4, + [93570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 2, - sym_identifier, - sym_super, - STATE(3257), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2421), 1, + sym_parameters, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [92375] = 4, + [93587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3258), 2, + ACTIONS(6888), 1, + anon_sym_SEMI, + ACTIONS(6890), 1, + anon_sym_as, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [92390] = 4, + [93604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 2, + ACTIONS(6590), 1, sym_identifier, - sym_super, - STATE(3259), 2, + ACTIONS(6594), 1, + sym_mutable_specifier, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [92405] = 5, + [93621] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6832), 1, - anon_sym_in, - STATE(3260), 2, + STATE(223), 1, + sym_closure_parameters, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [92422] = 5, + [93638] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, - anon_sym_SEMI, - ACTIONS(6836), 1, - anon_sym_as, - STATE(3261), 2, + ACTIONS(6820), 1, + anon_sym_LT, + STATE(955), 1, + sym_type_parameters, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [92439] = 5, + [93655] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, - STATE(3262), 2, + ACTIONS(6438), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [92456] = 5, + [93670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(706), 1, + sym_declaration_list, + STATE(3296), 2, + sym_line_comment, + sym_block_comment, + [93687] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6878), 1, sym_super, - ACTIONS(6840), 1, + ACTIONS(6892), 1, sym_identifier, - STATE(3263), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [92473] = 5, + [93704] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6506), 1, - anon_sym_for, - STATE(3264), 2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(6894), 1, + sym_identifier, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [92490] = 5, + [93721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(6806), 1, sym_super, - ACTIONS(6842), 1, + ACTIONS(6896), 1, sym_identifier, - STATE(3265), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [92507] = 5, + [93738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5827), 1, sym_super, - ACTIONS(5828), 1, + ACTIONS(6106), 1, sym_identifier, - STATE(3266), 2, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [92524] = 5, + [93755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6884), 1, sym_super, - ACTIONS(6844), 1, + ACTIONS(6898), 1, sym_identifier, - STATE(3267), 2, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [92541] = 5, + [93772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6848), 1, - anon_sym_as, - STATE(3268), 2, + ACTIONS(6900), 1, + anon_sym_RBRACE, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [92558] = 4, + [93789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3269), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6902), 1, + anon_sym_RBRACE, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [92573] = 4, + [93806] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6852), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3270), 2, + ACTIONS(5871), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [92588] = 5, + [93821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(981), 1, - sym_type_parameters, - STATE(3271), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2301), 1, + sym_parameters, + STATE(3305), 2, sym_line_comment, sym_block_comment, - [92605] = 4, + [93838] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3272), 2, + STATE(222), 1, + sym_closure_parameters, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [92620] = 5, + [93855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_super, - ACTIONS(6856), 1, - sym_identifier, - STATE(3273), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(619), 1, + sym_declaration_list, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [92637] = 5, + [93872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(5793), 1, sym_super, - ACTIONS(6858), 1, + ACTIONS(6904), 1, sym_identifier, - STATE(3274), 2, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [92654] = 5, + [93889] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, - sym_super, - ACTIONS(5944), 1, + ACTIONS(6906), 1, sym_identifier, - STATE(3275), 2, + ACTIONS(6908), 1, + sym_super, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [92671] = 5, + [93906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 1, + ACTIONS(6806), 1, sym_super, - ACTIONS(6860), 1, + ACTIONS(6910), 1, sym_identifier, - STATE(3276), 2, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [92688] = 5, + [93923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1153), 1, - sym_parameters, - STATE(3277), 2, + ACTIONS(5799), 1, + sym_super, + ACTIONS(5914), 1, + sym_identifier, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [92705] = 4, + [93940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3278), 2, + ACTIONS(6826), 1, + sym_super, + ACTIONS(6912), 1, + sym_identifier, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [92720] = 5, + [93957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(4204), 1, anon_sym_LBRACE, - STATE(675), 1, - sym_field_declaration_list, - STATE(3279), 2, + STATE(1863), 1, + sym_field_initializer_list, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [92737] = 5, + [93974] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(5618), 1, sym_super, - ACTIONS(6820), 1, + ACTIONS(6876), 1, sym_identifier, - STATE(3280), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [92754] = 5, + [93991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, + ACTIONS(6806), 1, sym_super, - ACTIONS(6786), 1, + ACTIONS(6842), 1, sym_identifier, - STATE(3281), 2, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [92771] = 5, + [94008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(5370), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(5976), 1, sym_identifier, - STATE(3282), 2, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [92788] = 5, + [94025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(6814), 1, sym_super, - ACTIONS(6830), 1, + ACTIONS(6882), 1, sym_identifier, - STATE(3283), 2, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [92805] = 5, + [94042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6878), 1, sym_super, - ACTIONS(6862), 1, + ACTIONS(6914), 1, sym_identifier, - STATE(3284), 2, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [92822] = 5, + [94059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5827), 1, sym_super, - ACTIONS(5986), 1, + ACTIONS(5974), 1, sym_identifier, - STATE(3285), 2, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [92839] = 5, + [94076] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6884), 1, sym_super, - ACTIONS(6864), 1, + ACTIONS(6916), 1, sym_identifier, - STATE(3286), 2, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [92856] = 5, + [94093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6878), 1, sym_super, - ACTIONS(6866), 1, + ACTIONS(6918), 1, sym_identifier, - STATE(3287), 2, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [92873] = 5, + [94110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5827), 1, sym_super, - ACTIONS(6000), 1, + ACTIONS(5998), 1, sym_identifier, - STATE(3288), 2, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [92890] = 5, + [94127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6884), 1, sym_super, - ACTIONS(6868), 1, + ACTIONS(6920), 1, sym_identifier, - STATE(3289), 2, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [92907] = 5, + [94144] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6878), 1, sym_super, - ACTIONS(6870), 1, + ACTIONS(6922), 1, sym_identifier, - STATE(3290), 2, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [92924] = 5, + [94161] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, + ACTIONS(5827), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(6019), 1, sym_identifier, - STATE(3291), 2, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [92941] = 5, + [94178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, + ACTIONS(6884), 1, sym_super, - ACTIONS(6872), 1, + ACTIONS(6924), 1, sym_identifier, - STATE(3292), 2, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [92958] = 5, + [94195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, + ACTIONS(5618), 1, sym_super, - ACTIONS(6870), 1, + ACTIONS(6922), 1, sym_identifier, - STATE(3293), 2, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [92975] = 5, + [94212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(5370), 1, sym_super, - ACTIONS(6008), 1, + ACTIONS(6019), 1, sym_identifier, - STATE(3294), 2, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [92992] = 5, + [94229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, + ACTIONS(6814), 1, sym_super, - ACTIONS(6872), 1, + ACTIONS(6924), 1, sym_identifier, - STATE(3295), 2, + STATE(3329), 2, + sym_line_comment, + sym_block_comment, + [94246] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6926), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3330), 2, + sym_line_comment, + sym_block_comment, + [94261] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5527), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_enum_variant_list, + STATE(3331), 2, + sym_line_comment, + sym_block_comment, + [94278] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6928), 1, + anon_sym_SEMI, + ACTIONS(6930), 1, + anon_sym_EQ, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [93009] = 5, + [94295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, + ACTIONS(5793), 1, sym_super, - ACTIONS(6814), 1, + ACTIONS(6932), 1, sym_identifier, - STATE(3296), 2, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [93026] = 4, + [94312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3297), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(707), 1, + sym_declaration_list, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [93041] = 5, + [94329] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, - STATE(3298), 2, + STATE(252), 1, + sym_closure_parameters, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [93058] = 5, + [94346] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6880), 1, - anon_sym_SEMI, - ACTIONS(6882), 1, - anon_sym_EQ, - STATE(3299), 2, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6934), 1, + sym_identifier, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [93075] = 4, + [94363] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 2, - sym_identifier, - sym_super, - STATE(3300), 2, + ACTIONS(6936), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [93090] = 5, + [94378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, + ACTIONS(6938), 1, anon_sym_LPAREN, - ACTIONS(6886), 1, + ACTIONS(6940), 1, anon_sym_COLON_COLON, - STATE(3301), 2, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [93107] = 5, + [94395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6888), 1, - anon_sym_RBRACE, - STATE(3302), 2, + ACTIONS(6942), 2, + sym_float_literal, + sym_integer_literal, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [93124] = 5, + [94410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - ACTIONS(6890), 1, - anon_sym_GT, - STATE(3303), 2, + ACTIONS(6878), 1, + sym_super, + ACTIONS(6944), 1, + sym_identifier, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [93141] = 4, + [94427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 2, + ACTIONS(6946), 2, anon_sym_const, sym_mutable_specifier, - STATE(3304), 2, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [93156] = 5, + [94442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, + ACTIONS(3509), 1, anon_sym_PLUS, - ACTIONS(3602), 1, + ACTIONS(3618), 1, anon_sym_COLON_COLON, - STATE(3305), 2, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [93173] = 5, + [94459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, + ACTIONS(3509), 1, anon_sym_PLUS, - ACTIONS(3604), 1, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - STATE(3306), 2, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [93190] = 5, + [94476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6894), 1, - anon_sym_RBRACE, - STATE(3307), 2, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(626), 1, + sym_field_declaration_list, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [93207] = 5, + [94493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, + ACTIONS(6948), 1, anon_sym_BANG, - ACTIONS(6898), 1, + ACTIONS(6950), 1, anon_sym_COLON_COLON, - STATE(3308), 2, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [93224] = 5, + [94510] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2390), 1, - sym_parameters, - STATE(3309), 2, + ACTIONS(6952), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [93241] = 5, + [94525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5394), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym_enum_variant_list, - STATE(3310), 2, + ACTIONS(5793), 2, + sym_identifier, + sym_super, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [93258] = 4, + [94540] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 2, - sym_identifier, - sym_super, - STATE(3311), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + STATE(1135), 1, + sym_parameters, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [93273] = 5, + [94557] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(889), 1, - sym_type_parameters, - STATE(3312), 2, + ACTIONS(6954), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [93290] = 5, + [94572] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, - STATE(3313), 2, + ACTIONS(6956), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [93307] = 5, + [94587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1335), 1, - sym_declaration_list, - STATE(3314), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(3804), 1, + anon_sym_COLON, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [93324] = 5, + [94604] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(669), 1, - sym_field_declaration_list, - STATE(3315), 2, + anon_sym_SLASH_STAR, + ACTIONS(6958), 2, + sym_identifier, + sym_metavariable, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [93341] = 4, + [94619] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 2, - sym_float_literal, - sym_integer_literal, - STATE(3316), 2, + ACTIONS(6878), 2, + sym_identifier, + sym_super, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [93356] = 5, + [94634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6902), 1, - anon_sym_EQ, - STATE(3317), 2, + ACTIONS(4366), 1, + anon_sym_EQ_GT, + ACTIONS(6960), 1, + anon_sym_AMP_AMP, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [93373] = 5, + [94651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(883), 1, - sym_type_parameters, - STATE(3318), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(3866), 1, + anon_sym_COLON, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [93390] = 5, + [94668] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_PIPE, - ACTIONS(6904), 1, - anon_sym_EQ, - STATE(3319), 2, + ACTIONS(6820), 1, + anon_sym_LT, + STATE(889), 1, + sym_type_parameters, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [93407] = 5, + [94685] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_LT2, - STATE(1431), 1, - sym_type_arguments, - STATE(3320), 2, + ACTIONS(6962), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [93424] = 5, + [94700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_parameters, - STATE(3321), 2, + ACTIONS(6449), 1, + anon_sym_EQ_GT, + ACTIONS(6960), 1, + anon_sym_AMP_AMP, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [93441] = 4, + [94717] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, + ACTIONS(6964), 2, sym__block_comment_content, anon_sym_STAR_SLASH, - STATE(3322), 2, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [93456] = 5, + [94732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(1195), 1, + STATE(2304), 1, sym_parameters, - STATE(3323), 2, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [93473] = 5, + [94749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - STATE(767), 1, + STATE(1277), 1, sym_declaration_list, - STATE(3324), 2, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [93490] = 5, + [94766] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_mutable_specifier, - STATE(3325), 2, + ACTIONS(6966), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [93507] = 4, + [94781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3326), 2, + ACTIONS(4803), 1, + anon_sym_BANG, + ACTIONS(4875), 1, + anon_sym_COLON_COLON, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [93522] = 5, + [94798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(6774), 1, + anon_sym_for, + STATE(3364), 2, + sym_line_comment, + sym_block_comment, + [94815] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5053), 1, anon_sym_LBRACE, - STATE(1344), 1, + STATE(1284), 1, sym_declaration_list, - STATE(3327), 2, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [93539] = 5, + [94832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - STATE(1345), 1, + STATE(1285), 1, sym_declaration_list, - STATE(3328), 2, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [93556] = 5, + [94849] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6914), 1, - sym_identifier, - STATE(3329), 2, + ACTIONS(5458), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [93573] = 5, + [94864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, + ACTIONS(5392), 1, anon_sym_RPAREN, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - STATE(3330), 2, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [93590] = 5, + [94881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2280), 1, - sym_parameters, - STATE(3331), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(578), 1, + sym_declaration_list, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [93607] = 5, + [94898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5330), 1, + ACTIONS(5392), 1, anon_sym_RBRACK, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - STATE(3332), 2, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [93624] = 4, + [94915] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3333), 2, + ACTIONS(6968), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [93639] = 5, + [94930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, + ACTIONS(5394), 1, anon_sym_RPAREN, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - STATE(3334), 2, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [93656] = 5, + [94947] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - sym_super, - ACTIONS(6918), 1, - sym_identifier, - STATE(3335), 2, + STATE(215), 1, + sym_closure_parameters, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [93673] = 5, + [94964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, + ACTIONS(5394), 1, anon_sym_RBRACK, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - STATE(3336), 2, - sym_line_comment, - sym_block_comment, - [93690] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, - STATE(3337), 2, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [93707] = 5, + [94981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1167), 1, - sym_field_declaration_list, - STATE(3338), 2, + ACTIONS(5386), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [93724] = 4, + [94996] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5324), 2, - anon_sym_RPAREN, + ACTIONS(6970), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3339), 2, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [93739] = 5, + [95011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(579), 1, - sym_field_declaration_list, - STATE(3340), 2, + STATE(1293), 1, + sym_enum_variant_list, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [93756] = 4, + [95028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 2, - sym_identifier, - sym_super, - STATE(3341), 2, + ACTIONS(3406), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [93771] = 5, + [95043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - STATE(1170), 1, - sym_declaration_list, - STATE(3342), 2, + STATE(1296), 1, + sym_field_declaration_list, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [93788] = 5, + [95060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5069), 1, anon_sym_LBRACE, - STATE(499), 1, - sym_declaration_list, - STATE(3343), 2, + STATE(1298), 1, + sym_field_declaration_list, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [93805] = 5, + [95077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6920), 1, - anon_sym_SEMI, - ACTIONS(6922), 1, - anon_sym_as, - STATE(3344), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + STATE(1299), 1, + sym_declaration_list, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [93822] = 5, + [95094] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3894), 1, - anon_sym_COLON, - STATE(3345), 2, + ACTIONS(6220), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [93839] = 5, + [95109] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(627), 1, sym_field_declaration_list, - STATE(3346), 2, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [93856] = 5, + [95126] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(700), 1, - sym_enum_variant_list, - STATE(3347), 2, + ACTIONS(6972), 2, + sym_float_literal, + sym_integer_literal, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [93873] = 4, + [95141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6924), 2, - sym_float_literal, - sym_integer_literal, - STATE(3348), 2, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_field_declaration_list, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [93888] = 5, + [95158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 1, - anon_sym_SEMI, - ACTIONS(6928), 1, - anon_sym_EQ, - STATE(3349), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(3976), 1, + anon_sym_COLON, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [93905] = 5, + [95175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, - ACTIONS(6930), 1, - anon_sym_RPAREN, - STATE(3350), 2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(6088), 1, + sym_identifier, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [93922] = 5, + [95192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6932), 1, + ACTIONS(5370), 2, sym_identifier, - STATE(3351), 2, + sym_super, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [93939] = 5, + [95207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1176), 1, - sym_field_declaration_list, - STATE(3352), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2327), 1, + sym_parameters, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [93956] = 5, + [95224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2294), 1, - sym_parameters, - STATE(3353), 2, + ACTIONS(5370), 1, + sym_super, + ACTIONS(6025), 1, + sym_identifier, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [93973] = 5, + [95241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6934), 1, + ACTIONS(6974), 1, anon_sym_RPAREN, - STATE(3354), 2, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [93990] = 5, + [95258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6934), 1, + ACTIONS(6974), 1, anon_sym_RBRACK, - STATE(3355), 2, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [94007] = 5, + [95275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6936), 1, + ACTIONS(6976), 1, anon_sym_RPAREN, - STATE(3356), 2, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [94024] = 5, + [95292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6936), 1, + ACTIONS(6976), 1, anon_sym_RBRACK, - STATE(3357), 2, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [94041] = 5, + [95309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6838), 1, - anon_sym_COLON_COLON, - STATE(3358), 2, + ACTIONS(5827), 2, + sym_identifier, + sym_super, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [94058] = 5, + [95324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_declaration_list, - STATE(3359), 2, + ACTIONS(6814), 1, + sym_super, + ACTIONS(6978), 1, + sym_identifier, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [94075] = 5, + [95341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2263), 1, - sym_parameters, - STATE(3360), 2, + ACTIONS(6814), 1, + sym_super, + ACTIONS(6980), 1, + sym_identifier, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [94092] = 4, + [95358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 2, - sym_identifier, - sym_super, - STATE(3361), 2, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(730), 1, + sym_field_declaration_list, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [94107] = 5, + [95375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, + ACTIONS(6982), 1, anon_sym_SEMI, - ACTIONS(6940), 1, - anon_sym_as, - STATE(3362), 2, + ACTIONS(6984), 1, + anon_sym_EQ, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [94124] = 4, + [95392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6942), 2, + ACTIONS(6986), 2, anon_sym_GT, anon_sym_COMMA, - STATE(3363), 2, - sym_line_comment, - sym_block_comment, - [94139] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6740), 1, - anon_sym_RPAREN, - ACTIONS(6776), 1, - anon_sym_COLON_COLON, - STATE(3364), 2, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [94156] = 4, + [95407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6357), 2, - anon_sym_RBRACE, + ACTIONS(6255), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3365), 2, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [94171] = 5, + [95422] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2300), 1, - sym_parameters, - STATE(3366), 2, + ACTIONS(6814), 2, + sym_identifier, + sym_super, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [94188] = 5, + [95437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3367), 2, + ACTIONS(4118), 1, + anon_sym_LT2, + STATE(1887), 1, + sym_type_arguments, + STATE(3403), 2, sym_line_comment, sym_block_comment, - [94205] = 5, + [95454] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6944), 1, - anon_sym_COLON_COLON, - STATE(3368), 2, + ACTIONS(6988), 2, + sym_identifier, + sym_metavariable, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [94222] = 5, + [95469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - anon_sym_STAR_SLASH, - ACTIONS(6948), 1, - sym__block_comment_content, - STATE(3369), 2, + ACTIONS(5125), 1, + anon_sym_LBRACE, + STATE(713), 1, + sym_field_declaration_list, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [94239] = 4, + [95486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 2, - sym_identifier, - sym_super, - STATE(3370), 2, + ACTIONS(6990), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [94254] = 5, + [95501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_declaration_list, - STATE(3371), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2299), 1, + sym_parameters, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [94271] = 4, + [95518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3372), 2, + ACTIONS(5727), 1, + anon_sym_COLON, + ACTIONS(5729), 1, + anon_sym_PIPE, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [94286] = 5, + [95535] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3373), 2, + ACTIONS(6806), 1, + sym_super, + ACTIONS(6838), 1, + sym_identifier, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [94303] = 5, + [95552] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, + ACTIONS(6908), 2, sym_identifier, - ACTIONS(6828), 1, sym_super, - STATE(3374), 2, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [94320] = 5, + [95567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6952), 1, - sym_identifier, - STATE(3375), 2, + ACTIONS(6992), 1, + anon_sym_STAR_SLASH, + ACTIONS(6994), 1, + sym__block_comment_content, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [94337] = 5, + [95584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3954), 1, - anon_sym_COLON, - STATE(3376), 2, + ACTIONS(6806), 1, + sym_super, + ACTIONS(6932), 1, + sym_identifier, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [94354] = 5, + [95601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, - sym_identifier, - ACTIONS(6822), 1, + ACTIONS(5827), 1, sym_super, - STATE(3377), 2, + ACTIONS(5839), 1, + sym_identifier, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [94371] = 5, + [95618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6954), 1, - anon_sym_COLON_COLON, - STATE(3378), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_declaration_list, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [94388] = 4, + [95635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3379), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(6644), 1, + anon_sym_for, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [94403] = 5, + [95652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(6960), 1, - anon_sym_COLON_COLON, - STATE(3380), 2, + ACTIONS(6812), 1, + sym_identifier, + ACTIONS(6884), 1, + sym_super, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [94420] = 5, + [95669] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - ACTIONS(4991), 1, - anon_sym_BANG, - STATE(3381), 2, + ACTIONS(6094), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [94437] = 4, + [95684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_const, + ACTIONS(6996), 1, + sym_identifier, + ACTIONS(6998), 1, sym_mutable_specifier, - STATE(3382), 2, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [94452] = 5, + [95701] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - STATE(3383), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + STATE(1351), 1, + sym_declaration_list, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [94469] = 5, + [95718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_PLUS, - ACTIONS(4306), 1, + ACTIONS(7000), 1, + anon_sym_LPAREN, + ACTIONS(7002), 1, anon_sym_COLON_COLON, - STATE(3384), 2, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [94486] = 5, + [95735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5053), 1, anon_sym_LBRACE, - STATE(655), 1, + STATE(1352), 1, sym_declaration_list, - STATE(3385), 2, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [94503] = 5, + [95752] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_BANG, - ACTIONS(6898), 1, + ACTIONS(3509), 1, + anon_sym_PLUS, + ACTIONS(4302), 1, anon_sym_COLON_COLON, - STATE(3386), 2, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [94520] = 5, + [95769] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_enum_variant_list, - STATE(3387), 2, + ACTIONS(3509), 1, + anon_sym_PLUS, + ACTIONS(4304), 1, + anon_sym_COLON_COLON, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [94537] = 5, + [95786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(914), 1, - sym_type_parameters, - STATE(3388), 2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(6950), 1, + anon_sym_COLON_COLON, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [94554] = 5, + [95803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - ACTIONS(6158), 1, - anon_sym_for, - STATE(3389), 2, + ACTIONS(5527), 1, + anon_sym_LBRACE, + STATE(603), 1, + sym_enum_variant_list, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [94571] = 4, + [95820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3390), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2289), 1, + sym_parameters, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [94586] = 5, + [95837] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4879), 1, - anon_sym_COLON_COLON, - STATE(3391), 2, + ACTIONS(6820), 1, + anon_sym_LT, + STATE(930), 1, + sym_type_parameters, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [94603] = 4, + [95854] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 2, - anon_sym_RBRACE, + ACTIONS(7004), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3392), 2, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [94618] = 5, + [95869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5076), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_field_declaration_list, - STATE(3393), 2, + ACTIONS(6648), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [94635] = 5, + [95884] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_LT, - STATE(884), 1, - sym_type_parameters, - STATE(3394), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_declaration_list, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [94652] = 5, + [95901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, + ACTIONS(7006), 1, anon_sym_SEMI, - STATE(3395), 2, + ACTIONS(7008), 1, + anon_sym_as, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [94669] = 5, + [95918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - sym_super, - ACTIONS(6754), 1, - sym_identifier, - STATE(3396), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(628), 1, + sym_declaration_list, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [94686] = 4, + [95935] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3397), 2, + ACTIONS(6820), 1, + anon_sym_LT, + STATE(907), 1, + sym_type_parameters, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [94701] = 5, + [95952] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - anon_sym_LPAREN, - ACTIONS(6964), 1, - anon_sym_COLON_COLON, - STATE(3398), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + STATE(3382), 1, + sym_lifetime, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [94718] = 5, + [95969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(662), 1, - sym_enum_variant_list, - STATE(3399), 2, + ACTIONS(6938), 1, + anon_sym_LPAREN, + ACTIONS(7010), 1, + anon_sym_COLON_COLON, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [94735] = 5, + [95986] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, + ACTIONS(7012), 1, anon_sym_BANG, - ACTIONS(6968), 1, + ACTIONS(7014), 1, anon_sym_COLON_COLON, - STATE(3400), 2, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [94752] = 5, + [96003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(4006), 1, - anon_sym_COLON, - STATE(3401), 2, + ACTIONS(3430), 1, + anon_sym_LPAREN, + STATE(1160), 1, + sym_parameters, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [94769] = 5, + [96020] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3746), 1, - anon_sym_COLON, - STATE(3402), 2, + ACTIONS(6806), 2, + sym_identifier, + sym_super, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [94786] = 5, + [96035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, + ACTIONS(6938), 1, anon_sym_LPAREN, - ACTIONS(6970), 1, + ACTIONS(7016), 1, anon_sym_COLON_COLON, - STATE(3403), 2, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [94803] = 5, + [96052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(6968), 1, + ACTIONS(7014), 1, anon_sym_COLON_COLON, - STATE(3404), 2, - sym_line_comment, - sym_block_comment, - [94820] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, - STATE(3405), 2, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [94837] = 5, + [96069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_BANG, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - STATE(3406), 2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(7018), 1, + sym_identifier, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [94854] = 5, + [96086] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_declaration_list, - STATE(3407), 2, + ACTIONS(6627), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [94871] = 5, + [96101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, + ACTIONS(7020), 1, anon_sym_LBRACK, - ACTIONS(6974), 1, + ACTIONS(7022), 1, anon_sym_BANG, - STATE(3408), 2, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [94888] = 4, + [96118] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 2, + ACTIONS(7024), 2, sym_identifier, sym_metavariable, - STATE(3409), 2, - sym_line_comment, - sym_block_comment, - [94903] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6978), 1, - sym_identifier, - ACTIONS(6980), 1, - sym_super, - STATE(3410), 2, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [94920] = 4, + [96133] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 2, + ACTIONS(7026), 2, anon_sym_const, sym_mutable_specifier, - STATE(3411), 2, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [94935] = 4, + [96148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3412), 2, + ACTIONS(5553), 1, + anon_sym_LBRACE, + STATE(1164), 1, + sym_enum_variant_list, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [94950] = 5, + [96165] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5729), 1, anon_sym_PIPE, - ACTIONS(6986), 1, + ACTIONS(7028), 1, anon_sym_in, - STATE(3413), 2, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [94967] = 4, + [96182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 2, + ACTIONS(6862), 1, sym_identifier, + ACTIONS(6884), 1, sym_super, - STATE(3414), 2, - sym_line_comment, - sym_block_comment, - [94982] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(252), 1, - sym_closure_parameters, - STATE(3415), 2, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [94999] = 4, + [96199] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 2, + ACTIONS(7030), 2, sym_identifier, sym_metavariable, - STATE(3416), 2, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [95014] = 5, + [96214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_LPAREN, - STATE(1128), 1, - sym_parameters, - STATE(3417), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + STATE(1394), 1, + sym_declaration_list, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [95031] = 5, + [96231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, - anon_sym_LT, - STATE(983), 1, - sym_type_parameters, - STATE(3418), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(7032), 1, + anon_sym_EQ, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [95048] = 5, + [96248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 1, + ACTIONS(6820), 1, anon_sym_LT, - STATE(984), 1, + STATE(986), 1, sym_type_parameters, - STATE(3419), 2, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [95065] = 5, + [96265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_SQUOTE, - STATE(2977), 1, - sym_lifetime, - STATE(3420), 2, + ACTIONS(6820), 1, + anon_sym_LT, + STATE(987), 1, + sym_type_parameters, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [95082] = 5, + [96282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3421), 2, + ACTIONS(6848), 1, + sym_identifier, + ACTIONS(6878), 1, + sym_super, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [95099] = 5, + [96299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(5118), 1, + ACTIONS(5154), 1, anon_sym_for, - STATE(3422), 2, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [95116] = 5, + [96316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym_field_declaration_list, - STATE(3423), 2, + ACTIONS(5729), 1, + anon_sym_PIPE, + ACTIONS(7034), 1, + anon_sym_EQ, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [95133] = 5, + [96333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, - sym_identifier, - ACTIONS(6992), 1, - sym_mutable_specifier, - STATE(3424), 2, + ACTIONS(3076), 1, + anon_sym_SQUOTE, + STATE(2988), 1, + sym_lifetime, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [95150] = 5, + [96350] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RPAREN, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3425), 2, + STATE(216), 1, + sym_closure_parameters, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [95167] = 5, + [96367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_LBRACE, - STATE(591), 1, - sym_enum_variant_list, - STATE(3426), 2, + ACTIONS(7036), 2, + sym_identifier, + sym_metavariable, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [95184] = 5, + [96382] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RBRACK, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3427), 2, + ACTIONS(7038), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [95201] = 4, + [96397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 2, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6804), 1, sym_identifier, - sym_metavariable, - STATE(3428), 2, - sym_line_comment, - sym_block_comment, - [95216] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, - STATE(3429), 2, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [95233] = 5, + [96414] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(6718), 1, + ACTIONS(6727), 1, anon_sym_for, - STATE(3430), 2, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [95250] = 5, + [96431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3431), 2, + ACTIONS(5069), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_field_declaration_list, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [95267] = 5, + [96448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(6720), 1, + ACTIONS(6729), 1, anon_sym_for, - STATE(3432), 2, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [95284] = 5, + [96465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, + ACTIONS(7040), 1, sym_identifier, - ACTIONS(6998), 1, + ACTIONS(7042), 1, sym_super, - STATE(3433), 2, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [95301] = 5, + [96482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - ACTIONS(3850), 1, - anon_sym_COLON, - STATE(3434), 2, + ACTIONS(5053), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_declaration_list, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [95318] = 4, + [96499] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3435), 2, + STATE(239), 1, + sym_closure_parameters, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [95333] = 5, + [96516] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5729), 1, anon_sym_PIPE, - ACTIONS(7002), 1, + ACTIONS(7044), 1, anon_sym_in, - STATE(3436), 2, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [95350] = 5, + [96533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_LPAREN, - STATE(2449), 1, - sym_parameters, - STATE(3437), 2, + ACTIONS(7046), 1, + anon_sym_SEMI, + ACTIONS(7048), 1, + anon_sym_EQ, + STATE(3469), 2, + sym_line_comment, + sym_block_comment, + [96550] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5410), 1, + anon_sym_RPAREN, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [95367] = 5, + [96567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(6728), 1, + ACTIONS(6750), 1, anon_sym_for, - STATE(3438), 2, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [95384] = 5, + [96584] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - sym_super, - ACTIONS(6932), 1, - sym_identifier, - STATE(3439), 2, + ACTIONS(5061), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_declaration_list, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [95401] = 5, + [96601] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, + ACTIONS(7050), 1, anon_sym_LBRACK, - ACTIONS(7006), 1, + ACTIONS(7052), 1, anon_sym_BANG, - STATE(3440), 2, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [95418] = 5, + [96618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5729), 1, anon_sym_PIPE, - ACTIONS(7008), 1, + ACTIONS(7054), 1, anon_sym_in, - STATE(3441), 2, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [95435] = 5, + [96635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5729), 1, anon_sym_PIPE, - ACTIONS(7010), 1, + ACTIONS(7056), 1, anon_sym_in, - STATE(3442), 2, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [95452] = 5, + [96652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5729), 1, anon_sym_PIPE, - ACTIONS(7012), 1, + ACTIONS(7058), 1, anon_sym_in, - STATE(3443), 2, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [95469] = 5, + [96669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, + ACTIONS(5729), 1, anon_sym_PIPE, - ACTIONS(7014), 1, + ACTIONS(7060), 1, anon_sym_in, - STATE(3444), 2, + STATE(3477), 2, + sym_line_comment, + sym_block_comment, + [96686] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5069), 1, + anon_sym_LBRACE, + STATE(1183), 1, + sym_field_declaration_list, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [95486] = 5, + [96703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(2080), 1, + STATE(2089), 1, sym_parameters, - STATE(3445), 2, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [95503] = 5, + [96720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, + ACTIONS(5527), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_enum_variant_list, + STATE(3480), 2, + sym_line_comment, + sym_block_comment, + [96737] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6762), 1, sym_identifier, - ACTIONS(6736), 1, + ACTIONS(6766), 1, sym_mutable_specifier, - STATE(3446), 2, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [95520] = 4, + [96754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 2, + ACTIONS(7062), 1, sym_identifier, - sym_metavariable, - STATE(3447), 2, + ACTIONS(7064), 1, + sym_super, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [95535] = 4, + [96771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 2, + ACTIONS(7066), 2, anon_sym_const, sym_mutable_specifier, - STATE(3448), 2, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [95550] = 5, + [96786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_declaration_list, - STATE(3449), 2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(6944), 1, + sym_identifier, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [95567] = 5, + [96803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4670), 1, anon_sym_LPAREN, - STATE(2077), 1, + STATE(2093), 1, sym_parameters, - STATE(3450), 2, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [95584] = 4, + [96820] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3451), 2, + ACTIONS(7068), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [95599] = 5, + [96835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_LBRACK, - ACTIONS(7022), 1, - anon_sym_BANG, - STATE(3452), 2, + ACTIONS(6938), 1, + anon_sym_LPAREN, + ACTIONS(7070), 1, + anon_sym_COLON_COLON, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [95616] = 5, + [96852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6199), 1, - sym_identifier, - ACTIONS(6203), 1, - sym_mutable_specifier, - STATE(3453), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + ACTIONS(3862), 1, + anon_sym_COLON, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [95633] = 5, + [96869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, + ACTIONS(7072), 1, sym_identifier, - ACTIONS(7026), 1, + ACTIONS(7074), 1, sym_mutable_specifier, - STATE(3454), 2, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [95650] = 5, + [96886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, + ACTIONS(4114), 1, anon_sym_LPAREN, - STATE(2082), 1, + STATE(1701), 1, sym_parameters, - STATE(3455), 2, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [95667] = 5, + [96903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_LBRACE, - STATE(636), 1, - sym_declaration_list, - STATE(3456), 2, + ACTIONS(4670), 1, + anon_sym_LPAREN, + STATE(2100), 1, + sym_parameters, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [95684] = 5, + [96920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_declaration_list, - STATE(3457), 2, + ACTIONS(6884), 2, + sym_identifier, + sym_super, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [95701] = 4, + [96935] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3458), 2, + ACTIONS(7076), 1, + anon_sym_SEMI, + ACTIONS(7078), 1, + anon_sym_as, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [95716] = 4, + [96952] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - anon_sym_RBRACE, - STATE(3459), 2, + ACTIONS(3438), 1, + anon_sym_LT2, + STATE(1490), 1, + sym_type_arguments, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [95730] = 4, + [96969] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4056), 1, - anon_sym_COLON_COLON, - STATE(3460), 2, + ACTIONS(7080), 1, + anon_sym_LT2, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [95744] = 4, + [96983] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - anon_sym_COLON_COLON, - STATE(3461), 2, + ACTIONS(7082), 1, + anon_sym_RPAREN, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [95758] = 4, + [96997] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, - sym_identifier, - STATE(3462), 2, + ACTIONS(7084), 1, + anon_sym_RBRACK, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [95772] = 4, + [97011] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(875), 1, - anon_sym_RBRACK, - STATE(3463), 2, + ACTIONS(3172), 1, + anon_sym_PLUS, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [95786] = 4, + [97025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_RBRACK, - STATE(3464), 2, + ACTIONS(7086), 1, + sym_identifier, + STATE(3499), 2, sym_line_comment, sym_block_comment, - [95800] = 4, + [97039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 1, + ACTIONS(7088), 1, anon_sym_SEMI, - STATE(3465), 2, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [95814] = 4, + [97053] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - anon_sym_RBRACK, - STATE(3466), 2, + ACTIONS(7090), 1, + anon_sym_SEMI, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [95828] = 4, + [97067] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RBRACK, - STATE(3467), 2, + ACTIONS(7092), 1, + sym__raw_string_literal_end, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [95842] = 4, + [97081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - anon_sym_RBRACK, - STATE(3468), 2, + ACTIONS(6192), 1, + anon_sym_RBRACE, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [95856] = 4, + [97095] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - anon_sym_RBRACE, - STATE(3469), 2, + ACTIONS(7094), 1, + sym_identifier, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [95870] = 4, + [97109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_COLON, - STATE(3470), 2, + ACTIONS(7096), 1, + anon_sym_SEMI, + STATE(3505), 2, + sym_line_comment, + sym_block_comment, + [97123] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7098), 1, + anon_sym_RBRACE, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [95884] = 4, + [97137] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - anon_sym_SEMI, - STATE(3471), 2, + ACTIONS(7100), 1, + anon_sym_COLON_COLON, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [95898] = 4, + [97151] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_LT2, - STATE(3472), 2, + ACTIONS(7102), 1, + anon_sym_SEMI, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [95912] = 4, + [97165] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - STATE(3473), 2, + ACTIONS(7104), 1, + anon_sym_RBRACE, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [95926] = 4, + [97179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, - anon_sym_RPAREN, - STATE(3474), 2, + ACTIONS(7106), 1, + anon_sym_SEMI, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [95940] = 4, + [97193] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - sym_identifier, - STATE(3475), 2, + ACTIONS(5055), 1, + anon_sym_COLON_COLON, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [95954] = 4, + [97207] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(7108), 1, anon_sym_COLON_COLON, - STATE(3476), 2, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [95968] = 4, + [97221] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_COLON_COLON, - STATE(3477), 2, + ACTIONS(7110), 1, + anon_sym_fn, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [95982] = 4, + [97235] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_fn, - STATE(3478), 2, + ACTIONS(7112), 1, + anon_sym_RBRACK, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [95996] = 4, + [97249] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, + ACTIONS(7114), 1, sym_identifier, - STATE(3479), 2, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [96010] = 4, + [97263] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, + ACTIONS(6044), 1, anon_sym_LBRACE, - STATE(3480), 2, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [96024] = 4, + [97277] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym__line_doc_content, - STATE(3481), 2, + ACTIONS(6237), 1, + anon_sym_GT, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [96038] = 4, + [97291] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, - anon_sym_SEMI, - STATE(3482), 2, + ACTIONS(5725), 1, + anon_sym_RPAREN, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [96052] = 4, + [97305] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - ts_builtin_sym_end, - STATE(3483), 2, + ACTIONS(4328), 1, + anon_sym_RPAREN, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [96066] = 4, + [97319] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(5789), 1, anon_sym_RPAREN, - STATE(3484), 2, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [96080] = 4, + [97333] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_fn, - STATE(3485), 2, + ACTIONS(7116), 1, + anon_sym_SEMI, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [96094] = 4, + [97347] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - anon_sym_SEMI, - STATE(3486), 2, + ACTIONS(7118), 1, + anon_sym_RPAREN, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [96108] = 4, + [97361] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, + ACTIONS(7120), 1, anon_sym_SEMI, - STATE(3487), 2, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [96122] = 4, + [97375] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, - sym__raw_string_literal_end, - STATE(3488), 2, + ACTIONS(4684), 1, + anon_sym_fn, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [96136] = 4, + [97389] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - sym__raw_string_literal_end, - STATE(3489), 2, + ACTIONS(6816), 1, + anon_sym_COLON_COLON, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [96150] = 4, + [97403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, + ACTIONS(7122), 1, anon_sym_SEMI, - STATE(3490), 2, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [96164] = 4, + [97417] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, + ACTIONS(7124), 1, anon_sym_SEMI, - STATE(3491), 2, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [96178] = 4, + [97431] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, + ACTIONS(7126), 1, anon_sym_RBRACK, - STATE(3492), 2, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [96192] = 4, + [97445] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, - anon_sym_SEMI, - STATE(3493), 2, + ACTIONS(6329), 1, + anon_sym_RBRACE, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [96206] = 4, + [97459] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, - anon_sym_RPAREN, - STATE(3494), 2, + ACTIONS(7128), 1, + anon_sym_SEMI, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [96220] = 4, + [97473] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, + ACTIONS(7130), 1, sym_identifier, - STATE(3495), 2, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [96234] = 4, + [97487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, + ACTIONS(7132), 1, sym_identifier, - STATE(3496), 2, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [96248] = 4, + [97501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - anon_sym_SEMI, - STATE(3497), 2, + ACTIONS(7134), 1, + sym_identifier, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [96262] = 4, + [97515] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, + ACTIONS(7136), 1, anon_sym_SEMI, - STATE(3498), 2, - sym_line_comment, - sym_block_comment, - [96276] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_RBRACE, - STATE(3499), 2, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [96290] = 4, + [97529] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - sym_identifier, - STATE(3500), 2, + ACTIONS(7138), 1, + anon_sym_COLON, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [96304] = 4, + [97543] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - sym_identifier, - STATE(3501), 2, + ACTIONS(7140), 1, + anon_sym_SEMI, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [96318] = 4, + [97557] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(3502), 2, + ACTIONS(7142), 1, + anon_sym_RBRACK, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [96332] = 4, + [97571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, + ACTIONS(7144), 1, sym_identifier, - STATE(3503), 2, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [96346] = 4, + [97585] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, + ACTIONS(6864), 1, anon_sym_SEMI, - STATE(3504), 2, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [96360] = 4, + [97599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_RPAREN, - STATE(3505), 2, + ACTIONS(7146), 1, + anon_sym_RBRACK, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [96374] = 4, + [97613] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, - STATE(3506), 2, + ACTIONS(5077), 1, + anon_sym_COLON_COLON, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [96388] = 4, + [97627] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - STATE(3507), 2, + ACTIONS(3220), 1, + anon_sym_PLUS, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [96402] = 4, + [97641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, + ACTIONS(7148), 1, sym_self, - STATE(3508), 2, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [96416] = 4, + [97655] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - anon_sym_EQ_GT, - STATE(3509), 2, + ACTIONS(7150), 1, + sym_identifier, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [96430] = 4, + [97669] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_SEMI, - STATE(3510), 2, + ACTIONS(7152), 1, + anon_sym_COLON, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [96444] = 4, + [97683] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_EQ, - STATE(3511), 2, + ACTIONS(7154), 1, + sym_identifier, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [96458] = 4, + [97697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_RBRACK, - STATE(3512), 2, + ACTIONS(7156), 1, + anon_sym_SEMI, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [96472] = 4, + [97711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_COLON_COLON, - STATE(3513), 2, + ACTIONS(7158), 1, + sym__line_doc_content, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [96486] = 4, + [97725] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - anon_sym_SEMI, - STATE(3514), 2, + ACTIONS(7160), 1, + sym_identifier, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [96500] = 4, + [97739] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5646), 1, - anon_sym_RPAREN, - STATE(3515), 2, + ACTIONS(7162), 1, + sym_identifier, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [96514] = 4, + [97753] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - sym_identifier, - STATE(3516), 2, + ACTIONS(6056), 1, + anon_sym_LBRACE, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [96528] = 4, + [97767] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_SEMI, - STATE(3517), 2, + ACTIONS(6286), 1, + anon_sym_RBRACE, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [96542] = 4, + [97781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6622), 1, + ACTIONS(6349), 1, anon_sym_RBRACE, - STATE(3518), 2, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [96556] = 4, + [97795] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, + ACTIONS(7164), 1, anon_sym_SEMI, - STATE(3519), 2, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [96570] = 4, + [97809] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_EQ_GT, - STATE(3520), 2, + ACTIONS(7166), 1, + sym_identifier, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [96584] = 4, + [97823] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_SEMI, - STATE(3521), 2, + ACTIONS(7168), 1, + anon_sym_fn, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [96598] = 4, + [97837] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4155), 1, - sym_identifier, - STATE(3522), 2, + ACTIONS(7170), 1, + sym__line_doc_content, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [96612] = 4, + [97851] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - sym_identifier, - STATE(3523), 2, + ACTIONS(7172), 1, + anon_sym_fn, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [96626] = 4, + [97865] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - sym__line_doc_content, - STATE(3524), 2, + ACTIONS(7174), 1, + sym__raw_string_literal_end, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [96640] = 4, + [97879] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - sym_identifier, - STATE(3525), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [96654] = 4, + [97893] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_EQ, - STATE(3526), 2, + ACTIONS(6214), 1, + anon_sym_GT, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [96668] = 4, + [97907] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_RBRACE, - STATE(3527), 2, + ACTIONS(7176), 1, + anon_sym_SEMI, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [96682] = 4, + [97921] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - anon_sym_RBRACE, - STATE(3528), 2, + ACTIONS(7178), 1, + anon_sym_SEMI, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [96696] = 4, + [97935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_COLON, - STATE(3529), 2, + ACTIONS(6247), 1, + anon_sym_RBRACE, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [96710] = 4, + [97949] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - anon_sym_SEMI, - STATE(3530), 2, + ACTIONS(7180), 1, + sym_identifier, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [96724] = 4, + [97963] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - sym_identifier, - STATE(3531), 2, + ACTIONS(7182), 1, + sym__raw_string_literal_end, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [96738] = 4, + [97977] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - anon_sym_COLON, - STATE(3532), 2, + ACTIONS(6278), 1, + anon_sym_RBRACE, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [96752] = 4, + [97991] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, + ACTIONS(7184), 1, sym_identifier, - STATE(3533), 2, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [96766] = 4, + [98005] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6122), 1, - anon_sym_RBRACE, - STATE(3534), 2, + ACTIONS(7186), 1, + anon_sym_SEMI, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [96780] = 4, + [98019] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, + ACTIONS(7188), 1, anon_sym_STAR_SLASH, - STATE(3535), 2, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [96794] = 4, + [98033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - sym_identifier, - STATE(3536), 2, + ACTIONS(5691), 1, + anon_sym_RPAREN, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [96808] = 4, + [98047] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - sym__raw_string_literal_end, - STATE(3537), 2, + ACTIONS(7190), 1, + anon_sym_EQ, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [96822] = 4, + [98061] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_LT, - STATE(3538), 2, + ACTIONS(7192), 1, + anon_sym_COLON, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [96836] = 4, + [98075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - sym__line_doc_content, - STATE(3539), 2, + ACTIONS(7194), 1, + sym_identifier, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [96850] = 4, + [98089] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_LPAREN, - STATE(3540), 2, + ACTIONS(7196), 1, + anon_sym_COLON, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [96864] = 4, + [98103] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - anon_sym_SEMI, - STATE(3541), 2, + ACTIONS(7198), 1, + anon_sym_EQ_GT, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [96878] = 4, + [98117] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_fn, - STATE(3542), 2, + ACTIONS(7200), 1, + sym_raw_string_literal_content, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [96892] = 4, + [98131] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - sym_raw_string_literal_content, - STATE(3543), 2, + ACTIONS(7202), 1, + sym_identifier, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [96906] = 4, + [98145] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - sym_identifier, - STATE(3544), 2, + ACTIONS(7204), 1, + anon_sym_SEMI, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [96920] = 4, + [98159] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_SEMI, - STATE(3545), 2, + ACTIONS(5811), 1, + anon_sym_RPAREN, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [96934] = 4, + [98173] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_LBRACK, - STATE(3546), 2, + ACTIONS(6900), 1, + anon_sym_SEMI, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [96948] = 4, + [98187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, + ACTIONS(7206), 1, anon_sym_RPAREN, - STATE(3547), 2, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [96962] = 4, + [98201] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, - anon_sym_PLUS, - STATE(3548), 2, + ACTIONS(7208), 1, + anon_sym_RBRACK, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [96976] = 4, + [98215] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - sym__raw_string_literal_end, - STATE(3549), 2, + ACTIONS(7210), 1, + sym__line_doc_content, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [96990] = 4, + [98229] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, + ACTIONS(7212), 1, anon_sym_SEMI, - STATE(3550), 2, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [97004] = 4, + [98243] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym_identifier, - STATE(3551), 2, + ACTIONS(6902), 1, + anon_sym_SEMI, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [97018] = 4, + [98257] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_COLON_COLON, - STATE(3552), 2, + ACTIONS(6786), 1, + anon_sym_GT, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [97032] = 4, + [98271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, + ACTIONS(7214), 1, + anon_sym_LT, + STATE(3588), 2, + sym_line_comment, + sym_block_comment, + [98285] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4154), 1, sym_identifier, - STATE(3553), 2, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [97046] = 4, + [98299] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_RBRACK, - STATE(3554), 2, + ACTIONS(7216), 1, + anon_sym_EQ_GT, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [97060] = 4, + [98313] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, + ACTIONS(7218), 1, sym_identifier, - STATE(3555), 2, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [97074] = 4, + [98327] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_COLON, - STATE(3556), 2, + ACTIONS(5430), 1, + anon_sym_SEMI, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [97088] = 4, + [98341] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, + ACTIONS(7220), 1, anon_sym_COLON_COLON, - STATE(3557), 2, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [97102] = 4, + [98355] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, + ACTIONS(933), 1, anon_sym_RBRACK, - STATE(3558), 2, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [97116] = 4, + [98369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - anon_sym_RBRACE, - STATE(3559), 2, + ACTIONS(6361), 1, + anon_sym_GT, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [97130] = 4, + [98383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_RBRACK, - STATE(3560), 2, + ACTIONS(4296), 1, + anon_sym_RPAREN, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [97144] = 4, + [98397] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, + ACTIONS(6096), 1, + anon_sym_RPAREN, + STATE(3597), 2, + sym_line_comment, + sym_block_comment, + [98411] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7222), 1, sym_identifier, - STATE(3561), 2, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [97158] = 4, + [98425] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - anon_sym_RPAREN, - STATE(3562), 2, + ACTIONS(7224), 1, + anon_sym_SEMI, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [97172] = 4, + [98439] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6518), 1, - anon_sym_COLON_COLON, - STATE(3563), 2, + ACTIONS(7226), 1, + anon_sym_RBRACK, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [97186] = 4, + [98453] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_EQ_GT, - STATE(3564), 2, + ACTIONS(7228), 1, + anon_sym_SEMI, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [97200] = 4, + [98467] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5918), 1, - anon_sym_RPAREN, - STATE(3565), 2, + ACTIONS(7230), 1, + anon_sym_SEMI, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [97214] = 4, + [98481] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, + ACTIONS(7232), 1, anon_sym_STAR_SLASH, - STATE(3566), 2, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [97228] = 4, + [98495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RBRACK, - STATE(3567), 2, + ACTIONS(3204), 1, + anon_sym_PLUS, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [97242] = 4, + [98509] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - sym__line_doc_content, - STATE(3568), 2, + ACTIONS(6100), 1, + anon_sym_RBRACK, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [97256] = 4, + [98523] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_COLON_COLON, - STATE(3569), 2, + ACTIONS(7234), 1, + anon_sym_RBRACE, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [97270] = 4, + [98537] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_EQ_GT, - STATE(3570), 2, + ACTIONS(7236), 1, + ts_builtin_sym_end, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [97284] = 4, + [98551] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_SEMI, - STATE(3571), 2, + ACTIONS(7238), 1, + sym_identifier, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [97298] = 4, + [98565] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, + ACTIONS(7240), 1, anon_sym_SEMI, - STATE(3572), 2, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [97312] = 4, + [98579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5688), 1, - anon_sym_RPAREN, - STATE(3573), 2, + ACTIONS(7242), 1, + sym_identifier, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [97326] = 4, + [98593] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - anon_sym_COLON, - STATE(3574), 2, + ACTIONS(7244), 1, + anon_sym_SEMI, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [97340] = 4, + [98607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, + ACTIONS(7246), 1, sym__raw_string_literal_end, - STATE(3575), 2, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [97354] = 4, + [98621] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 1, - anon_sym_GT, - STATE(3576), 2, + ACTIONS(7248), 1, + sym_identifier, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [97368] = 4, + [98635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, + ACTIONS(7250), 1, anon_sym_SEMI, - STATE(3577), 2, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [97382] = 4, + [98649] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, + ACTIONS(1035), 1, anon_sym_RBRACK, - STATE(3578), 2, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [97396] = 4, + [98663] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 1, - anon_sym_RPAREN, - STATE(3579), 2, + ACTIONS(7252), 1, + sym_identifier, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [97410] = 4, + [98677] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - anon_sym_RBRACE, - STATE(3580), 2, + ACTIONS(7254), 1, + anon_sym_RBRACK, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [97424] = 4, + [98691] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(3581), 2, + ACTIONS(7256), 1, + sym_identifier, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [97438] = 4, + [98705] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_COLON, - STATE(3582), 2, + ACTIONS(7258), 1, + anon_sym_LPAREN, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [97452] = 4, + [98719] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - sym_identifier, - STATE(3583), 2, + ACTIONS(7260), 1, + anon_sym_COLON, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [97466] = 4, + [98733] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - anon_sym_SEMI, - STATE(3584), 2, + ACTIONS(7262), 1, + sym_identifier, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [97480] = 4, + [98747] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, + ACTIONS(7264), 1, sym_raw_string_literal_content, - STATE(3585), 2, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [97494] = 4, + [98761] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4266), 1, - anon_sym_RPAREN, - STATE(3586), 2, + ACTIONS(7266), 1, + anon_sym_SEMI, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [97508] = 4, + [98775] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, + ACTIONS(7268), 1, anon_sym_SEMI, - STATE(3587), 2, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [97522] = 4, + [98789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, - STATE(3588), 2, + ACTIONS(7270), 1, + anon_sym_SEMI, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [97536] = 4, + [98803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4316), 1, + ACTIONS(4348), 1, anon_sym_COLON_COLON, - STATE(3589), 2, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [97550] = 4, + [98817] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, + ACTIONS(6017), 1, anon_sym_COLON_COLON, - STATE(3590), 2, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [97564] = 4, + [98831] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6175), 1, - anon_sym_RBRACE, - STATE(3591), 2, + ACTIONS(7272), 1, + anon_sym_RBRACK, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [97578] = 4, + [98845] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, - sym_identifier, - STATE(3592), 2, + ACTIONS(7274), 1, + anon_sym_SEMI, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [97592] = 4, + [98859] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - sym_identifier, - STATE(3593), 2, + ACTIONS(7276), 1, + anon_sym_LBRACK, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [97606] = 4, + [98873] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, + ACTIONS(7278), 1, anon_sym_COLON_COLON, - STATE(3594), 2, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [97620] = 4, + [98887] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - sym_identifier, - STATE(3595), 2, + ACTIONS(7280), 1, + anon_sym_RPAREN, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [97634] = 4, + [98901] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_SEMI, - STATE(3596), 2, + ACTIONS(7282), 1, + sym__raw_string_literal_end, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [97648] = 4, + [98915] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - anon_sym_SEMI, - STATE(3597), 2, + ACTIONS(7284), 1, + sym_identifier, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [97662] = 4, + [98929] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6408), 1, - anon_sym_GT, - STATE(3598), 2, + ACTIONS(7286), 1, + anon_sym_SEMI, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [97676] = 4, + [98943] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - anon_sym_SEMI, - STATE(3599), 2, + ACTIONS(7288), 1, + sym_identifier, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [97690] = 4, + [98957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, + ACTIONS(7290), 1, anon_sym_LT2, - STATE(3600), 2, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [97704] = 4, + [98971] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, - anon_sym_SEMI, - STATE(3601), 2, + ACTIONS(7292), 1, + sym_identifier, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [97718] = 4, + [98985] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, + ACTIONS(7294), 1, anon_sym_fn, - STATE(3602), 2, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [97732] = 4, + [98999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, + ACTIONS(7296), 1, anon_sym_SEMI, - STATE(3603), 2, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [97746] = 4, + [99013] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, + ACTIONS(7298), 1, anon_sym_COLON_COLON, - STATE(3604), 2, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [97760] = 4, + [99027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, - STATE(3605), 2, + ACTIONS(5801), 1, + anon_sym_RPAREN, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [97774] = 4, + [99041] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - anon_sym_SEMI, - STATE(3606), 2, + ACTIONS(7300), 1, + anon_sym_RBRACE, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [97788] = 4, + [99055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, + ACTIONS(7302), 1, anon_sym_COLON_COLON, - STATE(3607), 2, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [97802] = 4, + [99069] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - anon_sym_SEMI, - STATE(3608), 2, + ACTIONS(7304), 1, + sym_identifier, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [97816] = 4, + [99083] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, + ACTIONS(5316), 1, anon_sym_SEMI, - STATE(3609), 2, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [97830] = 4, + [99097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, + ACTIONS(6756), 1, anon_sym_RBRACE, - STATE(3610), 2, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [97844] = 4, + [99111] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - STATE(3611), 2, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [97858] = 4, + [99125] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(7306), 1, anon_sym_COLON_COLON, - STATE(3612), 2, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [97872] = 4, + [99139] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, + ACTIONS(7308), 1, anon_sym_fn, - STATE(3613), 2, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [97886] = 4, + [99153] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - anon_sym_SEMI, - STATE(3614), 2, + ACTIONS(7310), 1, + anon_sym_COLON, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [97900] = 4, + [99167] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, + ACTIONS(7312), 1, anon_sym_LBRACE, - STATE(3615), 2, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [97914] = 4, + [99181] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, + ACTIONS(7314), 1, anon_sym_SEMI, - STATE(3616), 2, - sym_line_comment, - sym_block_comment, - [97928] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(901), 1, - anon_sym_RBRACK, - STATE(3617), 2, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [97942] = 4, + [99195] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_COLON_COLON, - STATE(3618), 2, + ACTIONS(7316), 1, + anon_sym_RBRACE, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [97956] = 4, + [99209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, + ACTIONS(7318), 1, anon_sym_RBRACK, - STATE(3619), 2, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [97970] = 4, + [99223] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, - sym_identifier, - STATE(3620), 2, + ACTIONS(7320), 1, + anon_sym_EQ, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [97984] = 4, + [99237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - sym_identifier, - STATE(3621), 2, + ACTIONS(6669), 1, + anon_sym_COLON_COLON, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [97998] = 4, + [99251] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - anon_sym_SEMI, - STATE(3622), 2, + ACTIONS(6078), 1, + anon_sym_RBRACK, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [98012] = 4, + [99265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_identifier, - STATE(3623), 2, + ACTIONS(5805), 1, + anon_sym_RPAREN, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [98026] = 4, + [99279] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, + ACTIONS(7322), 1, sym_raw_string_literal_content, - STATE(3624), 2, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [98040] = 4, + [99293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_RBRACE, - STATE(3625), 2, + ACTIONS(5418), 1, + anon_sym_SEMI, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [98054] = 4, + [99307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - sym_identifier, - STATE(3626), 2, + ACTIONS(1007), 1, + anon_sym_EQ_GT, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [98068] = 4, + [99321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, + ACTIONS(7324), 1, sym_identifier, - STATE(3627), 2, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [98082] = 4, + [99335] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, + ACTIONS(7326), 1, anon_sym_COLON_COLON, - STATE(3628), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [98096] = 4, + [99349] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RPAREN, - STATE(3629), 2, + ACTIONS(7328), 1, + anon_sym_COLON, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [98110] = 4, + [99363] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_RBRACE, - STATE(3630), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [98124] = 4, + [99377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, + ACTIONS(7332), 1, anon_sym_COLON_COLON, - STATE(3631), 2, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [98138] = 4, - ACTIONS(103), 1, + [99391] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - sym_identifier, - STATE(3632), 2, + ACTIONS(7334), 1, + aux_sym_line_comment_token2, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [98152] = 4, + [99405] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym_identifier, - STATE(3633), 2, + ACTIONS(7336), 1, + anon_sym_SEMI, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [98166] = 4, + [99419] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, + ACTIONS(7338), 1, anon_sym_COLON_COLON, - STATE(3634), 2, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [98180] = 4, + [99433] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, - sym_identifier, - STATE(3635), 2, + ACTIONS(6162), 1, + anon_sym_RBRACE, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [98194] = 4, + [99447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - anon_sym_COLON, - STATE(3636), 2, + ACTIONS(6840), 1, + anon_sym_SEMI, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [98208] = 4, + [99461] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, + ACTIONS(7340), 1, sym_identifier, - STATE(3637), 2, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [98222] = 4, + [99475] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, - sym_identifier, - STATE(3638), 2, + ACTIONS(7342), 1, + anon_sym_SEMI, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [98236] = 4, + [99489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, + ACTIONS(7344), 1, anon_sym_COLON_COLON, - STATE(3639), 2, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [98250] = 4, + [99503] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, + ACTIONS(7346), 1, anon_sym_LBRACE, - STATE(3640), 2, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [98264] = 4, + [99517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, + ACTIONS(7348), 1, anon_sym_LBRACK, - STATE(3641), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [98278] = 4, + [99531] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_fn, - STATE(3642), 2, + ACTIONS(7350), 1, + anon_sym_SEMI, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [98292] = 4, + [99545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5824), 1, - anon_sym_RBRACK, - STATE(3643), 2, + ACTIONS(7352), 1, + anon_sym_COLON, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [98306] = 4, + [99559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - anon_sym_SEMI, - STATE(3644), 2, + ACTIONS(4869), 1, + anon_sym_COLON_COLON, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [98320] = 4, + [99573] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, + ACTIONS(7354), 1, sym_raw_string_literal_content, - STATE(3645), 2, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [98334] = 4, + [99587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - STATE(3646), 2, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [98348] = 4, + [99601] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, - anon_sym_RBRACK, - STATE(3647), 2, + ACTIONS(7356), 1, + anon_sym_LPAREN, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [98362] = 4, + [99615] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, + ACTIONS(7358), 1, anon_sym_COLON_COLON, - STATE(3648), 2, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [98376] = 4, + [99629] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - anon_sym_SEMI, - STATE(3649), 2, + ACTIONS(7360), 1, + sym_raw_string_literal_content, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [98390] = 4, + [99643] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_COLON, - STATE(3650), 2, + ACTIONS(7362), 1, + anon_sym_RBRACK, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [98404] = 4, + [99657] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, + ACTIONS(7364), 1, anon_sym_LBRACE, - STATE(3651), 2, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [98418] = 4, + [99671] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, + ACTIONS(7366), 1, sym_raw_string_literal_content, - STATE(3652), 2, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [98432] = 4, + [99685] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5282), 1, + ACTIONS(5402), 1, anon_sym_COLON_COLON, - STATE(3653), 2, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [98446] = 4, + [99699] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, + ACTIONS(7368), 1, anon_sym_COLON_COLON, - STATE(3654), 2, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [98460] = 4, + [99713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - sym_raw_string_literal_content, - STATE(3655), 2, + ACTIONS(7370), 1, + sym_identifier, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [98474] = 4, + [99727] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6062), 1, + ACTIONS(6112), 1, anon_sym_LBRACE, - STATE(3656), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [98488] = 4, + [99741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5798), 1, + ACTIONS(6070), 1, anon_sym_COLON_COLON, - STATE(3657), 2, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [98502] = 4, + [99755] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, + ACTIONS(7372), 1, anon_sym_COLON_COLON, - STATE(3658), 2, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [98516] = 4, + [99769] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, + ACTIONS(6124), 1, anon_sym_LBRACE, - STATE(3659), 2, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [98530] = 4, + [99783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, + ACTIONS(7374), 1, anon_sym_COLON_COLON, - STATE(3660), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [98544] = 4, + [99797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, + ACTIONS(5400), 1, anon_sym_COLON_COLON, - STATE(3661), 2, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [98558] = 4, + [99811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5320), 1, + ACTIONS(5416), 1, anon_sym_COLON_COLON, - STATE(3662), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [98572] = 4, + [99825] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4306), 1, + ACTIONS(4304), 1, anon_sym_COLON_COLON, - STATE(3663), 2, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [98586] = 4, + [99839] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, + ACTIONS(7376), 1, anon_sym_COLON_COLON, - STATE(3664), 2, - sym_line_comment, - sym_block_comment, - [98600] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_SEMI, - STATE(3665), 2, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [98614] = 4, + [99853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, + ACTIONS(7378), 1, sym_identifier, - STATE(3666), 2, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [98628] = 4, + [99867] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, - anon_sym_SEMI, - STATE(3667), 2, + ACTIONS(7380), 1, + anon_sym_COLON, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [98642] = 4, + [99881] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - sym_identifier, - STATE(3668), 2, + ACTIONS(7382), 1, + anon_sym_RPAREN, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [98656] = 4, + [99895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - anon_sym_COLON, - STATE(3669), 2, + ACTIONS(7384), 1, + anon_sym_SEMI, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [98670] = 4, + [99909] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_LBRACK, - STATE(3670), 2, + ACTIONS(7386), 1, + anon_sym_COLON, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [98684] = 4, + [99923] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_SEMI, - STATE(3671), 2, + ACTIONS(7388), 1, + anon_sym_LBRACK, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [98698] = 4, + [99937] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, + ACTIONS(7390), 1, anon_sym_SEMI, - STATE(3672), 2, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [98712] = 4, + [99951] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, + ACTIONS(6156), 1, anon_sym_RPAREN, - STATE(3673), 2, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [98726] = 4, + [99965] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, - STATE(3674), 2, + ACTIONS(891), 1, + anon_sym_RBRACK, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [98740] = 4, + [99979] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_SEMI, - STATE(3675), 2, + ACTIONS(1021), 1, + anon_sym_EQ_GT, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [98754] = 4, + [99993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, + ACTIONS(7392), 1, anon_sym_LBRACK, - STATE(3676), 2, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [98768] = 4, + [100007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, + ACTIONS(7394), 1, anon_sym_COLON, - STATE(3677), 2, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [98782] = 4, + [100021] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, + ACTIONS(7396), 1, anon_sym_COLON, - STATE(3678), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [98796] = 4, + [100035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, + ACTIONS(7398), 1, sym_identifier, - STATE(3679), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [98810] = 4, + [100049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, + ACTIONS(7400), 1, sym_identifier, - STATE(3680), 2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [98824] = 4, + [100063] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - sym_identifier, - STATE(3681), 2, + ACTIONS(7402), 1, + anon_sym_SEMI, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [98838] = 4, + [100077] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - anon_sym_COLON, - STATE(3682), 2, + ACTIONS(7404), 1, + anon_sym_SEMI, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [98852] = 4, + [100091] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, + ACTIONS(7406), 1, anon_sym_COLON, - STATE(3683), 2, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [98866] = 4, + [100105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, + ACTIONS(7408), 1, sym_identifier, - STATE(3684), 2, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [98880] = 4, + [100119] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, - sym_identifier, - STATE(3685), 2, + ACTIONS(7410), 1, + anon_sym_EQ_GT, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [98894] = 4, + [100133] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, + ACTIONS(7412), 1, sym_identifier, - STATE(3686), 2, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [98908] = 4, + [100147] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5288), 1, - anon_sym_SEMI, - STATE(3687), 2, + ACTIONS(7414), 1, + sym__line_doc_content, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [98922] = 4, + [100161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - anon_sym_COLON, - STATE(3688), 2, + ACTIONS(7416), 1, + anon_sym_SEMI, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [98936] = 4, + [100175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - anon_sym_GT, - STATE(3689), 2, + ACTIONS(7418), 1, + sym_identifier, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [98950] = 4, + [100189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym__raw_string_literal_end, - STATE(3690), 2, + ACTIONS(871), 1, + anon_sym_RBRACK, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [98964] = 4, + [100203] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - anon_sym_RBRACE, - STATE(3691), 2, + ACTIONS(7420), 1, + anon_sym_SEMI, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [98978] = 4, + [100217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_COLON_COLON, - STATE(3692), 2, + ACTIONS(7422), 1, + anon_sym_EQ_GT, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [98992] = 4, + [100231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_COLON, - STATE(3693), 2, + ACTIONS(4272), 1, + anon_sym_COLON_COLON, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [99006] = 4, + [100245] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1015), 1, - anon_sym_EQ_GT, - STATE(3694), 2, + ACTIONS(7424), 1, + anon_sym_SEMI, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [99020] = 4, + [100259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_COLON_COLON, - STATE(3695), 2, + ACTIONS(7426), 1, + anon_sym_RBRACE, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [99034] = 4, + [100273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_PLUS, - STATE(3696), 2, + ACTIONS(4769), 1, + anon_sym_COLON_COLON, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [99048] = 4, + [100287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, - sym_identifier, - STATE(3697), 2, + ACTIONS(7428), 1, + anon_sym_SEMI, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [99062] = 4, + [100301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, + ACTIONS(7430), 1, anon_sym_COLON, - STATE(3698), 2, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [99076] = 4, + [100315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - anon_sym_SEMI, - STATE(3699), 2, + ACTIONS(7432), 1, + anon_sym_RPAREN, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [99090] = 4, + [100329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_SEMI, - STATE(3700), 2, + ACTIONS(3914), 1, + anon_sym_COLON_COLON, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [99104] = 4, + [100343] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, + ACTIONS(7434), 1, anon_sym_SEMI, - STATE(3701), 2, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [99118] = 4, + [100357] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, + ACTIONS(7436), 1, anon_sym_COLON, - STATE(3702), 2, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [99132] = 4, + [100371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, - anon_sym_SEMI, - STATE(3703), 2, + ACTIONS(7438), 1, + sym_identifier, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [99146] = 4, + [100385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - anon_sym_SEMI, - STATE(3704), 2, + ACTIONS(6434), 1, + anon_sym_RBRACE, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [99160] = 4, + [100399] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, - anon_sym_EQ_GT, - STATE(3705), 2, + ACTIONS(7440), 1, + anon_sym_COLON, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [99174] = 4, + [100413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, - sym_identifier, - STATE(3706), 2, + ACTIONS(7442), 1, + anon_sym_COLON_COLON, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [99188] = 4, + [100427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LBRACE, - STATE(3707), 2, + ACTIONS(7444), 1, + sym_identifier, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [99202] = 4, + [100441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, - anon_sym_SEMI, - STATE(3708), 2, + ACTIONS(7446), 1, + sym_identifier, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [99216] = 4, + [100455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_RBRACK, - STATE(3709), 2, + ACTIONS(7448), 1, + anon_sym_RBRACE, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [99230] = 4, + [100469] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, - anon_sym_SEMI, - STATE(3710), 2, + ACTIONS(3830), 1, + anon_sym_COLON_COLON, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [99244] = 4, + [100483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, + ACTIONS(7450), 1, anon_sym_COLON, - STATE(3711), 2, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [99258] = 4, + [100497] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, - anon_sym_COLON_COLON, - STATE(3712), 2, + ACTIONS(7452), 1, + anon_sym_SEMI, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [99272] = 4, + [100511] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_SEMI, - STATE(3713), 2, + ACTIONS(7454), 1, + anon_sym_COLON, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [99286] = 4, + [100525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5070), 1, + ACTIONS(4767), 1, anon_sym_COLON_COLON, - STATE(3714), 2, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [99300] = 4, - ACTIONS(3), 1, + [100539] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - aux_sym_line_comment_token2, - STATE(3715), 2, + ACTIONS(7456), 1, + sym_identifier, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [99314] = 4, + [100553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - anon_sym_SEMI, - STATE(3716), 2, + ACTIONS(7458), 1, + sym_identifier, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [99328] = 4, + [100567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, - anon_sym_SEMI, - STATE(3717), 2, + ACTIONS(7460), 1, + anon_sym_EQ_GT, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [99342] = 4, + [100581] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, + ACTIONS(7462), 1, anon_sym_EQ, - STATE(3718), 2, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [99356] = 4, + [100595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6458), 1, - anon_sym_RBRACE, - STATE(3719), 2, + ACTIONS(7464), 1, + anon_sym_SEMI, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [99370] = 4, + [100609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - anon_sym_EQ_GT, - STATE(3720), 2, + ACTIONS(7466), 1, + anon_sym_SEMI, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [99384] = 4, + [100623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, + ACTIONS(7468), 1, sym_identifier, - STATE(3721), 2, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [99398] = 4, + [100637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, + ACTIONS(7470), 1, anon_sym_SEMI, - STATE(3722), 2, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [99412] = 4, + [100651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, - anon_sym_RPAREN, - STATE(3723), 2, + ACTIONS(7472), 1, + sym__raw_string_literal_end, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [99426] = 4, + [100665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, - anon_sym_SEMI, - STATE(3724), 2, + ACTIONS(7474), 1, + anon_sym_COLON, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [99440] = 4, + [100679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_LT2, - STATE(3725), 2, + ACTIONS(4112), 1, + anon_sym_COLON_COLON, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [99454] = 4, + [100693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, + ACTIONS(5318), 1, + anon_sym_SEMI, + STATE(3761), 2, + sym_line_comment, + sym_block_comment, + [100707] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7476), 1, anon_sym_COLON, - STATE(3726), 2, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [99468] = 4, + [100721] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, + ACTIONS(7478), 1, anon_sym_EQ, - STATE(3727), 2, + STATE(3763), 2, sym_line_comment, sym_block_comment, - [99482] = 4, + [100735] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - anon_sym_RPAREN, - STATE(3728), 2, + ACTIONS(7480), 1, + anon_sym_LT2, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [99496] = 4, + [100749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, + ACTIONS(7482), 1, anon_sym_COLON, - STATE(3729), 2, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [99510] = 4, + [100763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, + ACTIONS(7484), 1, anon_sym_LBRACK, - STATE(3730), 2, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [99524] = 4, + [100777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, + ACTIONS(7486), 1, anon_sym_LBRACK, - STATE(3731), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [99538] = 4, + [100791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, + ACTIONS(7488), 1, anon_sym_COLON, - STATE(3732), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [99552] = 4, + [100805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - anon_sym_fn, - STATE(3733), 2, + ACTIONS(7490), 1, + anon_sym_RBRACE, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [99566] = 4, + [100819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_PLUS, - STATE(3734), 2, + ACTIONS(7492), 1, + anon_sym_fn, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [99580] = 4, + [100833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, + ACTIONS(7494), 1, anon_sym_COLON, - STATE(3735), 2, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [99594] = 4, + [100847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, + ACTIONS(7496), 1, anon_sym_COLON, - STATE(3736), 2, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [99608] = 4, + [100861] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, - anon_sym_RBRACE, - STATE(3737), 2, + ACTIONS(3208), 1, + anon_sym_PLUS, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [99622] = 4, + [100875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, - anon_sym_COLON_COLON, - STATE(3738), 2, + ACTIONS(7498), 1, + anon_sym_SEMI, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [99636] = 4, + [100889] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, + ACTIONS(7500), 1, anon_sym_COLON, - STATE(3739), 2, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [99650] = 4, + [100903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, + ACTIONS(7502), 1, anon_sym_COLON, - STATE(3740), 2, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [99664] = 4, + [100917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, + ACTIONS(7504), 1, anon_sym_COLON, - STATE(3741), 2, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [99678] = 4, + [100931] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, - sym_identifier, - STATE(3742), 2, + ACTIONS(7506), 1, + anon_sym_COLON_COLON, + STATE(3778), 2, sym_line_comment, sym_block_comment, - [99692] = 4, + [100945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4698), 1, + ACTIONS(4708), 1, anon_sym_fn, - STATE(3743), 2, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [99706] = 4, + [100959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6454), 1, - anon_sym_GT, - STATE(3744), 2, + ACTIONS(7508), 1, + sym__line_doc_content, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [99720] = 4, + [100973] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7460), 1, + ACTIONS(7510), 1, anon_sym_SEMI, - STATE(3745), 2, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [99734] = 4, + [100987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7462), 1, - sym_identifier, - STATE(3746), 2, + ACTIONS(7512), 1, + anon_sym_EQ_GT, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [99748] = 4, + [101001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, - anon_sym_SEMI, - STATE(3747), 2, + ACTIONS(5390), 1, + anon_sym_COLON_COLON, + STATE(3783), 2, sym_line_comment, sym_block_comment, - [99762] = 4, + [101015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, - anon_sym_EQ_GT, - STATE(3748), 2, + ACTIONS(6768), 1, + anon_sym_RBRACE, + STATE(3784), 2, sym_line_comment, sym_block_comment, - [99776] = 4, + [101029] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - sym__line_doc_content, - STATE(3749), 2, + ACTIONS(7514), 1, + anon_sym_SEMI, + STATE(3785), 2, sym_line_comment, sym_block_comment, - [99790] = 4, + [101043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, + ACTIONS(7516), 1, sym_identifier, - STATE(3750), 2, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [99804] = 4, + [101057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, - anon_sym_RPAREN, - STATE(3751), 2, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + STATE(3787), 2, sym_line_comment, sym_block_comment, - [99818] = 4, + [101071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, + ACTIONS(7518), 1, anon_sym_SEMI, - STATE(3752), 2, + STATE(3788), 2, sym_line_comment, sym_block_comment, - [99832] = 4, + [101085] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, + ACTIONS(7520), 1, sym_identifier, - STATE(3753), 2, + STATE(3789), 2, sym_line_comment, sym_block_comment, - [99846] = 4, + [101099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, + ACTIONS(7522), 1, anon_sym_fn, - STATE(3754), 2, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [99860] = 4, + [101113] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, + ACTIONS(7524), 1, anon_sym_SEMI, - STATE(3755), 2, + STATE(3791), 2, sym_line_comment, sym_block_comment, - [99874] = 4, + [101127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_COLON, - STATE(3756), 2, + ACTIONS(7526), 1, + sym_identifier, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [99888] = 4, + [101141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 1, - anon_sym_COLON_COLON, - STATE(3757), 2, + ACTIONS(7528), 1, + anon_sym_fn, + STATE(3793), 2, sym_line_comment, sym_block_comment, - [99902] = 4, + [101155] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_SEMI, - STATE(3758), 2, + ACTIONS(7530), 1, + sym_identifier, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [99916] = 4, + [101169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, + ACTIONS(7532), 1, anon_sym_COLON_COLON, - STATE(3759), 2, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [99930] = 4, + [101183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7484), 1, - anon_sym_SEMI, - STATE(3760), 2, + ACTIONS(5589), 1, + anon_sym_RPAREN, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [99944] = 4, + [101197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, - anon_sym_SEMI, - STATE(3761), 2, + ACTIONS(7534), 1, + sym_identifier, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [99958] = 4, + [101211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - anon_sym_COLON, - STATE(3762), 2, + ACTIONS(7536), 1, + sym_identifier, + STATE(3798), 2, sym_line_comment, sym_block_comment, - [99972] = 4, + [101225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, + ACTIONS(7538), 1, sym_identifier, - STATE(3763), 2, + STATE(3799), 2, sym_line_comment, sym_block_comment, - [99986] = 4, + [101239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, - sym_identifier, - STATE(3764), 2, + ACTIONS(7540), 1, + anon_sym_COLON_COLON, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [100000] = 4, + [101253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, - anon_sym_COLON_COLON, - STATE(3765), 2, + ACTIONS(7542), 1, + sym_identifier, + STATE(3801), 2, sym_line_comment, sym_block_comment, - [100014] = 4, + [101267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, - anon_sym_fn, - STATE(3766), 2, + ACTIONS(7544), 1, + sym_identifier, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [100028] = 4, + [101281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, + ACTIONS(7546), 1, sym_identifier, - STATE(3767), 2, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [100042] = 4, + [101295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, - sym_identifier, - STATE(3768), 2, + ACTIONS(7548), 1, + anon_sym_COLON, + STATE(3804), 2, sym_line_comment, sym_block_comment, - [100056] = 4, + [101309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, + ACTIONS(7550), 1, sym_identifier, - STATE(3769), 2, + STATE(3805), 2, sym_line_comment, sym_block_comment, - [100070] = 4, + [101323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, + ACTIONS(7552), 1, anon_sym_SEMI, - STATE(3770), 2, + STATE(3806), 2, sym_line_comment, sym_block_comment, - [100084] = 4, + [101337] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7506), 1, + ACTIONS(7554), 1, sym_identifier, - STATE(3771), 2, + STATE(3807), 2, sym_line_comment, sym_block_comment, - [100098] = 4, + [101351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, + ACTIONS(7556), 1, sym_identifier, - STATE(3772), 2, + STATE(3808), 2, sym_line_comment, sym_block_comment, - [100112] = 4, + [101365] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, + ACTIONS(6744), 1, anon_sym_RBRACE, - STATE(3773), 2, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [100126] = 4, + [101379] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, + ACTIONS(7558), 1, anon_sym_fn, - STATE(3774), 2, + STATE(3810), 2, sym_line_comment, sym_block_comment, - [100140] = 4, + [101393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4312), 1, - anon_sym_RPAREN, - STATE(3775), 2, + ACTIONS(7560), 1, + sym_identifier, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [100154] = 4, + [101407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, + ACTIONS(7562), 1, anon_sym_fn, - STATE(3776), 2, + STATE(3812), 2, sym_line_comment, sym_block_comment, - [100168] = 4, + [101421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - anon_sym_RBRACE, - STATE(3777), 2, + ACTIONS(7564), 1, + anon_sym_SEMI, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [100182] = 1, - ACTIONS(7516), 1, + [101435] = 1, + ACTIONS(7566), 1, ts_builtin_sym_end, - [100186] = 1, - ACTIONS(7518), 1, + [101439] = 1, + ACTIONS(7568), 1, ts_builtin_sym_end, - [100190] = 1, - ACTIONS(7520), 1, + [101443] = 1, + ACTIONS(7570), 1, ts_builtin_sym_end, - [100194] = 1, - ACTIONS(7522), 1, + [101447] = 1, + ACTIONS(7572), 1, ts_builtin_sym_end, - [100198] = 1, - ACTIONS(7524), 1, + [101451] = 1, + ACTIONS(7574), 1, ts_builtin_sym_end, - [100202] = 1, - ACTIONS(7526), 1, + [101455] = 1, + ACTIONS(7576), 1, ts_builtin_sym_end, - [100206] = 1, - ACTIONS(7528), 1, + [101459] = 1, + ACTIONS(7578), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1054)] = 0, - [SMALL_STATE(1055)] = 75, - [SMALL_STATE(1056)] = 148, - [SMALL_STATE(1057)] = 219, - [SMALL_STATE(1058)] = 319, - [SMALL_STATE(1059)] = 419, - [SMALL_STATE(1060)] = 519, - [SMALL_STATE(1061)] = 598, - [SMALL_STATE(1062)] = 675, - [SMALL_STATE(1063)] = 752, - [SMALL_STATE(1064)] = 829, - [SMALL_STATE(1065)] = 897, - [SMALL_STATE(1066)] = 961, - [SMALL_STATE(1067)] = 1025, - [SMALL_STATE(1068)] = 1089, - [SMALL_STATE(1069)] = 1153, - [SMALL_STATE(1070)] = 1217, - [SMALL_STATE(1071)] = 1281, - [SMALL_STATE(1072)] = 1345, - [SMALL_STATE(1073)] = 1419, - [SMALL_STATE(1074)] = 1483, - [SMALL_STATE(1075)] = 1547, - [SMALL_STATE(1076)] = 1610, - [SMALL_STATE(1077)] = 1711, - [SMALL_STATE(1078)] = 1812, - [SMALL_STATE(1079)] = 1879, - [SMALL_STATE(1080)] = 1946, - [SMALL_STATE(1081)] = 2013, - [SMALL_STATE(1082)] = 2076, - [SMALL_STATE(1083)] = 2143, - [SMALL_STATE(1084)] = 2206, - [SMALL_STATE(1085)] = 2273, - [SMALL_STATE(1086)] = 2344, - [SMALL_STATE(1087)] = 2415, - [SMALL_STATE(1088)] = 2486, - [SMALL_STATE(1089)] = 2587, - [SMALL_STATE(1090)] = 2650, - [SMALL_STATE(1091)] = 2721, - [SMALL_STATE(1092)] = 2784, - [SMALL_STATE(1093)] = 2846, - [SMALL_STATE(1094)] = 2908, - [SMALL_STATE(1095)] = 2970, - [SMALL_STATE(1096)] = 3034, - [SMALL_STATE(1097)] = 3098, - [SMALL_STATE(1098)] = 3160, - [SMALL_STATE(1099)] = 3222, - [SMALL_STATE(1100)] = 3284, - [SMALL_STATE(1101)] = 3354, - [SMALL_STATE(1102)] = 3422, - [SMALL_STATE(1103)] = 3484, - [SMALL_STATE(1104)] = 3546, - [SMALL_STATE(1105)] = 3621, - [SMALL_STATE(1106)] = 3684, - [SMALL_STATE(1107)] = 3745, - [SMALL_STATE(1108)] = 3808, - [SMALL_STATE(1109)] = 3869, - [SMALL_STATE(1110)] = 3930, - [SMALL_STATE(1111)] = 3993, - [SMALL_STATE(1112)] = 4054, - [SMALL_STATE(1113)] = 4115, - [SMALL_STATE(1114)] = 4176, - [SMALL_STATE(1115)] = 4237, - [SMALL_STATE(1116)] = 4298, - [SMALL_STATE(1117)] = 4391, - [SMALL_STATE(1118)] = 4454, - [SMALL_STATE(1119)] = 4517, - [SMALL_STATE(1120)] = 4580, - [SMALL_STATE(1121)] = 4641, - [SMALL_STATE(1122)] = 4702, - [SMALL_STATE(1123)] = 4795, - [SMALL_STATE(1124)] = 4856, - [SMALL_STATE(1125)] = 4949, - [SMALL_STATE(1126)] = 5010, - [SMALL_STATE(1127)] = 5071, - [SMALL_STATE(1128)] = 5132, - [SMALL_STATE(1129)] = 5195, - [SMALL_STATE(1130)] = 5258, - [SMALL_STATE(1131)] = 5321, - [SMALL_STATE(1132)] = 5384, - [SMALL_STATE(1133)] = 5447, - [SMALL_STATE(1134)] = 5508, - [SMALL_STATE(1135)] = 5573, - [SMALL_STATE(1136)] = 5634, - [SMALL_STATE(1137)] = 5695, - [SMALL_STATE(1138)] = 5756, - [SMALL_STATE(1139)] = 5817, - [SMALL_STATE(1140)] = 5878, - [SMALL_STATE(1141)] = 5939, - [SMALL_STATE(1142)] = 6000, - [SMALL_STATE(1143)] = 6061, - [SMALL_STATE(1144)] = 6122, - [SMALL_STATE(1145)] = 6183, - [SMALL_STATE(1146)] = 6244, - [SMALL_STATE(1147)] = 6305, - [SMALL_STATE(1148)] = 6366, - [SMALL_STATE(1149)] = 6427, - [SMALL_STATE(1150)] = 6488, - [SMALL_STATE(1151)] = 6549, - [SMALL_STATE(1152)] = 6610, - [SMALL_STATE(1153)] = 6671, - [SMALL_STATE(1154)] = 6734, - [SMALL_STATE(1155)] = 6797, - [SMALL_STATE(1156)] = 6860, - [SMALL_STATE(1157)] = 6921, - [SMALL_STATE(1158)] = 6982, - [SMALL_STATE(1159)] = 7043, - [SMALL_STATE(1160)] = 7104, - [SMALL_STATE(1161)] = 7165, - [SMALL_STATE(1162)] = 7226, - [SMALL_STATE(1163)] = 7287, - [SMALL_STATE(1164)] = 7348, - [SMALL_STATE(1165)] = 7409, - [SMALL_STATE(1166)] = 7470, - [SMALL_STATE(1167)] = 7531, - [SMALL_STATE(1168)] = 7592, - [SMALL_STATE(1169)] = 7653, - [SMALL_STATE(1170)] = 7714, - [SMALL_STATE(1171)] = 7775, - [SMALL_STATE(1172)] = 7836, - [SMALL_STATE(1173)] = 7897, - [SMALL_STATE(1174)] = 7958, - [SMALL_STATE(1175)] = 8019, - [SMALL_STATE(1176)] = 8080, - [SMALL_STATE(1177)] = 8141, - [SMALL_STATE(1178)] = 8202, - [SMALL_STATE(1179)] = 8263, - [SMALL_STATE(1180)] = 8324, - [SMALL_STATE(1181)] = 8385, - [SMALL_STATE(1182)] = 8446, - [SMALL_STATE(1183)] = 8507, - [SMALL_STATE(1184)] = 8568, - [SMALL_STATE(1185)] = 8629, - [SMALL_STATE(1186)] = 8690, - [SMALL_STATE(1187)] = 8751, - [SMALL_STATE(1188)] = 8812, - [SMALL_STATE(1189)] = 8873, - [SMALL_STATE(1190)] = 8934, - [SMALL_STATE(1191)] = 8995, - [SMALL_STATE(1192)] = 9056, - [SMALL_STATE(1193)] = 9117, - [SMALL_STATE(1194)] = 9178, - [SMALL_STATE(1195)] = 9241, - [SMALL_STATE(1196)] = 9304, - [SMALL_STATE(1197)] = 9365, - [SMALL_STATE(1198)] = 9426, - [SMALL_STATE(1199)] = 9487, - [SMALL_STATE(1200)] = 9548, - [SMALL_STATE(1201)] = 9609, - [SMALL_STATE(1202)] = 9670, - [SMALL_STATE(1203)] = 9731, - [SMALL_STATE(1204)] = 9792, - [SMALL_STATE(1205)] = 9853, - [SMALL_STATE(1206)] = 9914, - [SMALL_STATE(1207)] = 9975, - [SMALL_STATE(1208)] = 10036, - [SMALL_STATE(1209)] = 10097, - [SMALL_STATE(1210)] = 10158, - [SMALL_STATE(1211)] = 10219, - [SMALL_STATE(1212)] = 10280, - [SMALL_STATE(1213)] = 10341, - [SMALL_STATE(1214)] = 10402, - [SMALL_STATE(1215)] = 10463, - [SMALL_STATE(1216)] = 10524, - [SMALL_STATE(1217)] = 10585, - [SMALL_STATE(1218)] = 10646, - [SMALL_STATE(1219)] = 10707, - [SMALL_STATE(1220)] = 10768, - [SMALL_STATE(1221)] = 10829, - [SMALL_STATE(1222)] = 10890, - [SMALL_STATE(1223)] = 10951, - [SMALL_STATE(1224)] = 11012, - [SMALL_STATE(1225)] = 11073, - [SMALL_STATE(1226)] = 11134, - [SMALL_STATE(1227)] = 11195, - [SMALL_STATE(1228)] = 11256, - [SMALL_STATE(1229)] = 11317, - [SMALL_STATE(1230)] = 11378, - [SMALL_STATE(1231)] = 11439, - [SMALL_STATE(1232)] = 11500, - [SMALL_STATE(1233)] = 11561, - [SMALL_STATE(1234)] = 11622, - [SMALL_STATE(1235)] = 11683, - [SMALL_STATE(1236)] = 11744, - [SMALL_STATE(1237)] = 11805, - [SMALL_STATE(1238)] = 11866, - [SMALL_STATE(1239)] = 11927, - [SMALL_STATE(1240)] = 11988, - [SMALL_STATE(1241)] = 12049, - [SMALL_STATE(1242)] = 12110, - [SMALL_STATE(1243)] = 12171, - [SMALL_STATE(1244)] = 12232, - [SMALL_STATE(1245)] = 12293, - [SMALL_STATE(1246)] = 12354, - [SMALL_STATE(1247)] = 12415, - [SMALL_STATE(1248)] = 12476, - [SMALL_STATE(1249)] = 12537, - [SMALL_STATE(1250)] = 12598, - [SMALL_STATE(1251)] = 12659, - [SMALL_STATE(1252)] = 12720, - [SMALL_STATE(1253)] = 12781, - [SMALL_STATE(1254)] = 12842, - [SMALL_STATE(1255)] = 12903, - [SMALL_STATE(1256)] = 12964, - [SMALL_STATE(1257)] = 13025, - [SMALL_STATE(1258)] = 13086, - [SMALL_STATE(1259)] = 13147, - [SMALL_STATE(1260)] = 13208, - [SMALL_STATE(1261)] = 13269, - [SMALL_STATE(1262)] = 13330, - [SMALL_STATE(1263)] = 13391, - [SMALL_STATE(1264)] = 13452, - [SMALL_STATE(1265)] = 13513, - [SMALL_STATE(1266)] = 13574, - [SMALL_STATE(1267)] = 13635, - [SMALL_STATE(1268)] = 13696, - [SMALL_STATE(1269)] = 13757, - [SMALL_STATE(1270)] = 13818, - [SMALL_STATE(1271)] = 13879, - [SMALL_STATE(1272)] = 13940, - [SMALL_STATE(1273)] = 14001, - [SMALL_STATE(1274)] = 14062, - [SMALL_STATE(1275)] = 14123, - [SMALL_STATE(1276)] = 14184, - [SMALL_STATE(1277)] = 14247, - [SMALL_STATE(1278)] = 14308, - [SMALL_STATE(1279)] = 14369, - [SMALL_STATE(1280)] = 14430, - [SMALL_STATE(1281)] = 14491, - [SMALL_STATE(1282)] = 14552, - [SMALL_STATE(1283)] = 14613, - [SMALL_STATE(1284)] = 14674, - [SMALL_STATE(1285)] = 14735, - [SMALL_STATE(1286)] = 14796, - [SMALL_STATE(1287)] = 14857, - [SMALL_STATE(1288)] = 14918, - [SMALL_STATE(1289)] = 14979, - [SMALL_STATE(1290)] = 15040, - [SMALL_STATE(1291)] = 15101, - [SMALL_STATE(1292)] = 15162, - [SMALL_STATE(1293)] = 15223, - [SMALL_STATE(1294)] = 15284, - [SMALL_STATE(1295)] = 15345, - [SMALL_STATE(1296)] = 15406, - [SMALL_STATE(1297)] = 15467, - [SMALL_STATE(1298)] = 15528, - [SMALL_STATE(1299)] = 15589, - [SMALL_STATE(1300)] = 15650, - [SMALL_STATE(1301)] = 15711, - [SMALL_STATE(1302)] = 15772, - [SMALL_STATE(1303)] = 15833, - [SMALL_STATE(1304)] = 15894, - [SMALL_STATE(1305)] = 15955, - [SMALL_STATE(1306)] = 16016, - [SMALL_STATE(1307)] = 16077, - [SMALL_STATE(1308)] = 16138, - [SMALL_STATE(1309)] = 16199, - [SMALL_STATE(1310)] = 16260, - [SMALL_STATE(1311)] = 16321, - [SMALL_STATE(1312)] = 16382, - [SMALL_STATE(1313)] = 16443, - [SMALL_STATE(1314)] = 16504, - [SMALL_STATE(1315)] = 16565, - [SMALL_STATE(1316)] = 16626, - [SMALL_STATE(1317)] = 16687, - [SMALL_STATE(1318)] = 16748, - [SMALL_STATE(1319)] = 16809, - [SMALL_STATE(1320)] = 16870, - [SMALL_STATE(1321)] = 16931, - [SMALL_STATE(1322)] = 16992, - [SMALL_STATE(1323)] = 17053, - [SMALL_STATE(1324)] = 17114, - [SMALL_STATE(1325)] = 17175, - [SMALL_STATE(1326)] = 17236, - [SMALL_STATE(1327)] = 17297, - [SMALL_STATE(1328)] = 17358, - [SMALL_STATE(1329)] = 17419, - [SMALL_STATE(1330)] = 17480, - [SMALL_STATE(1331)] = 17541, - [SMALL_STATE(1332)] = 17602, - [SMALL_STATE(1333)] = 17663, - [SMALL_STATE(1334)] = 17724, - [SMALL_STATE(1335)] = 17785, - [SMALL_STATE(1336)] = 17846, - [SMALL_STATE(1337)] = 17907, - [SMALL_STATE(1338)] = 17968, - [SMALL_STATE(1339)] = 18029, - [SMALL_STATE(1340)] = 18090, - [SMALL_STATE(1341)] = 18151, - [SMALL_STATE(1342)] = 18212, - [SMALL_STATE(1343)] = 18273, - [SMALL_STATE(1344)] = 18334, - [SMALL_STATE(1345)] = 18395, - [SMALL_STATE(1346)] = 18456, - [SMALL_STATE(1347)] = 18517, - [SMALL_STATE(1348)] = 18578, - [SMALL_STATE(1349)] = 18639, - [SMALL_STATE(1350)] = 18700, - [SMALL_STATE(1351)] = 18761, - [SMALL_STATE(1352)] = 18822, - [SMALL_STATE(1353)] = 18883, - [SMALL_STATE(1354)] = 18944, - [SMALL_STATE(1355)] = 19005, - [SMALL_STATE(1356)] = 19066, - [SMALL_STATE(1357)] = 19127, - [SMALL_STATE(1358)] = 19188, - [SMALL_STATE(1359)] = 19249, - [SMALL_STATE(1360)] = 19310, - [SMALL_STATE(1361)] = 19371, - [SMALL_STATE(1362)] = 19432, - [SMALL_STATE(1363)] = 19493, - [SMALL_STATE(1364)] = 19554, - [SMALL_STATE(1365)] = 19615, - [SMALL_STATE(1366)] = 19676, - [SMALL_STATE(1367)] = 19737, - [SMALL_STATE(1368)] = 19798, - [SMALL_STATE(1369)] = 19859, - [SMALL_STATE(1370)] = 19920, - [SMALL_STATE(1371)] = 19981, - [SMALL_STATE(1372)] = 20042, - [SMALL_STATE(1373)] = 20103, - [SMALL_STATE(1374)] = 20164, - [SMALL_STATE(1375)] = 20225, - [SMALL_STATE(1376)] = 20286, - [SMALL_STATE(1377)] = 20347, - [SMALL_STATE(1378)] = 20408, - [SMALL_STATE(1379)] = 20469, - [SMALL_STATE(1380)] = 20530, - [SMALL_STATE(1381)] = 20591, - [SMALL_STATE(1382)] = 20652, - [SMALL_STATE(1383)] = 20713, - [SMALL_STATE(1384)] = 20774, - [SMALL_STATE(1385)] = 20835, - [SMALL_STATE(1386)] = 20896, - [SMALL_STATE(1387)] = 20957, - [SMALL_STATE(1388)] = 21018, - [SMALL_STATE(1389)] = 21079, - [SMALL_STATE(1390)] = 21140, - [SMALL_STATE(1391)] = 21201, - [SMALL_STATE(1392)] = 21262, - [SMALL_STATE(1393)] = 21323, - [SMALL_STATE(1394)] = 21384, - [SMALL_STATE(1395)] = 21445, - [SMALL_STATE(1396)] = 21506, - [SMALL_STATE(1397)] = 21567, - [SMALL_STATE(1398)] = 21628, - [SMALL_STATE(1399)] = 21689, - [SMALL_STATE(1400)] = 21750, - [SMALL_STATE(1401)] = 21811, - [SMALL_STATE(1402)] = 21872, - [SMALL_STATE(1403)] = 21933, - [SMALL_STATE(1404)] = 21994, - [SMALL_STATE(1405)] = 22055, - [SMALL_STATE(1406)] = 22116, - [SMALL_STATE(1407)] = 22177, - [SMALL_STATE(1408)] = 22238, - [SMALL_STATE(1409)] = 22299, - [SMALL_STATE(1410)] = 22364, - [SMALL_STATE(1411)] = 22425, - [SMALL_STATE(1412)] = 22486, - [SMALL_STATE(1413)] = 22547, - [SMALL_STATE(1414)] = 22608, - [SMALL_STATE(1415)] = 22669, - [SMALL_STATE(1416)] = 22730, - [SMALL_STATE(1417)] = 22795, - [SMALL_STATE(1418)] = 22870, - [SMALL_STATE(1419)] = 22933, - [SMALL_STATE(1420)] = 22994, - [SMALL_STATE(1421)] = 23068, - [SMALL_STATE(1422)] = 23128, - [SMALL_STATE(1423)] = 23188, - [SMALL_STATE(1424)] = 23248, - [SMALL_STATE(1425)] = 23308, - [SMALL_STATE(1426)] = 23368, - [SMALL_STATE(1427)] = 23428, - [SMALL_STATE(1428)] = 23488, - [SMALL_STATE(1429)] = 23548, - [SMALL_STATE(1430)] = 23608, - [SMALL_STATE(1431)] = 23670, - [SMALL_STATE(1432)] = 23730, - [SMALL_STATE(1433)] = 23790, - [SMALL_STATE(1434)] = 23850, - [SMALL_STATE(1435)] = 23916, - [SMALL_STATE(1436)] = 23976, - [SMALL_STATE(1437)] = 24036, - [SMALL_STATE(1438)] = 24096, - [SMALL_STATE(1439)] = 24162, - [SMALL_STATE(1440)] = 24222, - [SMALL_STATE(1441)] = 24282, - [SMALL_STATE(1442)] = 24342, - [SMALL_STATE(1443)] = 24402, - [SMALL_STATE(1444)] = 24462, - [SMALL_STATE(1445)] = 24522, - [SMALL_STATE(1446)] = 24582, - [SMALL_STATE(1447)] = 24642, - [SMALL_STATE(1448)] = 24708, - [SMALL_STATE(1449)] = 24768, - [SMALL_STATE(1450)] = 24828, - [SMALL_STATE(1451)] = 24888, - [SMALL_STATE(1452)] = 24948, - [SMALL_STATE(1453)] = 25008, - [SMALL_STATE(1454)] = 25068, - [SMALL_STATE(1455)] = 25128, - [SMALL_STATE(1456)] = 25188, - [SMALL_STATE(1457)] = 25248, - [SMALL_STATE(1458)] = 25308, - [SMALL_STATE(1459)] = 25368, - [SMALL_STATE(1460)] = 25428, - [SMALL_STATE(1461)] = 25488, - [SMALL_STATE(1462)] = 25548, - [SMALL_STATE(1463)] = 25608, - [SMALL_STATE(1464)] = 25668, - [SMALL_STATE(1465)] = 25728, - [SMALL_STATE(1466)] = 25788, - [SMALL_STATE(1467)] = 25848, - [SMALL_STATE(1468)] = 25908, - [SMALL_STATE(1469)] = 25968, - [SMALL_STATE(1470)] = 26028, - [SMALL_STATE(1471)] = 26088, - [SMALL_STATE(1472)] = 26148, - [SMALL_STATE(1473)] = 26208, - [SMALL_STATE(1474)] = 26268, - [SMALL_STATE(1475)] = 26328, - [SMALL_STATE(1476)] = 26388, - [SMALL_STATE(1477)] = 26448, - [SMALL_STATE(1478)] = 26508, - [SMALL_STATE(1479)] = 26568, - [SMALL_STATE(1480)] = 26628, - [SMALL_STATE(1481)] = 26688, - [SMALL_STATE(1482)] = 26748, - [SMALL_STATE(1483)] = 26844, - [SMALL_STATE(1484)] = 26904, - [SMALL_STATE(1485)] = 26964, - [SMALL_STATE(1486)] = 27024, - [SMALL_STATE(1487)] = 27084, - [SMALL_STATE(1488)] = 27144, - [SMALL_STATE(1489)] = 27206, - [SMALL_STATE(1490)] = 27266, - [SMALL_STATE(1491)] = 27326, - [SMALL_STATE(1492)] = 27386, - [SMALL_STATE(1493)] = 27446, - [SMALL_STATE(1494)] = 27506, - [SMALL_STATE(1495)] = 27566, - [SMALL_STATE(1496)] = 27634, - [SMALL_STATE(1497)] = 27694, - [SMALL_STATE(1498)] = 27754, - [SMALL_STATE(1499)] = 27814, - [SMALL_STATE(1500)] = 27874, - [SMALL_STATE(1501)] = 27934, - [SMALL_STATE(1502)] = 27994, - [SMALL_STATE(1503)] = 28054, - [SMALL_STATE(1504)] = 28114, - [SMALL_STATE(1505)] = 28174, - [SMALL_STATE(1506)] = 28234, - [SMALL_STATE(1507)] = 28294, - [SMALL_STATE(1508)] = 28354, - [SMALL_STATE(1509)] = 28418, - [SMALL_STATE(1510)] = 28478, - [SMALL_STATE(1511)] = 28538, - [SMALL_STATE(1512)] = 28598, - [SMALL_STATE(1513)] = 28658, - [SMALL_STATE(1514)] = 28718, - [SMALL_STATE(1515)] = 28778, - [SMALL_STATE(1516)] = 28838, - [SMALL_STATE(1517)] = 28898, - [SMALL_STATE(1518)] = 28958, - [SMALL_STATE(1519)] = 29018, - [SMALL_STATE(1520)] = 29078, - [SMALL_STATE(1521)] = 29138, - [SMALL_STATE(1522)] = 29198, - [SMALL_STATE(1523)] = 29258, - [SMALL_STATE(1524)] = 29318, - [SMALL_STATE(1525)] = 29378, - [SMALL_STATE(1526)] = 29438, - [SMALL_STATE(1527)] = 29498, - [SMALL_STATE(1528)] = 29558, - [SMALL_STATE(1529)] = 29618, - [SMALL_STATE(1530)] = 29678, - [SMALL_STATE(1531)] = 29738, - [SMALL_STATE(1532)] = 29802, - [SMALL_STATE(1533)] = 29862, - [SMALL_STATE(1534)] = 29922, - [SMALL_STATE(1535)] = 29982, - [SMALL_STATE(1536)] = 30042, - [SMALL_STATE(1537)] = 30102, - [SMALL_STATE(1538)] = 30162, - [SMALL_STATE(1539)] = 30228, - [SMALL_STATE(1540)] = 30288, - [SMALL_STATE(1541)] = 30387, - [SMALL_STATE(1542)] = 30486, - [SMALL_STATE(1543)] = 30555, - [SMALL_STATE(1544)] = 30626, - [SMALL_STATE(1545)] = 30687, - [SMALL_STATE(1546)] = 30748, - [SMALL_STATE(1547)] = 30847, - [SMALL_STATE(1548)] = 30946, - [SMALL_STATE(1549)] = 31016, - [SMALL_STATE(1550)] = 31098, - [SMALL_STATE(1551)] = 31182, - [SMALL_STATE(1552)] = 31272, - [SMALL_STATE(1553)] = 31342, - [SMALL_STATE(1554)] = 31412, - [SMALL_STATE(1555)] = 31482, - [SMALL_STATE(1556)] = 31572, - [SMALL_STATE(1557)] = 31630, - [SMALL_STATE(1558)] = 31720, - [SMALL_STATE(1559)] = 31798, - [SMALL_STATE(1560)] = 31856, - [SMALL_STATE(1561)] = 31948, - [SMALL_STATE(1562)] = 32006, - [SMALL_STATE(1563)] = 32066, - [SMALL_STATE(1564)] = 32156, - [SMALL_STATE(1565)] = 32222, - [SMALL_STATE(1566)] = 32308, - [SMALL_STATE(1567)] = 32394, - [SMALL_STATE(1568)] = 32480, - [SMALL_STATE(1569)] = 32570, - [SMALL_STATE(1570)] = 32656, - [SMALL_STATE(1571)] = 32742, - [SMALL_STATE(1572)] = 32828, - [SMALL_STATE(1573)] = 32920, - [SMALL_STATE(1574)] = 33010, - [SMALL_STATE(1575)] = 33102, - [SMALL_STATE(1576)] = 33188, - [SMALL_STATE(1577)] = 33256, - [SMALL_STATE(1578)] = 33342, - [SMALL_STATE(1579)] = 33416, - [SMALL_STATE(1580)] = 33488, - [SMALL_STATE(1581)] = 33564, - [SMALL_STATE(1582)] = 33624, - [SMALL_STATE(1583)] = 33687, - [SMALL_STATE(1584)] = 33752, - [SMALL_STATE(1585)] = 33819, - [SMALL_STATE(1586)] = 33882, - [SMALL_STATE(1587)] = 33942, - [SMALL_STATE(1588)] = 34000, - [SMALL_STATE(1589)] = 34058, - [SMALL_STATE(1590)] = 34118, - [SMALL_STATE(1591)] = 34176, - [SMALL_STATE(1592)] = 34236, - [SMALL_STATE(1593)] = 34292, - [SMALL_STATE(1594)] = 34348, - [SMALL_STATE(1595)] = 34408, - [SMALL_STATE(1596)] = 34468, - [SMALL_STATE(1597)] = 34528, - [SMALL_STATE(1598)] = 34592, - [SMALL_STATE(1599)] = 34656, - [SMALL_STATE(1600)] = 34712, - [SMALL_STATE(1601)] = 34776, - [SMALL_STATE(1602)] = 34836, - [SMALL_STATE(1603)] = 34894, - [SMALL_STATE(1604)] = 34958, - [SMALL_STATE(1605)] = 35014, - [SMALL_STATE(1606)] = 35103, - [SMALL_STATE(1607)] = 35162, - [SMALL_STATE(1608)] = 35251, - [SMALL_STATE(1609)] = 35308, - [SMALL_STATE(1610)] = 35365, - [SMALL_STATE(1611)] = 35460, - [SMALL_STATE(1612)] = 35515, - [SMALL_STATE(1613)] = 35570, - [SMALL_STATE(1614)] = 35625, - [SMALL_STATE(1615)] = 35720, - [SMALL_STATE(1616)] = 35779, - [SMALL_STATE(1617)] = 35836, - [SMALL_STATE(1618)] = 35891, - [SMALL_STATE(1619)] = 35946, - [SMALL_STATE(1620)] = 36041, - [SMALL_STATE(1621)] = 36100, - [SMALL_STATE(1622)] = 36155, - [SMALL_STATE(1623)] = 36250, - [SMALL_STATE(1624)] = 36309, - [SMALL_STATE(1625)] = 36404, - [SMALL_STATE(1626)] = 36499, - [SMALL_STATE(1627)] = 36594, - [SMALL_STATE(1628)] = 36689, - [SMALL_STATE(1629)] = 36784, - [SMALL_STATE(1630)] = 36879, - [SMALL_STATE(1631)] = 36936, - [SMALL_STATE(1632)] = 36993, - [SMALL_STATE(1633)] = 37048, - [SMALL_STATE(1634)] = 37105, - [SMALL_STATE(1635)] = 37194, - [SMALL_STATE(1636)] = 37249, - [SMALL_STATE(1637)] = 37306, - [SMALL_STATE(1638)] = 37401, - [SMALL_STATE(1639)] = 37490, - [SMALL_STATE(1640)] = 37585, - [SMALL_STATE(1641)] = 37641, - [SMALL_STATE(1642)] = 37695, - [SMALL_STATE(1643)] = 37749, - [SMALL_STATE(1644)] = 37803, - [SMALL_STATE(1645)] = 37857, - [SMALL_STATE(1646)] = 37915, - [SMALL_STATE(1647)] = 37969, - [SMALL_STATE(1648)] = 38051, - [SMALL_STATE(1649)] = 38137, - [SMALL_STATE(1650)] = 38223, - [SMALL_STATE(1651)] = 38309, - [SMALL_STATE(1652)] = 38363, - [SMALL_STATE(1653)] = 38417, - [SMALL_STATE(1654)] = 38473, - [SMALL_STATE(1655)] = 38565, - [SMALL_STATE(1656)] = 38657, - [SMALL_STATE(1657)] = 38737, - [SMALL_STATE(1658)] = 38793, - [SMALL_STATE(1659)] = 38885, - [SMALL_STATE(1660)] = 38939, - [SMALL_STATE(1661)] = 38995, - [SMALL_STATE(1662)] = 39049, - [SMALL_STATE(1663)] = 39105, - [SMALL_STATE(1664)] = 39177, - [SMALL_STATE(1665)] = 39269, - [SMALL_STATE(1666)] = 39355, - [SMALL_STATE(1667)] = 39411, - [SMALL_STATE(1668)] = 39489, - [SMALL_STATE(1669)] = 39557, - [SMALL_STATE(1670)] = 39613, - [SMALL_STATE(1671)] = 39679, - [SMALL_STATE(1672)] = 39735, - [SMALL_STATE(1673)] = 39823, - [SMALL_STATE(1674)] = 39879, - [SMALL_STATE(1675)] = 39971, - [SMALL_STATE(1676)] = 40059, - [SMALL_STATE(1677)] = 40115, - [SMALL_STATE(1678)] = 40203, - [SMALL_STATE(1679)] = 40291, - [SMALL_STATE(1680)] = 40347, - [SMALL_STATE(1681)] = 40433, - [SMALL_STATE(1682)] = 40525, - [SMALL_STATE(1683)] = 40589, - [SMALL_STATE(1684)] = 40643, - [SMALL_STATE(1685)] = 40729, - [SMALL_STATE(1686)] = 40783, - [SMALL_STATE(1687)] = 40837, - [SMALL_STATE(1688)] = 40911, - [SMALL_STATE(1689)] = 40999, - [SMALL_STATE(1690)] = 41055, - [SMALL_STATE(1691)] = 41109, - [SMALL_STATE(1692)] = 41163, - [SMALL_STATE(1693)] = 41217, - [SMALL_STATE(1694)] = 41287, - [SMALL_STATE(1695)] = 41341, - [SMALL_STATE(1696)] = 41397, - [SMALL_STATE(1697)] = 41453, - [SMALL_STATE(1698)] = 41509, - [SMALL_STATE(1699)] = 41565, - [SMALL_STATE(1700)] = 41647, - [SMALL_STATE(1701)] = 41727, - [SMALL_STATE(1702)] = 41816, - [SMALL_STATE(1703)] = 41869, - [SMALL_STATE(1704)] = 41922, - [SMALL_STATE(1705)] = 41975, - [SMALL_STATE(1706)] = 42062, - [SMALL_STATE(1707)] = 42115, - [SMALL_STATE(1708)] = 42202, - [SMALL_STATE(1709)] = 42289, - [SMALL_STATE(1710)] = 42342, - [SMALL_STATE(1711)] = 42395, - [SMALL_STATE(1712)] = 42448, - [SMALL_STATE(1713)] = 42501, - [SMALL_STATE(1714)] = 42554, - [SMALL_STATE(1715)] = 42607, - [SMALL_STATE(1716)] = 42660, - [SMALL_STATE(1717)] = 42713, - [SMALL_STATE(1718)] = 42766, - [SMALL_STATE(1719)] = 42819, - [SMALL_STATE(1720)] = 42878, - [SMALL_STATE(1721)] = 42931, - [SMALL_STATE(1722)] = 42984, - [SMALL_STATE(1723)] = 43043, - [SMALL_STATE(1724)] = 43128, - [SMALL_STATE(1725)] = 43215, - [SMALL_STATE(1726)] = 43276, - [SMALL_STATE(1727)] = 43363, - [SMALL_STATE(1728)] = 43426, - [SMALL_STATE(1729)] = 43495, - [SMALL_STATE(1730)] = 43562, - [SMALL_STATE(1731)] = 43633, - [SMALL_STATE(1732)] = 43710, - [SMALL_STATE(1733)] = 43789, - [SMALL_STATE(1734)] = 43854, - [SMALL_STATE(1735)] = 43939, - [SMALL_STATE(1736)] = 44024, - [SMALL_STATE(1737)] = 44097, - [SMALL_STATE(1738)] = 44178, - [SMALL_STATE(1739)] = 44267, - [SMALL_STATE(1740)] = 44356, - [SMALL_STATE(1741)] = 44409, - [SMALL_STATE(1742)] = 44462, - [SMALL_STATE(1743)] = 44543, - [SMALL_STATE(1744)] = 44596, - [SMALL_STATE(1745)] = 44685, - [SMALL_STATE(1746)] = 44738, - [SMALL_STATE(1747)] = 44791, - [SMALL_STATE(1748)] = 44844, - [SMALL_STATE(1749)] = 44931, - [SMALL_STATE(1750)] = 44984, - [SMALL_STATE(1751)] = 45069, - [SMALL_STATE(1752)] = 45122, - [SMALL_STATE(1753)] = 45175, - [SMALL_STATE(1754)] = 45228, - [SMALL_STATE(1755)] = 45281, - [SMALL_STATE(1756)] = 45334, - [SMALL_STATE(1757)] = 45387, - [SMALL_STATE(1758)] = 45440, - [SMALL_STATE(1759)] = 45493, - [SMALL_STATE(1760)] = 45580, - [SMALL_STATE(1761)] = 45633, - [SMALL_STATE(1762)] = 45686, - [SMALL_STATE(1763)] = 45739, - [SMALL_STATE(1764)] = 45824, - [SMALL_STATE(1765)] = 45883, - [SMALL_STATE(1766)] = 45936, - [SMALL_STATE(1767)] = 45989, - [SMALL_STATE(1768)] = 46042, - [SMALL_STATE(1769)] = 46095, - [SMALL_STATE(1770)] = 46148, - [SMALL_STATE(1771)] = 46201, - [SMALL_STATE(1772)] = 46254, - [SMALL_STATE(1773)] = 46343, - [SMALL_STATE(1774)] = 46396, - [SMALL_STATE(1775)] = 46449, - [SMALL_STATE(1776)] = 46502, - [SMALL_STATE(1777)] = 46587, - [SMALL_STATE(1778)] = 46640, - [SMALL_STATE(1779)] = 46693, - [SMALL_STATE(1780)] = 46746, - [SMALL_STATE(1781)] = 46799, - [SMALL_STATE(1782)] = 46852, - [SMALL_STATE(1783)] = 46905, - [SMALL_STATE(1784)] = 46990, - [SMALL_STATE(1785)] = 47077, - [SMALL_STATE(1786)] = 47166, - [SMALL_STATE(1787)] = 47219, - [SMALL_STATE(1788)] = 47272, - [SMALL_STATE(1789)] = 47357, - [SMALL_STATE(1790)] = 47410, - [SMALL_STATE(1791)] = 47463, - [SMALL_STATE(1792)] = 47516, - [SMALL_STATE(1793)] = 47603, - [SMALL_STATE(1794)] = 47656, - [SMALL_STATE(1795)] = 47719, - [SMALL_STATE(1796)] = 47788, - [SMALL_STATE(1797)] = 47855, - [SMALL_STATE(1798)] = 47926, - [SMALL_STATE(1799)] = 48003, - [SMALL_STATE(1800)] = 48082, - [SMALL_STATE(1801)] = 48147, - [SMALL_STATE(1802)] = 48232, - [SMALL_STATE(1803)] = 48317, - [SMALL_STATE(1804)] = 48390, - [SMALL_STATE(1805)] = 48471, - [SMALL_STATE(1806)] = 48524, - [SMALL_STATE(1807)] = 48577, - [SMALL_STATE(1808)] = 48630, - [SMALL_STATE(1809)] = 48683, - [SMALL_STATE(1810)] = 48770, - [SMALL_STATE(1811)] = 48823, - [SMALL_STATE(1812)] = 48876, - [SMALL_STATE(1813)] = 48929, - [SMALL_STATE(1814)] = 48982, - [SMALL_STATE(1815)] = 49035, - [SMALL_STATE(1816)] = 49088, - [SMALL_STATE(1817)] = 49141, - [SMALL_STATE(1818)] = 49194, - [SMALL_STATE(1819)] = 49247, - [SMALL_STATE(1820)] = 49300, - [SMALL_STATE(1821)] = 49353, - [SMALL_STATE(1822)] = 49406, - [SMALL_STATE(1823)] = 49459, - [SMALL_STATE(1824)] = 49512, - [SMALL_STATE(1825)] = 49599, - [SMALL_STATE(1826)] = 49652, - [SMALL_STATE(1827)] = 49705, - [SMALL_STATE(1828)] = 49794, - [SMALL_STATE(1829)] = 49881, - [SMALL_STATE(1830)] = 49934, - [SMALL_STATE(1831)] = 49987, - [SMALL_STATE(1832)] = 50074, - [SMALL_STATE(1833)] = 50127, - [SMALL_STATE(1834)] = 50180, - [SMALL_STATE(1835)] = 50233, - [SMALL_STATE(1836)] = 50286, - [SMALL_STATE(1837)] = 50339, - [SMALL_STATE(1838)] = 50392, - [SMALL_STATE(1839)] = 50445, - [SMALL_STATE(1840)] = 50498, - [SMALL_STATE(1841)] = 50551, - [SMALL_STATE(1842)] = 50604, - [SMALL_STATE(1843)] = 50657, - [SMALL_STATE(1844)] = 50746, - [SMALL_STATE(1845)] = 50799, - [SMALL_STATE(1846)] = 50888, - [SMALL_STATE(1847)] = 50941, - [SMALL_STATE(1848)] = 50994, - [SMALL_STATE(1849)] = 51081, - [SMALL_STATE(1850)] = 51170, - [SMALL_STATE(1851)] = 51229, - [SMALL_STATE(1852)] = 51316, - [SMALL_STATE(1853)] = 51405, - [SMALL_STATE(1854)] = 51494, - [SMALL_STATE(1855)] = 51571, - [SMALL_STATE(1856)] = 51658, - [SMALL_STATE(1857)] = 51711, - [SMALL_STATE(1858)] = 51800, - [SMALL_STATE(1859)] = 51853, - [SMALL_STATE(1860)] = 51942, - [SMALL_STATE(1861)] = 52031, - [SMALL_STATE(1862)] = 52120, - [SMALL_STATE(1863)] = 52209, - [SMALL_STATE(1864)] = 52298, - [SMALL_STATE(1865)] = 52387, - [SMALL_STATE(1866)] = 52476, - [SMALL_STATE(1867)] = 52565, - [SMALL_STATE(1868)] = 52654, - [SMALL_STATE(1869)] = 52735, - [SMALL_STATE(1870)] = 52820, - [SMALL_STATE(1871)] = 52909, - [SMALL_STATE(1872)] = 52994, - [SMALL_STATE(1873)] = 53079, - [SMALL_STATE(1874)] = 53168, - [SMALL_STATE(1875)] = 53257, - [SMALL_STATE(1876)] = 53346, - [SMALL_STATE(1877)] = 53423, - [SMALL_STATE(1878)] = 53512, - [SMALL_STATE(1879)] = 53601, - [SMALL_STATE(1880)] = 53690, - [SMALL_STATE(1881)] = 53779, - [SMALL_STATE(1882)] = 53868, - [SMALL_STATE(1883)] = 53921, - [SMALL_STATE(1884)] = 54010, - [SMALL_STATE(1885)] = 54099, - [SMALL_STATE(1886)] = 54188, - [SMALL_STATE(1887)] = 54241, - [SMALL_STATE(1888)] = 54330, - [SMALL_STATE(1889)] = 54419, - [SMALL_STATE(1890)] = 54508, - [SMALL_STATE(1891)] = 54597, - [SMALL_STATE(1892)] = 54686, - [SMALL_STATE(1893)] = 54775, - [SMALL_STATE(1894)] = 54864, - [SMALL_STATE(1895)] = 54953, - [SMALL_STATE(1896)] = 55042, - [SMALL_STATE(1897)] = 55131, - [SMALL_STATE(1898)] = 55220, - [SMALL_STATE(1899)] = 55309, - [SMALL_STATE(1900)] = 55396, - [SMALL_STATE(1901)] = 55483, - [SMALL_STATE(1902)] = 55570, - [SMALL_STATE(1903)] = 55623, - [SMALL_STATE(1904)] = 55676, - [SMALL_STATE(1905)] = 55729, - [SMALL_STATE(1906)] = 55782, - [SMALL_STATE(1907)] = 55835, - [SMALL_STATE(1908)] = 55920, - [SMALL_STATE(1909)] = 55973, - [SMALL_STATE(1910)] = 56026, - [SMALL_STATE(1911)] = 56115, - [SMALL_STATE(1912)] = 56168, - [SMALL_STATE(1913)] = 56257, - [SMALL_STATE(1914)] = 56310, - [SMALL_STATE(1915)] = 56399, - [SMALL_STATE(1916)] = 56488, - [SMALL_STATE(1917)] = 56541, - [SMALL_STATE(1918)] = 56627, - [SMALL_STATE(1919)] = 56713, - [SMALL_STATE(1920)] = 56787, - [SMALL_STATE(1921)] = 56873, - [SMALL_STATE(1922)] = 56959, - [SMALL_STATE(1923)] = 57045, - [SMALL_STATE(1924)] = 57129, - [SMALL_STATE(1925)] = 57215, - [SMALL_STATE(1926)] = 57301, - [SMALL_STATE(1927)] = 57387, - [SMALL_STATE(1928)] = 57473, - [SMALL_STATE(1929)] = 57559, - [SMALL_STATE(1930)] = 57645, - [SMALL_STATE(1931)] = 57719, - [SMALL_STATE(1932)] = 57805, - [SMALL_STATE(1933)] = 57891, - [SMALL_STATE(1934)] = 57977, - [SMALL_STATE(1935)] = 58061, - [SMALL_STATE(1936)] = 58147, - [SMALL_STATE(1937)] = 58221, - [SMALL_STATE(1938)] = 58307, - [SMALL_STATE(1939)] = 58393, - [SMALL_STATE(1940)] = 58479, - [SMALL_STATE(1941)] = 58565, - [SMALL_STATE(1942)] = 58651, - [SMALL_STATE(1943)] = 58737, - [SMALL_STATE(1944)] = 58823, - [SMALL_STATE(1945)] = 58909, - [SMALL_STATE(1946)] = 58995, - [SMALL_STATE(1947)] = 59081, - [SMALL_STATE(1948)] = 59167, - [SMALL_STATE(1949)] = 59253, - [SMALL_STATE(1950)] = 59327, - [SMALL_STATE(1951)] = 59413, - [SMALL_STATE(1952)] = 59499, - [SMALL_STATE(1953)] = 59585, - [SMALL_STATE(1954)] = 59659, - [SMALL_STATE(1955)] = 59734, - [SMALL_STATE(1956)] = 59809, - [SMALL_STATE(1957)] = 59884, - [SMALL_STATE(1958)] = 59959, - [SMALL_STATE(1959)] = 60034, - [SMALL_STATE(1960)] = 60109, - [SMALL_STATE(1961)] = 60184, - [SMALL_STATE(1962)] = 60259, - [SMALL_STATE(1963)] = 60306, - [SMALL_STATE(1964)] = 60353, - [SMALL_STATE(1965)] = 60400, - [SMALL_STATE(1966)] = 60462, - [SMALL_STATE(1967)] = 60524, - [SMALL_STATE(1968)] = 60586, - [SMALL_STATE(1969)] = 60648, - [SMALL_STATE(1970)] = 60710, - [SMALL_STATE(1971)] = 60772, - [SMALL_STATE(1972)] = 60834, - [SMALL_STATE(1973)] = 60896, - [SMALL_STATE(1974)] = 60958, - [SMALL_STATE(1975)] = 61017, - [SMALL_STATE(1976)] = 61076, - [SMALL_STATE(1977)] = 61112, - [SMALL_STATE(1978)] = 61148, - [SMALL_STATE(1979)] = 61185, - [SMALL_STATE(1980)] = 61222, - [SMALL_STATE(1981)] = 61259, - [SMALL_STATE(1982)] = 61296, - [SMALL_STATE(1983)] = 61349, - [SMALL_STATE(1984)] = 61393, - [SMALL_STATE(1985)] = 61427, - [SMALL_STATE(1986)] = 61461, - [SMALL_STATE(1987)] = 61495, - [SMALL_STATE(1988)] = 61531, - [SMALL_STATE(1989)] = 61567, - [SMALL_STATE(1990)] = 61603, - [SMALL_STATE(1991)] = 61639, - [SMALL_STATE(1992)] = 61683, - [SMALL_STATE(1993)] = 61717, - [SMALL_STATE(1994)] = 61761, - [SMALL_STATE(1995)] = 61812, - [SMALL_STATE(1996)] = 61845, - [SMALL_STATE(1997)] = 61878, - [SMALL_STATE(1998)] = 61911, - [SMALL_STATE(1999)] = 61942, - [SMALL_STATE(2000)] = 61983, - [SMALL_STATE(2001)] = 62016, - [SMALL_STATE(2002)] = 62060, - [SMALL_STATE(2003)] = 62120, - [SMALL_STATE(2004)] = 62152, - [SMALL_STATE(2005)] = 62198, - [SMALL_STATE(2006)] = 62258, - [SMALL_STATE(2007)] = 62290, - [SMALL_STATE(2008)] = 62328, - [SMALL_STATE(2009)] = 62360, - [SMALL_STATE(2010)] = 62398, - [SMALL_STATE(2011)] = 62436, - [SMALL_STATE(2012)] = 62474, - [SMALL_STATE(2013)] = 62503, - [SMALL_STATE(2014)] = 62534, - [SMALL_STATE(2015)] = 62589, - [SMALL_STATE(2016)] = 62622, - [SMALL_STATE(2017)] = 62651, - [SMALL_STATE(2018)] = 62704, - [SMALL_STATE(2019)] = 62733, - [SMALL_STATE(2020)] = 62766, - [SMALL_STATE(2021)] = 62795, - [SMALL_STATE(2022)] = 62828, - [SMALL_STATE(2023)] = 62857, - [SMALL_STATE(2024)] = 62886, - [SMALL_STATE(2025)] = 62919, - [SMALL_STATE(2026)] = 62948, - [SMALL_STATE(2027)] = 62981, - [SMALL_STATE(2028)] = 63010, - [SMALL_STATE(2029)] = 63053, - [SMALL_STATE(2030)] = 63106, - [SMALL_STATE(2031)] = 63135, - [SMALL_STATE(2032)] = 63168, - [SMALL_STATE(2033)] = 63209, - [SMALL_STATE(2034)] = 63237, - [SMALL_STATE(2035)] = 63265, - [SMALL_STATE(2036)] = 63293, - [SMALL_STATE(2037)] = 63321, - [SMALL_STATE(2038)] = 63349, - [SMALL_STATE(2039)] = 63377, - [SMALL_STATE(2040)] = 63405, - [SMALL_STATE(2041)] = 63433, - [SMALL_STATE(2042)] = 63463, - [SMALL_STATE(2043)] = 63491, - [SMALL_STATE(2044)] = 63519, - [SMALL_STATE(2045)] = 63547, - [SMALL_STATE(2046)] = 63575, - [SMALL_STATE(2047)] = 63603, - [SMALL_STATE(2048)] = 63631, - [SMALL_STATE(2049)] = 63659, - [SMALL_STATE(2050)] = 63703, - [SMALL_STATE(2051)] = 63731, - [SMALL_STATE(2052)] = 63759, - [SMALL_STATE(2053)] = 63787, - [SMALL_STATE(2054)] = 63815, - [SMALL_STATE(2055)] = 63843, - [SMALL_STATE(2056)] = 63873, - [SMALL_STATE(2057)] = 63901, - [SMALL_STATE(2058)] = 63929, - [SMALL_STATE(2059)] = 63957, - [SMALL_STATE(2060)] = 63985, - [SMALL_STATE(2061)] = 64013, - [SMALL_STATE(2062)] = 64041, - [SMALL_STATE(2063)] = 64069, - [SMALL_STATE(2064)] = 64097, - [SMALL_STATE(2065)] = 64125, - [SMALL_STATE(2066)] = 64153, - [SMALL_STATE(2067)] = 64181, - [SMALL_STATE(2068)] = 64209, - [SMALL_STATE(2069)] = 64237, - [SMALL_STATE(2070)] = 64265, - [SMALL_STATE(2071)] = 64293, - [SMALL_STATE(2072)] = 64322, - [SMALL_STATE(2073)] = 64351, - [SMALL_STATE(2074)] = 64382, - [SMALL_STATE(2075)] = 64411, - [SMALL_STATE(2076)] = 64440, - [SMALL_STATE(2077)] = 64469, - [SMALL_STATE(2078)] = 64498, - [SMALL_STATE(2079)] = 64533, - [SMALL_STATE(2080)] = 64562, - [SMALL_STATE(2081)] = 64591, - [SMALL_STATE(2082)] = 64620, - [SMALL_STATE(2083)] = 64649, - [SMALL_STATE(2084)] = 64681, - [SMALL_STATE(2085)] = 64727, - [SMALL_STATE(2086)] = 64759, - [SMALL_STATE(2087)] = 64791, - [SMALL_STATE(2088)] = 64821, - [SMALL_STATE(2089)] = 64853, - [SMALL_STATE(2090)] = 64885, - [SMALL_STATE(2091)] = 64917, - [SMALL_STATE(2092)] = 64949, - [SMALL_STATE(2093)] = 64981, - [SMALL_STATE(2094)] = 65013, - [SMALL_STATE(2095)] = 65045, - [SMALL_STATE(2096)] = 65077, - [SMALL_STATE(2097)] = 65105, - [SMALL_STATE(2098)] = 65149, - [SMALL_STATE(2099)] = 65181, - [SMALL_STATE(2100)] = 65210, - [SMALL_STATE(2101)] = 65253, - [SMALL_STATE(2102)] = 65290, - [SMALL_STATE(2103)] = 65319, - [SMALL_STATE(2104)] = 65362, - [SMALL_STATE(2105)] = 65405, - [SMALL_STATE(2106)] = 65448, - [SMALL_STATE(2107)] = 65491, - [SMALL_STATE(2108)] = 65534, - [SMALL_STATE(2109)] = 65562, - [SMALL_STATE(2110)] = 65590, - [SMALL_STATE(2111)] = 65614, - [SMALL_STATE(2112)] = 65648, - [SMALL_STATE(2113)] = 65676, - [SMALL_STATE(2114)] = 65716, - [SMALL_STATE(2115)] = 65756, - [SMALL_STATE(2116)] = 65794, - [SMALL_STATE(2117)] = 65822, - [SMALL_STATE(2118)] = 65862, - [SMALL_STATE(2119)] = 65900, - [SMALL_STATE(2120)] = 65940, - [SMALL_STATE(2121)] = 65978, - [SMALL_STATE(2122)] = 66018, - [SMALL_STATE(2123)] = 66058, - [SMALL_STATE(2124)] = 66082, - [SMALL_STATE(2125)] = 66110, - [SMALL_STATE(2126)] = 66148, - [SMALL_STATE(2127)] = 66176, - [SMALL_STATE(2128)] = 66204, - [SMALL_STATE(2129)] = 66242, - [SMALL_STATE(2130)] = 66282, - [SMALL_STATE(2131)] = 66322, - [SMALL_STATE(2132)] = 66350, - [SMALL_STATE(2133)] = 66378, - [SMALL_STATE(2134)] = 66402, - [SMALL_STATE(2135)] = 66436, - [SMALL_STATE(2136)] = 66474, - [SMALL_STATE(2137)] = 66502, - [SMALL_STATE(2138)] = 66530, - [SMALL_STATE(2139)] = 66570, - [SMALL_STATE(2140)] = 66598, - [SMALL_STATE(2141)] = 66622, - [SMALL_STATE(2142)] = 66652, - [SMALL_STATE(2143)] = 66682, - [SMALL_STATE(2144)] = 66720, - [SMALL_STATE(2145)] = 66750, - [SMALL_STATE(2146)] = 66778, - [SMALL_STATE(2147)] = 66806, - [SMALL_STATE(2148)] = 66836, - [SMALL_STATE(2149)] = 66874, - [SMALL_STATE(2150)] = 66912, - [SMALL_STATE(2151)] = 66950, - [SMALL_STATE(2152)] = 66978, - [SMALL_STATE(2153)] = 67002, - [SMALL_STATE(2154)] = 67040, - [SMALL_STATE(2155)] = 67078, - [SMALL_STATE(2156)] = 67118, - [SMALL_STATE(2157)] = 67146, - [SMALL_STATE(2158)] = 67169, - [SMALL_STATE(2159)] = 67210, - [SMALL_STATE(2160)] = 67233, - [SMALL_STATE(2161)] = 67274, - [SMALL_STATE(2162)] = 67297, - [SMALL_STATE(2163)] = 67338, - [SMALL_STATE(2164)] = 67361, - [SMALL_STATE(2165)] = 67398, - [SMALL_STATE(2166)] = 67421, - [SMALL_STATE(2167)] = 67458, - [SMALL_STATE(2168)] = 67481, - [SMALL_STATE(2169)] = 67518, - [SMALL_STATE(2170)] = 67541, - [SMALL_STATE(2171)] = 67564, - [SMALL_STATE(2172)] = 67587, - [SMALL_STATE(2173)] = 67618, - [SMALL_STATE(2174)] = 67641, - [SMALL_STATE(2175)] = 67664, - [SMALL_STATE(2176)] = 67687, - [SMALL_STATE(2177)] = 67710, - [SMALL_STATE(2178)] = 67733, - [SMALL_STATE(2179)] = 67756, - [SMALL_STATE(2180)] = 67779, - [SMALL_STATE(2181)] = 67802, - [SMALL_STATE(2182)] = 67825, - [SMALL_STATE(2183)] = 67848, - [SMALL_STATE(2184)] = 67871, - [SMALL_STATE(2185)] = 67894, - [SMALL_STATE(2186)] = 67927, - [SMALL_STATE(2187)] = 67962, - [SMALL_STATE(2188)] = 67985, - [SMALL_STATE(2189)] = 68008, - [SMALL_STATE(2190)] = 68031, - [SMALL_STATE(2191)] = 68054, - [SMALL_STATE(2192)] = 68077, - [SMALL_STATE(2193)] = 68108, - [SMALL_STATE(2194)] = 68143, - [SMALL_STATE(2195)] = 68166, - [SMALL_STATE(2196)] = 68207, - [SMALL_STATE(2197)] = 68230, - [SMALL_STATE(2198)] = 68261, - [SMALL_STATE(2199)] = 68292, - [SMALL_STATE(2200)] = 68315, - [SMALL_STATE(2201)] = 68350, - [SMALL_STATE(2202)] = 68387, - [SMALL_STATE(2203)] = 68422, - [SMALL_STATE(2204)] = 68453, - [SMALL_STATE(2205)] = 68476, - [SMALL_STATE(2206)] = 68499, - [SMALL_STATE(2207)] = 68522, - [SMALL_STATE(2208)] = 68545, - [SMALL_STATE(2209)] = 68568, - [SMALL_STATE(2210)] = 68591, - [SMALL_STATE(2211)] = 68622, - [SMALL_STATE(2212)] = 68645, - [SMALL_STATE(2213)] = 68681, - [SMALL_STATE(2214)] = 68719, - [SMALL_STATE(2215)] = 68757, - [SMALL_STATE(2216)] = 68795, - [SMALL_STATE(2217)] = 68825, - [SMALL_STATE(2218)] = 68863, - [SMALL_STATE(2219)] = 68887, - [SMALL_STATE(2220)] = 68911, - [SMALL_STATE(2221)] = 68939, - [SMALL_STATE(2222)] = 68977, - [SMALL_STATE(2223)] = 69001, - [SMALL_STATE(2224)] = 69029, - [SMALL_STATE(2225)] = 69061, - [SMALL_STATE(2226)] = 69095, - [SMALL_STATE(2227)] = 69127, - [SMALL_STATE(2228)] = 69159, - [SMALL_STATE(2229)] = 69191, - [SMALL_STATE(2230)] = 69221, - [SMALL_STATE(2231)] = 69255, - [SMALL_STATE(2232)] = 69283, - [SMALL_STATE(2233)] = 69315, - [SMALL_STATE(2234)] = 69339, - [SMALL_STATE(2235)] = 69377, - [SMALL_STATE(2236)] = 69407, - [SMALL_STATE(2237)] = 69439, - [SMALL_STATE(2238)] = 69469, - [SMALL_STATE(2239)] = 69507, - [SMALL_STATE(2240)] = 69539, - [SMALL_STATE(2241)] = 69565, - [SMALL_STATE(2242)] = 69603, - [SMALL_STATE(2243)] = 69629, - [SMALL_STATE(2244)] = 69667, - [SMALL_STATE(2245)] = 69705, - [SMALL_STATE(2246)] = 69743, - [SMALL_STATE(2247)] = 69771, - [SMALL_STATE(2248)] = 69809, - [SMALL_STATE(2249)] = 69835, - [SMALL_STATE(2250)] = 69867, - [SMALL_STATE(2251)] = 69895, - [SMALL_STATE(2252)] = 69927, - [SMALL_STATE(2253)] = 69965, - [SMALL_STATE(2254)] = 69997, - [SMALL_STATE(2255)] = 70029, - [SMALL_STATE(2256)] = 70067, - [SMALL_STATE(2257)] = 70099, - [SMALL_STATE(2258)] = 70137, - [SMALL_STATE(2259)] = 70175, - [SMALL_STATE(2260)] = 70203, - [SMALL_STATE(2261)] = 70227, - [SMALL_STATE(2262)] = 70255, - [SMALL_STATE(2263)] = 70287, - [SMALL_STATE(2264)] = 70322, - [SMALL_STATE(2265)] = 70357, - [SMALL_STATE(2266)] = 70384, - [SMALL_STATE(2267)] = 70419, - [SMALL_STATE(2268)] = 70454, - [SMALL_STATE(2269)] = 70489, - [SMALL_STATE(2270)] = 70524, - [SMALL_STATE(2271)] = 70545, - [SMALL_STATE(2272)] = 70580, - [SMALL_STATE(2273)] = 70615, - [SMALL_STATE(2274)] = 70650, - [SMALL_STATE(2275)] = 70685, - [SMALL_STATE(2276)] = 70720, - [SMALL_STATE(2277)] = 70741, - [SMALL_STATE(2278)] = 70776, - [SMALL_STATE(2279)] = 70805, - [SMALL_STATE(2280)] = 70830, - [SMALL_STATE(2281)] = 70865, - [SMALL_STATE(2282)] = 70900, - [SMALL_STATE(2283)] = 70935, - [SMALL_STATE(2284)] = 70970, - [SMALL_STATE(2285)] = 71005, - [SMALL_STATE(2286)] = 71040, - [SMALL_STATE(2287)] = 71075, - [SMALL_STATE(2288)] = 71096, - [SMALL_STATE(2289)] = 71121, - [SMALL_STATE(2290)] = 71154, - [SMALL_STATE(2291)] = 71189, - [SMALL_STATE(2292)] = 71222, - [SMALL_STATE(2293)] = 71257, - [SMALL_STATE(2294)] = 71290, - [SMALL_STATE(2295)] = 71325, - [SMALL_STATE(2296)] = 71360, - [SMALL_STATE(2297)] = 71395, - [SMALL_STATE(2298)] = 71430, - [SMALL_STATE(2299)] = 71463, - [SMALL_STATE(2300)] = 71498, - [SMALL_STATE(2301)] = 71533, - [SMALL_STATE(2302)] = 71568, - [SMALL_STATE(2303)] = 71603, - [SMALL_STATE(2304)] = 71638, - [SMALL_STATE(2305)] = 71673, - [SMALL_STATE(2306)] = 71708, - [SMALL_STATE(2307)] = 71743, - [SMALL_STATE(2308)] = 71778, - [SMALL_STATE(2309)] = 71813, - [SMALL_STATE(2310)] = 71846, - [SMALL_STATE(2311)] = 71881, - [SMALL_STATE(2312)] = 71916, - [SMALL_STATE(2313)] = 71951, - [SMALL_STATE(2314)] = 71972, - [SMALL_STATE(2315)] = 72007, - [SMALL_STATE(2316)] = 72042, - [SMALL_STATE(2317)] = 72067, - [SMALL_STATE(2318)] = 72097, - [SMALL_STATE(2319)] = 72129, - [SMALL_STATE(2320)] = 72161, - [SMALL_STATE(2321)] = 72193, - [SMALL_STATE(2322)] = 72225, - [SMALL_STATE(2323)] = 72257, - [SMALL_STATE(2324)] = 72289, - [SMALL_STATE(2325)] = 72315, - [SMALL_STATE(2326)] = 72343, - [SMALL_STATE(2327)] = 72375, - [SMALL_STATE(2328)] = 72407, - [SMALL_STATE(2329)] = 72437, - [SMALL_STATE(2330)] = 72469, - [SMALL_STATE(2331)] = 72491, - [SMALL_STATE(2332)] = 72523, - [SMALL_STATE(2333)] = 72555, - [SMALL_STATE(2334)] = 72587, - [SMALL_STATE(2335)] = 72619, - [SMALL_STATE(2336)] = 72651, - [SMALL_STATE(2337)] = 72681, - [SMALL_STATE(2338)] = 72713, - [SMALL_STATE(2339)] = 72743, - [SMALL_STATE(2340)] = 72765, - [SMALL_STATE(2341)] = 72795, - [SMALL_STATE(2342)] = 72821, - [SMALL_STATE(2343)] = 72843, - [SMALL_STATE(2344)] = 72869, - [SMALL_STATE(2345)] = 72897, - [SMALL_STATE(2346)] = 72929, - [SMALL_STATE(2347)] = 72961, - [SMALL_STATE(2348)] = 72993, - [SMALL_STATE(2349)] = 73025, - [SMALL_STATE(2350)] = 73055, - [SMALL_STATE(2351)] = 73087, - [SMALL_STATE(2352)] = 73109, - [SMALL_STATE(2353)] = 73141, - [SMALL_STATE(2354)] = 73169, - [SMALL_STATE(2355)] = 73195, - [SMALL_STATE(2356)] = 73223, - [SMALL_STATE(2357)] = 73255, - [SMALL_STATE(2358)] = 73287, - [SMALL_STATE(2359)] = 73319, - [SMALL_STATE(2360)] = 73351, - [SMALL_STATE(2361)] = 73383, - [SMALL_STATE(2362)] = 73413, - [SMALL_STATE(2363)] = 73443, - [SMALL_STATE(2364)] = 73473, - [SMALL_STATE(2365)] = 73503, - [SMALL_STATE(2366)] = 73525, - [SMALL_STATE(2367)] = 73557, - [SMALL_STATE(2368)] = 73579, - [SMALL_STATE(2369)] = 73611, - [SMALL_STATE(2370)] = 73643, - [SMALL_STATE(2371)] = 73671, - [SMALL_STATE(2372)] = 73703, - [SMALL_STATE(2373)] = 73735, - [SMALL_STATE(2374)] = 73767, - [SMALL_STATE(2375)] = 73799, - [SMALL_STATE(2376)] = 73828, - [SMALL_STATE(2377)] = 73857, - [SMALL_STATE(2378)] = 73886, - [SMALL_STATE(2379)] = 73915, - [SMALL_STATE(2380)] = 73936, - [SMALL_STATE(2381)] = 73965, - [SMALL_STATE(2382)] = 73986, - [SMALL_STATE(2383)] = 74015, - [SMALL_STATE(2384)] = 74042, - [SMALL_STATE(2385)] = 74063, - [SMALL_STATE(2386)] = 74092, - [SMALL_STATE(2387)] = 74113, - [SMALL_STATE(2388)] = 74142, - [SMALL_STATE(2389)] = 74165, - [SMALL_STATE(2390)] = 74190, - [SMALL_STATE(2391)] = 74211, - [SMALL_STATE(2392)] = 74240, - [SMALL_STATE(2393)] = 74269, - [SMALL_STATE(2394)] = 74292, - [SMALL_STATE(2395)] = 74315, - [SMALL_STATE(2396)] = 74338, - [SMALL_STATE(2397)] = 74367, - [SMALL_STATE(2398)] = 74388, - [SMALL_STATE(2399)] = 74415, - [SMALL_STATE(2400)] = 74444, - [SMALL_STATE(2401)] = 74467, - [SMALL_STATE(2402)] = 74496, - [SMALL_STATE(2403)] = 74525, - [SMALL_STATE(2404)] = 74548, - [SMALL_STATE(2405)] = 74573, - [SMALL_STATE(2406)] = 74596, - [SMALL_STATE(2407)] = 74625, - [SMALL_STATE(2408)] = 74654, - [SMALL_STATE(2409)] = 74681, - [SMALL_STATE(2410)] = 74710, - [SMALL_STATE(2411)] = 74739, - [SMALL_STATE(2412)] = 74768, - [SMALL_STATE(2413)] = 74797, - [SMALL_STATE(2414)] = 74826, - [SMALL_STATE(2415)] = 74855, - [SMALL_STATE(2416)] = 74876, - [SMALL_STATE(2417)] = 74905, - [SMALL_STATE(2418)] = 74934, - [SMALL_STATE(2419)] = 74957, - [SMALL_STATE(2420)] = 74986, - [SMALL_STATE(2421)] = 75015, - [SMALL_STATE(2422)] = 75044, - [SMALL_STATE(2423)] = 75073, - [SMALL_STATE(2424)] = 75102, - [SMALL_STATE(2425)] = 75131, - [SMALL_STATE(2426)] = 75154, - [SMALL_STATE(2427)] = 75181, - [SMALL_STATE(2428)] = 75210, - [SMALL_STATE(2429)] = 75239, - [SMALL_STATE(2430)] = 75264, - [SMALL_STATE(2431)] = 75285, - [SMALL_STATE(2432)] = 75314, - [SMALL_STATE(2433)] = 75343, - [SMALL_STATE(2434)] = 75364, - [SMALL_STATE(2435)] = 75393, - [SMALL_STATE(2436)] = 75416, - [SMALL_STATE(2437)] = 75445, - [SMALL_STATE(2438)] = 75474, - [SMALL_STATE(2439)] = 75503, - [SMALL_STATE(2440)] = 75526, - [SMALL_STATE(2441)] = 75553, - [SMALL_STATE(2442)] = 75574, - [SMALL_STATE(2443)] = 75603, - [SMALL_STATE(2444)] = 75632, - [SMALL_STATE(2445)] = 75661, - [SMALL_STATE(2446)] = 75690, - [SMALL_STATE(2447)] = 75711, - [SMALL_STATE(2448)] = 75734, - [SMALL_STATE(2449)] = 75757, - [SMALL_STATE(2450)] = 75778, - [SMALL_STATE(2451)] = 75801, - [SMALL_STATE(2452)] = 75830, - [SMALL_STATE(2453)] = 75853, - [SMALL_STATE(2454)] = 75882, - [SMALL_STATE(2455)] = 75911, - [SMALL_STATE(2456)] = 75940, - [SMALL_STATE(2457)] = 75963, - [SMALL_STATE(2458)] = 75992, - [SMALL_STATE(2459)] = 76021, - [SMALL_STATE(2460)] = 76040, - [SMALL_STATE(2461)] = 76069, - [SMALL_STATE(2462)] = 76098, - [SMALL_STATE(2463)] = 76119, - [SMALL_STATE(2464)] = 76144, - [SMALL_STATE(2465)] = 76171, - [SMALL_STATE(2466)] = 76192, - [SMALL_STATE(2467)] = 76221, - [SMALL_STATE(2468)] = 76250, - [SMALL_STATE(2469)] = 76271, - [SMALL_STATE(2470)] = 76290, - [SMALL_STATE(2471)] = 76311, - [SMALL_STATE(2472)] = 76340, - [SMALL_STATE(2473)] = 76369, - [SMALL_STATE(2474)] = 76398, - [SMALL_STATE(2475)] = 76427, - [SMALL_STATE(2476)] = 76456, - [SMALL_STATE(2477)] = 76474, - [SMALL_STATE(2478)] = 76500, - [SMALL_STATE(2479)] = 76524, - [SMALL_STATE(2480)] = 76546, - [SMALL_STATE(2481)] = 76568, - [SMALL_STATE(2482)] = 76592, - [SMALL_STATE(2483)] = 76614, - [SMALL_STATE(2484)] = 76632, - [SMALL_STATE(2485)] = 76650, - [SMALL_STATE(2486)] = 76668, - [SMALL_STATE(2487)] = 76686, - [SMALL_STATE(2488)] = 76712, - [SMALL_STATE(2489)] = 76730, - [SMALL_STATE(2490)] = 76756, - [SMALL_STATE(2491)] = 76778, - [SMALL_STATE(2492)] = 76796, - [SMALL_STATE(2493)] = 76814, - [SMALL_STATE(2494)] = 76832, - [SMALL_STATE(2495)] = 76858, - [SMALL_STATE(2496)] = 76876, - [SMALL_STATE(2497)] = 76894, - [SMALL_STATE(2498)] = 76912, - [SMALL_STATE(2499)] = 76938, - [SMALL_STATE(2500)] = 76964, - [SMALL_STATE(2501)] = 76982, - [SMALL_STATE(2502)] = 77000, - [SMALL_STATE(2503)] = 77022, - [SMALL_STATE(2504)] = 77048, - [SMALL_STATE(2505)] = 77074, - [SMALL_STATE(2506)] = 77098, - [SMALL_STATE(2507)] = 77116, - [SMALL_STATE(2508)] = 77142, - [SMALL_STATE(2509)] = 77160, - [SMALL_STATE(2510)] = 77186, - [SMALL_STATE(2511)] = 77206, - [SMALL_STATE(2512)] = 77230, - [SMALL_STATE(2513)] = 77256, - [SMALL_STATE(2514)] = 77282, - [SMALL_STATE(2515)] = 77308, - [SMALL_STATE(2516)] = 77334, - [SMALL_STATE(2517)] = 77360, - [SMALL_STATE(2518)] = 77386, - [SMALL_STATE(2519)] = 77412, - [SMALL_STATE(2520)] = 77438, - [SMALL_STATE(2521)] = 77464, - [SMALL_STATE(2522)] = 77488, - [SMALL_STATE(2523)] = 77514, - [SMALL_STATE(2524)] = 77540, - [SMALL_STATE(2525)] = 77564, - [SMALL_STATE(2526)] = 77582, - [SMALL_STATE(2527)] = 77606, - [SMALL_STATE(2528)] = 77632, - [SMALL_STATE(2529)] = 77658, - [SMALL_STATE(2530)] = 77684, - [SMALL_STATE(2531)] = 77710, - [SMALL_STATE(2532)] = 77736, - [SMALL_STATE(2533)] = 77762, - [SMALL_STATE(2534)] = 77788, - [SMALL_STATE(2535)] = 77814, - [SMALL_STATE(2536)] = 77840, - [SMALL_STATE(2537)] = 77866, - [SMALL_STATE(2538)] = 77892, - [SMALL_STATE(2539)] = 77918, - [SMALL_STATE(2540)] = 77944, - [SMALL_STATE(2541)] = 77970, - [SMALL_STATE(2542)] = 77996, - [SMALL_STATE(2543)] = 78022, - [SMALL_STATE(2544)] = 78048, - [SMALL_STATE(2545)] = 78074, - [SMALL_STATE(2546)] = 78098, - [SMALL_STATE(2547)] = 78124, - [SMALL_STATE(2548)] = 78148, - [SMALL_STATE(2549)] = 78174, - [SMALL_STATE(2550)] = 78200, - [SMALL_STATE(2551)] = 78226, - [SMALL_STATE(2552)] = 78250, - [SMALL_STATE(2553)] = 78274, - [SMALL_STATE(2554)] = 78292, - [SMALL_STATE(2555)] = 78318, - [SMALL_STATE(2556)] = 78338, - [SMALL_STATE(2557)] = 78356, - [SMALL_STATE(2558)] = 78374, - [SMALL_STATE(2559)] = 78398, - [SMALL_STATE(2560)] = 78424, - [SMALL_STATE(2561)] = 78448, - [SMALL_STATE(2562)] = 78468, - [SMALL_STATE(2563)] = 78486, - [SMALL_STATE(2564)] = 78506, - [SMALL_STATE(2565)] = 78530, - [SMALL_STATE(2566)] = 78548, - [SMALL_STATE(2567)] = 78566, - [SMALL_STATE(2568)] = 78584, - [SMALL_STATE(2569)] = 78610, - [SMALL_STATE(2570)] = 78636, - [SMALL_STATE(2571)] = 78660, - [SMALL_STATE(2572)] = 78682, - [SMALL_STATE(2573)] = 78706, - [SMALL_STATE(2574)] = 78732, - [SMALL_STATE(2575)] = 78758, - [SMALL_STATE(2576)] = 78780, - [SMALL_STATE(2577)] = 78798, - [SMALL_STATE(2578)] = 78816, - [SMALL_STATE(2579)] = 78842, - [SMALL_STATE(2580)] = 78868, - [SMALL_STATE(2581)] = 78894, - [SMALL_STATE(2582)] = 78916, - [SMALL_STATE(2583)] = 78942, - [SMALL_STATE(2584)] = 78968, - [SMALL_STATE(2585)] = 78994, - [SMALL_STATE(2586)] = 79017, - [SMALL_STATE(2587)] = 79040, - [SMALL_STATE(2588)] = 79057, - [SMALL_STATE(2589)] = 79076, - [SMALL_STATE(2590)] = 79099, - [SMALL_STATE(2591)] = 79118, - [SMALL_STATE(2592)] = 79141, - [SMALL_STATE(2593)] = 79164, - [SMALL_STATE(2594)] = 79187, - [SMALL_STATE(2595)] = 79206, - [SMALL_STATE(2596)] = 79229, - [SMALL_STATE(2597)] = 79252, - [SMALL_STATE(2598)] = 79273, - [SMALL_STATE(2599)] = 79296, - [SMALL_STATE(2600)] = 79319, - [SMALL_STATE(2601)] = 79340, - [SMALL_STATE(2602)] = 79363, - [SMALL_STATE(2603)] = 79386, - [SMALL_STATE(2604)] = 79409, - [SMALL_STATE(2605)] = 79432, - [SMALL_STATE(2606)] = 79453, - [SMALL_STATE(2607)] = 79476, - [SMALL_STATE(2608)] = 79499, - [SMALL_STATE(2609)] = 79522, - [SMALL_STATE(2610)] = 79545, - [SMALL_STATE(2611)] = 79566, - [SMALL_STATE(2612)] = 79589, - [SMALL_STATE(2613)] = 79612, - [SMALL_STATE(2614)] = 79635, - [SMALL_STATE(2615)] = 79658, - [SMALL_STATE(2616)] = 79681, - [SMALL_STATE(2617)] = 79702, - [SMALL_STATE(2618)] = 79719, - [SMALL_STATE(2619)] = 79742, - [SMALL_STATE(2620)] = 79763, - [SMALL_STATE(2621)] = 79786, - [SMALL_STATE(2622)] = 79809, - [SMALL_STATE(2623)] = 79832, - [SMALL_STATE(2624)] = 79855, - [SMALL_STATE(2625)] = 79878, - [SMALL_STATE(2626)] = 79901, - [SMALL_STATE(2627)] = 79924, - [SMALL_STATE(2628)] = 79947, - [SMALL_STATE(2629)] = 79970, - [SMALL_STATE(2630)] = 79993, - [SMALL_STATE(2631)] = 80014, - [SMALL_STATE(2632)] = 80037, - [SMALL_STATE(2633)] = 80060, - [SMALL_STATE(2634)] = 80083, - [SMALL_STATE(2635)] = 80106, - [SMALL_STATE(2636)] = 80129, - [SMALL_STATE(2637)] = 80152, - [SMALL_STATE(2638)] = 80175, - [SMALL_STATE(2639)] = 80198, - [SMALL_STATE(2640)] = 80221, - [SMALL_STATE(2641)] = 80244, - [SMALL_STATE(2642)] = 80267, - [SMALL_STATE(2643)] = 80290, - [SMALL_STATE(2644)] = 80313, - [SMALL_STATE(2645)] = 80336, - [SMALL_STATE(2646)] = 80357, - [SMALL_STATE(2647)] = 80378, - [SMALL_STATE(2648)] = 80401, - [SMALL_STATE(2649)] = 80424, - [SMALL_STATE(2650)] = 80447, - [SMALL_STATE(2651)] = 80470, - [SMALL_STATE(2652)] = 80493, - [SMALL_STATE(2653)] = 80512, - [SMALL_STATE(2654)] = 80535, - [SMALL_STATE(2655)] = 80558, - [SMALL_STATE(2656)] = 80581, - [SMALL_STATE(2657)] = 80604, - [SMALL_STATE(2658)] = 80627, - [SMALL_STATE(2659)] = 80648, - [SMALL_STATE(2660)] = 80671, - [SMALL_STATE(2661)] = 80694, - [SMALL_STATE(2662)] = 80717, - [SMALL_STATE(2663)] = 80740, - [SMALL_STATE(2664)] = 80763, - [SMALL_STATE(2665)] = 80786, - [SMALL_STATE(2666)] = 80809, - [SMALL_STATE(2667)] = 80832, - [SMALL_STATE(2668)] = 80855, - [SMALL_STATE(2669)] = 80878, - [SMALL_STATE(2670)] = 80897, - [SMALL_STATE(2671)] = 80920, - [SMALL_STATE(2672)] = 80943, - [SMALL_STATE(2673)] = 80966, - [SMALL_STATE(2674)] = 80989, - [SMALL_STATE(2675)] = 81012, - [SMALL_STATE(2676)] = 81035, - [SMALL_STATE(2677)] = 81058, - [SMALL_STATE(2678)] = 81077, - [SMALL_STATE(2679)] = 81100, - [SMALL_STATE(2680)] = 81117, - [SMALL_STATE(2681)] = 81140, - [SMALL_STATE(2682)] = 81163, - [SMALL_STATE(2683)] = 81182, - [SMALL_STATE(2684)] = 81205, - [SMALL_STATE(2685)] = 81224, - [SMALL_STATE(2686)] = 81243, - [SMALL_STATE(2687)] = 81262, - [SMALL_STATE(2688)] = 81285, - [SMALL_STATE(2689)] = 81308, - [SMALL_STATE(2690)] = 81331, - [SMALL_STATE(2691)] = 81354, - [SMALL_STATE(2692)] = 81377, - [SMALL_STATE(2693)] = 81400, - [SMALL_STATE(2694)] = 81423, - [SMALL_STATE(2695)] = 81446, - [SMALL_STATE(2696)] = 81465, - [SMALL_STATE(2697)] = 81488, - [SMALL_STATE(2698)] = 81511, - [SMALL_STATE(2699)] = 81534, - [SMALL_STATE(2700)] = 81557, - [SMALL_STATE(2701)] = 81580, - [SMALL_STATE(2702)] = 81603, - [SMALL_STATE(2703)] = 81626, - [SMALL_STATE(2704)] = 81647, - [SMALL_STATE(2705)] = 81670, - [SMALL_STATE(2706)] = 81693, - [SMALL_STATE(2707)] = 81716, - [SMALL_STATE(2708)] = 81739, - [SMALL_STATE(2709)] = 81762, - [SMALL_STATE(2710)] = 81785, - [SMALL_STATE(2711)] = 81804, - [SMALL_STATE(2712)] = 81827, - [SMALL_STATE(2713)] = 81850, - [SMALL_STATE(2714)] = 81873, - [SMALL_STATE(2715)] = 81896, - [SMALL_STATE(2716)] = 81917, - [SMALL_STATE(2717)] = 81940, - [SMALL_STATE(2718)] = 81963, - [SMALL_STATE(2719)] = 81986, - [SMALL_STATE(2720)] = 82005, - [SMALL_STATE(2721)] = 82028, - [SMALL_STATE(2722)] = 82051, - [SMALL_STATE(2723)] = 82074, - [SMALL_STATE(2724)] = 82097, - [SMALL_STATE(2725)] = 82120, - [SMALL_STATE(2726)] = 82143, - [SMALL_STATE(2727)] = 82166, - [SMALL_STATE(2728)] = 82189, - [SMALL_STATE(2729)] = 82212, - [SMALL_STATE(2730)] = 82235, - [SMALL_STATE(2731)] = 82258, - [SMALL_STATE(2732)] = 82279, - [SMALL_STATE(2733)] = 82298, - [SMALL_STATE(2734)] = 82321, - [SMALL_STATE(2735)] = 82340, - [SMALL_STATE(2736)] = 82363, - [SMALL_STATE(2737)] = 82386, - [SMALL_STATE(2738)] = 82409, - [SMALL_STATE(2739)] = 82432, - [SMALL_STATE(2740)] = 82455, - [SMALL_STATE(2741)] = 82478, - [SMALL_STATE(2742)] = 82501, - [SMALL_STATE(2743)] = 82524, - [SMALL_STATE(2744)] = 82545, - [SMALL_STATE(2745)] = 82568, - [SMALL_STATE(2746)] = 82591, - [SMALL_STATE(2747)] = 82614, - [SMALL_STATE(2748)] = 82637, - [SMALL_STATE(2749)] = 82660, - [SMALL_STATE(2750)] = 82683, - [SMALL_STATE(2751)] = 82704, - [SMALL_STATE(2752)] = 82727, - [SMALL_STATE(2753)] = 82750, - [SMALL_STATE(2754)] = 82773, - [SMALL_STATE(2755)] = 82796, - [SMALL_STATE(2756)] = 82819, - [SMALL_STATE(2757)] = 82842, - [SMALL_STATE(2758)] = 82859, - [SMALL_STATE(2759)] = 82882, - [SMALL_STATE(2760)] = 82903, - [SMALL_STATE(2761)] = 82926, - [SMALL_STATE(2762)] = 82949, - [SMALL_STATE(2763)] = 82972, - [SMALL_STATE(2764)] = 82993, - [SMALL_STATE(2765)] = 83016, - [SMALL_STATE(2766)] = 83039, - [SMALL_STATE(2767)] = 83062, - [SMALL_STATE(2768)] = 83085, - [SMALL_STATE(2769)] = 83108, - [SMALL_STATE(2770)] = 83127, - [SMALL_STATE(2771)] = 83148, - [SMALL_STATE(2772)] = 83169, - [SMALL_STATE(2773)] = 83192, - [SMALL_STATE(2774)] = 83215, - [SMALL_STATE(2775)] = 83234, - [SMALL_STATE(2776)] = 83251, - [SMALL_STATE(2777)] = 83274, - [SMALL_STATE(2778)] = 83293, - [SMALL_STATE(2779)] = 83316, - [SMALL_STATE(2780)] = 83335, - [SMALL_STATE(2781)] = 83358, - [SMALL_STATE(2782)] = 83381, - [SMALL_STATE(2783)] = 83404, - [SMALL_STATE(2784)] = 83427, - [SMALL_STATE(2785)] = 83450, - [SMALL_STATE(2786)] = 83471, - [SMALL_STATE(2787)] = 83494, - [SMALL_STATE(2788)] = 83517, - [SMALL_STATE(2789)] = 83540, - [SMALL_STATE(2790)] = 83559, - [SMALL_STATE(2791)] = 83582, - [SMALL_STATE(2792)] = 83605, - [SMALL_STATE(2793)] = 83628, - [SMALL_STATE(2794)] = 83651, - [SMALL_STATE(2795)] = 83670, - [SMALL_STATE(2796)] = 83693, - [SMALL_STATE(2797)] = 83712, - [SMALL_STATE(2798)] = 83731, - [SMALL_STATE(2799)] = 83750, - [SMALL_STATE(2800)] = 83773, - [SMALL_STATE(2801)] = 83796, - [SMALL_STATE(2802)] = 83815, - [SMALL_STATE(2803)] = 83838, - [SMALL_STATE(2804)] = 83859, - [SMALL_STATE(2805)] = 83880, - [SMALL_STATE(2806)] = 83899, - [SMALL_STATE(2807)] = 83922, - [SMALL_STATE(2808)] = 83945, - [SMALL_STATE(2809)] = 83968, - [SMALL_STATE(2810)] = 83987, - [SMALL_STATE(2811)] = 84006, - [SMALL_STATE(2812)] = 84025, - [SMALL_STATE(2813)] = 84048, - [SMALL_STATE(2814)] = 84071, - [SMALL_STATE(2815)] = 84094, - [SMALL_STATE(2816)] = 84117, - [SMALL_STATE(2817)] = 84138, - [SMALL_STATE(2818)] = 84161, - [SMALL_STATE(2819)] = 84184, - [SMALL_STATE(2820)] = 84207, - [SMALL_STATE(2821)] = 84230, - [SMALL_STATE(2822)] = 84253, - [SMALL_STATE(2823)] = 84276, - [SMALL_STATE(2824)] = 84299, - [SMALL_STATE(2825)] = 84320, - [SMALL_STATE(2826)] = 84341, - [SMALL_STATE(2827)] = 84364, - [SMALL_STATE(2828)] = 84387, - [SMALL_STATE(2829)] = 84410, - [SMALL_STATE(2830)] = 84431, - [SMALL_STATE(2831)] = 84454, - [SMALL_STATE(2832)] = 84477, - [SMALL_STATE(2833)] = 84496, - [SMALL_STATE(2834)] = 84519, - [SMALL_STATE(2835)] = 84542, - [SMALL_STATE(2836)] = 84561, - [SMALL_STATE(2837)] = 84584, - [SMALL_STATE(2838)] = 84607, - [SMALL_STATE(2839)] = 84626, - [SMALL_STATE(2840)] = 84649, - [SMALL_STATE(2841)] = 84672, - [SMALL_STATE(2842)] = 84695, - [SMALL_STATE(2843)] = 84718, - [SMALL_STATE(2844)] = 84741, - [SMALL_STATE(2845)] = 84764, - [SMALL_STATE(2846)] = 84787, - [SMALL_STATE(2847)] = 84807, - [SMALL_STATE(2848)] = 84827, - [SMALL_STATE(2849)] = 84843, - [SMALL_STATE(2850)] = 84863, - [SMALL_STATE(2851)] = 84883, - [SMALL_STATE(2852)] = 84903, - [SMALL_STATE(2853)] = 84919, - [SMALL_STATE(2854)] = 84939, - [SMALL_STATE(2855)] = 84955, - [SMALL_STATE(2856)] = 84975, - [SMALL_STATE(2857)] = 84991, - [SMALL_STATE(2858)] = 85007, - [SMALL_STATE(2859)] = 85023, - [SMALL_STATE(2860)] = 85043, - [SMALL_STATE(2861)] = 85059, - [SMALL_STATE(2862)] = 85075, - [SMALL_STATE(2863)] = 85095, - [SMALL_STATE(2864)] = 85115, - [SMALL_STATE(2865)] = 85131, - [SMALL_STATE(2866)] = 85151, - [SMALL_STATE(2867)] = 85171, - [SMALL_STATE(2868)] = 85191, - [SMALL_STATE(2869)] = 85211, - [SMALL_STATE(2870)] = 85227, - [SMALL_STATE(2871)] = 85243, - [SMALL_STATE(2872)] = 85263, - [SMALL_STATE(2873)] = 85283, - [SMALL_STATE(2874)] = 85299, - [SMALL_STATE(2875)] = 85319, - [SMALL_STATE(2876)] = 85335, - [SMALL_STATE(2877)] = 85353, - [SMALL_STATE(2878)] = 85373, - [SMALL_STATE(2879)] = 85393, - [SMALL_STATE(2880)] = 85413, - [SMALL_STATE(2881)] = 85429, - [SMALL_STATE(2882)] = 85449, - [SMALL_STATE(2883)] = 85469, - [SMALL_STATE(2884)] = 85485, - [SMALL_STATE(2885)] = 85505, - [SMALL_STATE(2886)] = 85525, - [SMALL_STATE(2887)] = 85541, - [SMALL_STATE(2888)] = 85559, - [SMALL_STATE(2889)] = 85579, - [SMALL_STATE(2890)] = 85599, - [SMALL_STATE(2891)] = 85619, - [SMALL_STATE(2892)] = 85639, - [SMALL_STATE(2893)] = 85659, - [SMALL_STATE(2894)] = 85677, - [SMALL_STATE(2895)] = 85695, - [SMALL_STATE(2896)] = 85713, - [SMALL_STATE(2897)] = 85733, - [SMALL_STATE(2898)] = 85753, - [SMALL_STATE(2899)] = 85773, - [SMALL_STATE(2900)] = 85793, - [SMALL_STATE(2901)] = 85813, - [SMALL_STATE(2902)] = 85833, - [SMALL_STATE(2903)] = 85853, - [SMALL_STATE(2904)] = 85873, - [SMALL_STATE(2905)] = 85893, - [SMALL_STATE(2906)] = 85913, - [SMALL_STATE(2907)] = 85933, - [SMALL_STATE(2908)] = 85953, - [SMALL_STATE(2909)] = 85973, - [SMALL_STATE(2910)] = 85993, - [SMALL_STATE(2911)] = 86013, - [SMALL_STATE(2912)] = 86033, - [SMALL_STATE(2913)] = 86053, - [SMALL_STATE(2914)] = 86073, - [SMALL_STATE(2915)] = 86093, - [SMALL_STATE(2916)] = 86113, - [SMALL_STATE(2917)] = 86133, - [SMALL_STATE(2918)] = 86151, - [SMALL_STATE(2919)] = 86171, - [SMALL_STATE(2920)] = 86191, - [SMALL_STATE(2921)] = 86211, - [SMALL_STATE(2922)] = 86227, - [SMALL_STATE(2923)] = 86247, - [SMALL_STATE(2924)] = 86265, - [SMALL_STATE(2925)] = 86281, - [SMALL_STATE(2926)] = 86301, - [SMALL_STATE(2927)] = 86321, - [SMALL_STATE(2928)] = 86341, - [SMALL_STATE(2929)] = 86359, - [SMALL_STATE(2930)] = 86379, - [SMALL_STATE(2931)] = 86399, - [SMALL_STATE(2932)] = 86419, - [SMALL_STATE(2933)] = 86435, - [SMALL_STATE(2934)] = 86451, - [SMALL_STATE(2935)] = 86471, - [SMALL_STATE(2936)] = 86491, - [SMALL_STATE(2937)] = 86511, - [SMALL_STATE(2938)] = 86527, - [SMALL_STATE(2939)] = 86547, - [SMALL_STATE(2940)] = 86567, - [SMALL_STATE(2941)] = 86587, - [SMALL_STATE(2942)] = 86605, - [SMALL_STATE(2943)] = 86625, - [SMALL_STATE(2944)] = 86645, - [SMALL_STATE(2945)] = 86661, - [SMALL_STATE(2946)] = 86681, - [SMALL_STATE(2947)] = 86697, - [SMALL_STATE(2948)] = 86717, - [SMALL_STATE(2949)] = 86737, - [SMALL_STATE(2950)] = 86755, - [SMALL_STATE(2951)] = 86771, - [SMALL_STATE(2952)] = 86791, - [SMALL_STATE(2953)] = 86807, - [SMALL_STATE(2954)] = 86827, - [SMALL_STATE(2955)] = 86845, - [SMALL_STATE(2956)] = 86861, - [SMALL_STATE(2957)] = 86881, - [SMALL_STATE(2958)] = 86901, - [SMALL_STATE(2959)] = 86917, - [SMALL_STATE(2960)] = 86937, - [SMALL_STATE(2961)] = 86957, - [SMALL_STATE(2962)] = 86977, - [SMALL_STATE(2963)] = 86997, - [SMALL_STATE(2964)] = 87017, - [SMALL_STATE(2965)] = 87037, - [SMALL_STATE(2966)] = 87057, - [SMALL_STATE(2967)] = 87077, - [SMALL_STATE(2968)] = 87097, - [SMALL_STATE(2969)] = 87117, - [SMALL_STATE(2970)] = 87135, - [SMALL_STATE(2971)] = 87155, - [SMALL_STATE(2972)] = 87175, - [SMALL_STATE(2973)] = 87193, - [SMALL_STATE(2974)] = 87211, - [SMALL_STATE(2975)] = 87231, - [SMALL_STATE(2976)] = 87251, - [SMALL_STATE(2977)] = 87269, - [SMALL_STATE(2978)] = 87289, - [SMALL_STATE(2979)] = 87309, - [SMALL_STATE(2980)] = 87329, - [SMALL_STATE(2981)] = 87347, - [SMALL_STATE(2982)] = 87363, - [SMALL_STATE(2983)] = 87383, - [SMALL_STATE(2984)] = 87401, - [SMALL_STATE(2985)] = 87421, - [SMALL_STATE(2986)] = 87441, - [SMALL_STATE(2987)] = 87461, - [SMALL_STATE(2988)] = 87481, - [SMALL_STATE(2989)] = 87501, - [SMALL_STATE(2990)] = 87517, - [SMALL_STATE(2991)] = 87533, - [SMALL_STATE(2992)] = 87553, - [SMALL_STATE(2993)] = 87571, - [SMALL_STATE(2994)] = 87591, - [SMALL_STATE(2995)] = 87609, - [SMALL_STATE(2996)] = 87629, - [SMALL_STATE(2997)] = 87649, - [SMALL_STATE(2998)] = 87669, - [SMALL_STATE(2999)] = 87689, - [SMALL_STATE(3000)] = 87707, - [SMALL_STATE(3001)] = 87727, - [SMALL_STATE(3002)] = 87747, - [SMALL_STATE(3003)] = 87767, - [SMALL_STATE(3004)] = 87787, - [SMALL_STATE(3005)] = 87805, - [SMALL_STATE(3006)] = 87825, - [SMALL_STATE(3007)] = 87845, - [SMALL_STATE(3008)] = 87865, - [SMALL_STATE(3009)] = 87885, - [SMALL_STATE(3010)] = 87905, - [SMALL_STATE(3011)] = 87925, - [SMALL_STATE(3012)] = 87945, - [SMALL_STATE(3013)] = 87961, - [SMALL_STATE(3014)] = 87981, - [SMALL_STATE(3015)] = 88001, - [SMALL_STATE(3016)] = 88021, - [SMALL_STATE(3017)] = 88041, - [SMALL_STATE(3018)] = 88061, - [SMALL_STATE(3019)] = 88081, - [SMALL_STATE(3020)] = 88097, - [SMALL_STATE(3021)] = 88117, - [SMALL_STATE(3022)] = 88137, - [SMALL_STATE(3023)] = 88157, - [SMALL_STATE(3024)] = 88177, - [SMALL_STATE(3025)] = 88197, - [SMALL_STATE(3026)] = 88217, - [SMALL_STATE(3027)] = 88233, - [SMALL_STATE(3028)] = 88249, - [SMALL_STATE(3029)] = 88269, - [SMALL_STATE(3030)] = 88289, - [SMALL_STATE(3031)] = 88309, - [SMALL_STATE(3032)] = 88329, - [SMALL_STATE(3033)] = 88349, - [SMALL_STATE(3034)] = 88367, - [SMALL_STATE(3035)] = 88387, - [SMALL_STATE(3036)] = 88403, - [SMALL_STATE(3037)] = 88423, - [SMALL_STATE(3038)] = 88439, - [SMALL_STATE(3039)] = 88459, - [SMALL_STATE(3040)] = 88479, - [SMALL_STATE(3041)] = 88497, - [SMALL_STATE(3042)] = 88515, - [SMALL_STATE(3043)] = 88535, - [SMALL_STATE(3044)] = 88555, - [SMALL_STATE(3045)] = 88575, - [SMALL_STATE(3046)] = 88595, - [SMALL_STATE(3047)] = 88611, - [SMALL_STATE(3048)] = 88627, - [SMALL_STATE(3049)] = 88647, - [SMALL_STATE(3050)] = 88667, - [SMALL_STATE(3051)] = 88687, - [SMALL_STATE(3052)] = 88707, - [SMALL_STATE(3053)] = 88727, - [SMALL_STATE(3054)] = 88745, - [SMALL_STATE(3055)] = 88765, - [SMALL_STATE(3056)] = 88783, - [SMALL_STATE(3057)] = 88799, - [SMALL_STATE(3058)] = 88819, - [SMALL_STATE(3059)] = 88839, - [SMALL_STATE(3060)] = 88857, - [SMALL_STATE(3061)] = 88877, - [SMALL_STATE(3062)] = 88897, - [SMALL_STATE(3063)] = 88917, - [SMALL_STATE(3064)] = 88935, - [SMALL_STATE(3065)] = 88955, - [SMALL_STATE(3066)] = 88971, - [SMALL_STATE(3067)] = 88991, - [SMALL_STATE(3068)] = 89011, - [SMALL_STATE(3069)] = 89031, - [SMALL_STATE(3070)] = 89051, - [SMALL_STATE(3071)] = 89069, - [SMALL_STATE(3072)] = 89089, - [SMALL_STATE(3073)] = 89107, - [SMALL_STATE(3074)] = 89125, - [SMALL_STATE(3075)] = 89145, - [SMALL_STATE(3076)] = 89163, - [SMALL_STATE(3077)] = 89179, - [SMALL_STATE(3078)] = 89195, - [SMALL_STATE(3079)] = 89215, - [SMALL_STATE(3080)] = 89235, - [SMALL_STATE(3081)] = 89255, - [SMALL_STATE(3082)] = 89275, - [SMALL_STATE(3083)] = 89291, - [SMALL_STATE(3084)] = 89311, - [SMALL_STATE(3085)] = 89331, - [SMALL_STATE(3086)] = 89351, - [SMALL_STATE(3087)] = 89367, - [SMALL_STATE(3088)] = 89387, - [SMALL_STATE(3089)] = 89407, - [SMALL_STATE(3090)] = 89423, - [SMALL_STATE(3091)] = 89443, - [SMALL_STATE(3092)] = 89463, - [SMALL_STATE(3093)] = 89479, - [SMALL_STATE(3094)] = 89495, - [SMALL_STATE(3095)] = 89511, - [SMALL_STATE(3096)] = 89531, - [SMALL_STATE(3097)] = 89551, - [SMALL_STATE(3098)] = 89571, - [SMALL_STATE(3099)] = 89591, - [SMALL_STATE(3100)] = 89609, - [SMALL_STATE(3101)] = 89625, - [SMALL_STATE(3102)] = 89643, - [SMALL_STATE(3103)] = 89659, - [SMALL_STATE(3104)] = 89675, - [SMALL_STATE(3105)] = 89695, - [SMALL_STATE(3106)] = 89715, - [SMALL_STATE(3107)] = 89735, - [SMALL_STATE(3108)] = 89751, - [SMALL_STATE(3109)] = 89767, - [SMALL_STATE(3110)] = 89785, - [SMALL_STATE(3111)] = 89805, - [SMALL_STATE(3112)] = 89825, - [SMALL_STATE(3113)] = 89845, - [SMALL_STATE(3114)] = 89865, - [SMALL_STATE(3115)] = 89885, - [SMALL_STATE(3116)] = 89905, - [SMALL_STATE(3117)] = 89925, - [SMALL_STATE(3118)] = 89945, - [SMALL_STATE(3119)] = 89963, - [SMALL_STATE(3120)] = 89983, - [SMALL_STATE(3121)] = 90003, - [SMALL_STATE(3122)] = 90021, - [SMALL_STATE(3123)] = 90041, - [SMALL_STATE(3124)] = 90061, - [SMALL_STATE(3125)] = 90081, - [SMALL_STATE(3126)] = 90101, - [SMALL_STATE(3127)] = 90121, - [SMALL_STATE(3128)] = 90141, - [SMALL_STATE(3129)] = 90159, - [SMALL_STATE(3130)] = 90179, - [SMALL_STATE(3131)] = 90199, - [SMALL_STATE(3132)] = 90219, - [SMALL_STATE(3133)] = 90235, - [SMALL_STATE(3134)] = 90255, - [SMALL_STATE(3135)] = 90273, - [SMALL_STATE(3136)] = 90293, - [SMALL_STATE(3137)] = 90313, - [SMALL_STATE(3138)] = 90333, - [SMALL_STATE(3139)] = 90351, - [SMALL_STATE(3140)] = 90371, - [SMALL_STATE(3141)] = 90387, - [SMALL_STATE(3142)] = 90407, - [SMALL_STATE(3143)] = 90425, - [SMALL_STATE(3144)] = 90445, - [SMALL_STATE(3145)] = 90465, - [SMALL_STATE(3146)] = 90485, - [SMALL_STATE(3147)] = 90505, - [SMALL_STATE(3148)] = 90525, - [SMALL_STATE(3149)] = 90545, - [SMALL_STATE(3150)] = 90565, - [SMALL_STATE(3151)] = 90585, - [SMALL_STATE(3152)] = 90605, - [SMALL_STATE(3153)] = 90621, - [SMALL_STATE(3154)] = 90641, - [SMALL_STATE(3155)] = 90661, - [SMALL_STATE(3156)] = 90681, - [SMALL_STATE(3157)] = 90698, - [SMALL_STATE(3158)] = 90715, - [SMALL_STATE(3159)] = 90732, - [SMALL_STATE(3160)] = 90749, - [SMALL_STATE(3161)] = 90766, - [SMALL_STATE(3162)] = 90783, - [SMALL_STATE(3163)] = 90800, - [SMALL_STATE(3164)] = 90815, - [SMALL_STATE(3165)] = 90832, - [SMALL_STATE(3166)] = 90849, - [SMALL_STATE(3167)] = 90866, - [SMALL_STATE(3168)] = 90883, - [SMALL_STATE(3169)] = 90900, - [SMALL_STATE(3170)] = 90917, - [SMALL_STATE(3171)] = 90932, - [SMALL_STATE(3172)] = 90949, - [SMALL_STATE(3173)] = 90966, - [SMALL_STATE(3174)] = 90983, - [SMALL_STATE(3175)] = 91000, - [SMALL_STATE(3176)] = 91017, - [SMALL_STATE(3177)] = 91034, - [SMALL_STATE(3178)] = 91049, - [SMALL_STATE(3179)] = 91066, - [SMALL_STATE(3180)] = 91083, - [SMALL_STATE(3181)] = 91100, - [SMALL_STATE(3182)] = 91115, - [SMALL_STATE(3183)] = 91132, - [SMALL_STATE(3184)] = 91147, - [SMALL_STATE(3185)] = 91162, - [SMALL_STATE(3186)] = 91179, - [SMALL_STATE(3187)] = 91196, - [SMALL_STATE(3188)] = 91213, - [SMALL_STATE(3189)] = 91228, - [SMALL_STATE(3190)] = 91245, - [SMALL_STATE(3191)] = 91262, - [SMALL_STATE(3192)] = 91277, - [SMALL_STATE(3193)] = 91294, - [SMALL_STATE(3194)] = 91311, - [SMALL_STATE(3195)] = 91328, - [SMALL_STATE(3196)] = 91345, - [SMALL_STATE(3197)] = 91362, - [SMALL_STATE(3198)] = 91379, - [SMALL_STATE(3199)] = 91396, - [SMALL_STATE(3200)] = 91411, - [SMALL_STATE(3201)] = 91428, - [SMALL_STATE(3202)] = 91445, - [SMALL_STATE(3203)] = 91462, - [SMALL_STATE(3204)] = 91479, - [SMALL_STATE(3205)] = 91496, - [SMALL_STATE(3206)] = 91513, - [SMALL_STATE(3207)] = 91528, - [SMALL_STATE(3208)] = 91545, - [SMALL_STATE(3209)] = 91562, - [SMALL_STATE(3210)] = 91579, - [SMALL_STATE(3211)] = 91596, - [SMALL_STATE(3212)] = 91613, - [SMALL_STATE(3213)] = 91630, - [SMALL_STATE(3214)] = 91647, - [SMALL_STATE(3215)] = 91664, - [SMALL_STATE(3216)] = 91679, - [SMALL_STATE(3217)] = 91694, - [SMALL_STATE(3218)] = 91711, - [SMALL_STATE(3219)] = 91728, - [SMALL_STATE(3220)] = 91743, - [SMALL_STATE(3221)] = 91758, - [SMALL_STATE(3222)] = 91775, - [SMALL_STATE(3223)] = 91790, - [SMALL_STATE(3224)] = 91807, - [SMALL_STATE(3225)] = 91822, - [SMALL_STATE(3226)] = 91839, - [SMALL_STATE(3227)] = 91856, - [SMALL_STATE(3228)] = 91873, - [SMALL_STATE(3229)] = 91890, - [SMALL_STATE(3230)] = 91907, - [SMALL_STATE(3231)] = 91924, - [SMALL_STATE(3232)] = 91941, - [SMALL_STATE(3233)] = 91958, - [SMALL_STATE(3234)] = 91975, - [SMALL_STATE(3235)] = 91990, - [SMALL_STATE(3236)] = 92007, - [SMALL_STATE(3237)] = 92024, - [SMALL_STATE(3238)] = 92041, - [SMALL_STATE(3239)] = 92056, - [SMALL_STATE(3240)] = 92073, - [SMALL_STATE(3241)] = 92090, - [SMALL_STATE(3242)] = 92107, - [SMALL_STATE(3243)] = 92124, - [SMALL_STATE(3244)] = 92141, - [SMALL_STATE(3245)] = 92156, - [SMALL_STATE(3246)] = 92173, - [SMALL_STATE(3247)] = 92190, - [SMALL_STATE(3248)] = 92207, - [SMALL_STATE(3249)] = 92224, - [SMALL_STATE(3250)] = 92241, - [SMALL_STATE(3251)] = 92258, - [SMALL_STATE(3252)] = 92275, - [SMALL_STATE(3253)] = 92292, - [SMALL_STATE(3254)] = 92309, - [SMALL_STATE(3255)] = 92326, - [SMALL_STATE(3256)] = 92343, - [SMALL_STATE(3257)] = 92360, - [SMALL_STATE(3258)] = 92375, - [SMALL_STATE(3259)] = 92390, - [SMALL_STATE(3260)] = 92405, - [SMALL_STATE(3261)] = 92422, - [SMALL_STATE(3262)] = 92439, - [SMALL_STATE(3263)] = 92456, - [SMALL_STATE(3264)] = 92473, - [SMALL_STATE(3265)] = 92490, - [SMALL_STATE(3266)] = 92507, - [SMALL_STATE(3267)] = 92524, - [SMALL_STATE(3268)] = 92541, - [SMALL_STATE(3269)] = 92558, - [SMALL_STATE(3270)] = 92573, - [SMALL_STATE(3271)] = 92588, - [SMALL_STATE(3272)] = 92605, - [SMALL_STATE(3273)] = 92620, - [SMALL_STATE(3274)] = 92637, - [SMALL_STATE(3275)] = 92654, - [SMALL_STATE(3276)] = 92671, - [SMALL_STATE(3277)] = 92688, - [SMALL_STATE(3278)] = 92705, - [SMALL_STATE(3279)] = 92720, - [SMALL_STATE(3280)] = 92737, - [SMALL_STATE(3281)] = 92754, - [SMALL_STATE(3282)] = 92771, - [SMALL_STATE(3283)] = 92788, - [SMALL_STATE(3284)] = 92805, - [SMALL_STATE(3285)] = 92822, - [SMALL_STATE(3286)] = 92839, - [SMALL_STATE(3287)] = 92856, - [SMALL_STATE(3288)] = 92873, - [SMALL_STATE(3289)] = 92890, - [SMALL_STATE(3290)] = 92907, - [SMALL_STATE(3291)] = 92924, - [SMALL_STATE(3292)] = 92941, - [SMALL_STATE(3293)] = 92958, - [SMALL_STATE(3294)] = 92975, - [SMALL_STATE(3295)] = 92992, - [SMALL_STATE(3296)] = 93009, - [SMALL_STATE(3297)] = 93026, - [SMALL_STATE(3298)] = 93041, - [SMALL_STATE(3299)] = 93058, - [SMALL_STATE(3300)] = 93075, - [SMALL_STATE(3301)] = 93090, - [SMALL_STATE(3302)] = 93107, - [SMALL_STATE(3303)] = 93124, - [SMALL_STATE(3304)] = 93141, - [SMALL_STATE(3305)] = 93156, - [SMALL_STATE(3306)] = 93173, - [SMALL_STATE(3307)] = 93190, - [SMALL_STATE(3308)] = 93207, - [SMALL_STATE(3309)] = 93224, - [SMALL_STATE(3310)] = 93241, - [SMALL_STATE(3311)] = 93258, - [SMALL_STATE(3312)] = 93273, - [SMALL_STATE(3313)] = 93290, - [SMALL_STATE(3314)] = 93307, - [SMALL_STATE(3315)] = 93324, - [SMALL_STATE(3316)] = 93341, - [SMALL_STATE(3317)] = 93356, - [SMALL_STATE(3318)] = 93373, - [SMALL_STATE(3319)] = 93390, - [SMALL_STATE(3320)] = 93407, - [SMALL_STATE(3321)] = 93424, - [SMALL_STATE(3322)] = 93441, - [SMALL_STATE(3323)] = 93456, - [SMALL_STATE(3324)] = 93473, - [SMALL_STATE(3325)] = 93490, - [SMALL_STATE(3326)] = 93507, - [SMALL_STATE(3327)] = 93522, - [SMALL_STATE(3328)] = 93539, - [SMALL_STATE(3329)] = 93556, - [SMALL_STATE(3330)] = 93573, - [SMALL_STATE(3331)] = 93590, - [SMALL_STATE(3332)] = 93607, - [SMALL_STATE(3333)] = 93624, - [SMALL_STATE(3334)] = 93639, - [SMALL_STATE(3335)] = 93656, - [SMALL_STATE(3336)] = 93673, - [SMALL_STATE(3337)] = 93690, - [SMALL_STATE(3338)] = 93707, - [SMALL_STATE(3339)] = 93724, - [SMALL_STATE(3340)] = 93739, - [SMALL_STATE(3341)] = 93756, - [SMALL_STATE(3342)] = 93771, - [SMALL_STATE(3343)] = 93788, - [SMALL_STATE(3344)] = 93805, - [SMALL_STATE(3345)] = 93822, - [SMALL_STATE(3346)] = 93839, - [SMALL_STATE(3347)] = 93856, - [SMALL_STATE(3348)] = 93873, - [SMALL_STATE(3349)] = 93888, - [SMALL_STATE(3350)] = 93905, - [SMALL_STATE(3351)] = 93922, - [SMALL_STATE(3352)] = 93939, - [SMALL_STATE(3353)] = 93956, - [SMALL_STATE(3354)] = 93973, - [SMALL_STATE(3355)] = 93990, - [SMALL_STATE(3356)] = 94007, - [SMALL_STATE(3357)] = 94024, - [SMALL_STATE(3358)] = 94041, - [SMALL_STATE(3359)] = 94058, - [SMALL_STATE(3360)] = 94075, - [SMALL_STATE(3361)] = 94092, - [SMALL_STATE(3362)] = 94107, - [SMALL_STATE(3363)] = 94124, - [SMALL_STATE(3364)] = 94139, - [SMALL_STATE(3365)] = 94156, - [SMALL_STATE(3366)] = 94171, - [SMALL_STATE(3367)] = 94188, - [SMALL_STATE(3368)] = 94205, - [SMALL_STATE(3369)] = 94222, - [SMALL_STATE(3370)] = 94239, - [SMALL_STATE(3371)] = 94254, - [SMALL_STATE(3372)] = 94271, - [SMALL_STATE(3373)] = 94286, - [SMALL_STATE(3374)] = 94303, - [SMALL_STATE(3375)] = 94320, - [SMALL_STATE(3376)] = 94337, - [SMALL_STATE(3377)] = 94354, - [SMALL_STATE(3378)] = 94371, - [SMALL_STATE(3379)] = 94388, - [SMALL_STATE(3380)] = 94403, - [SMALL_STATE(3381)] = 94420, - [SMALL_STATE(3382)] = 94437, - [SMALL_STATE(3383)] = 94452, - [SMALL_STATE(3384)] = 94469, - [SMALL_STATE(3385)] = 94486, - [SMALL_STATE(3386)] = 94503, - [SMALL_STATE(3387)] = 94520, - [SMALL_STATE(3388)] = 94537, - [SMALL_STATE(3389)] = 94554, - [SMALL_STATE(3390)] = 94571, - [SMALL_STATE(3391)] = 94586, - [SMALL_STATE(3392)] = 94603, - [SMALL_STATE(3393)] = 94618, - [SMALL_STATE(3394)] = 94635, - [SMALL_STATE(3395)] = 94652, - [SMALL_STATE(3396)] = 94669, - [SMALL_STATE(3397)] = 94686, - [SMALL_STATE(3398)] = 94701, - [SMALL_STATE(3399)] = 94718, - [SMALL_STATE(3400)] = 94735, - [SMALL_STATE(3401)] = 94752, - [SMALL_STATE(3402)] = 94769, - [SMALL_STATE(3403)] = 94786, - [SMALL_STATE(3404)] = 94803, - [SMALL_STATE(3405)] = 94820, - [SMALL_STATE(3406)] = 94837, - [SMALL_STATE(3407)] = 94854, - [SMALL_STATE(3408)] = 94871, - [SMALL_STATE(3409)] = 94888, - [SMALL_STATE(3410)] = 94903, - [SMALL_STATE(3411)] = 94920, - [SMALL_STATE(3412)] = 94935, - [SMALL_STATE(3413)] = 94950, - [SMALL_STATE(3414)] = 94967, - [SMALL_STATE(3415)] = 94982, - [SMALL_STATE(3416)] = 94999, - [SMALL_STATE(3417)] = 95014, - [SMALL_STATE(3418)] = 95031, - [SMALL_STATE(3419)] = 95048, - [SMALL_STATE(3420)] = 95065, - [SMALL_STATE(3421)] = 95082, - [SMALL_STATE(3422)] = 95099, - [SMALL_STATE(3423)] = 95116, - [SMALL_STATE(3424)] = 95133, - [SMALL_STATE(3425)] = 95150, - [SMALL_STATE(3426)] = 95167, - [SMALL_STATE(3427)] = 95184, - [SMALL_STATE(3428)] = 95201, - [SMALL_STATE(3429)] = 95216, - [SMALL_STATE(3430)] = 95233, - [SMALL_STATE(3431)] = 95250, - [SMALL_STATE(3432)] = 95267, - [SMALL_STATE(3433)] = 95284, - [SMALL_STATE(3434)] = 95301, - [SMALL_STATE(3435)] = 95318, - [SMALL_STATE(3436)] = 95333, - [SMALL_STATE(3437)] = 95350, - [SMALL_STATE(3438)] = 95367, - [SMALL_STATE(3439)] = 95384, - [SMALL_STATE(3440)] = 95401, - [SMALL_STATE(3441)] = 95418, - [SMALL_STATE(3442)] = 95435, - [SMALL_STATE(3443)] = 95452, - [SMALL_STATE(3444)] = 95469, - [SMALL_STATE(3445)] = 95486, - [SMALL_STATE(3446)] = 95503, - [SMALL_STATE(3447)] = 95520, - [SMALL_STATE(3448)] = 95535, - [SMALL_STATE(3449)] = 95550, - [SMALL_STATE(3450)] = 95567, - [SMALL_STATE(3451)] = 95584, - [SMALL_STATE(3452)] = 95599, - [SMALL_STATE(3453)] = 95616, - [SMALL_STATE(3454)] = 95633, - [SMALL_STATE(3455)] = 95650, - [SMALL_STATE(3456)] = 95667, - [SMALL_STATE(3457)] = 95684, - [SMALL_STATE(3458)] = 95701, - [SMALL_STATE(3459)] = 95716, - [SMALL_STATE(3460)] = 95730, - [SMALL_STATE(3461)] = 95744, - [SMALL_STATE(3462)] = 95758, - [SMALL_STATE(3463)] = 95772, - [SMALL_STATE(3464)] = 95786, - [SMALL_STATE(3465)] = 95800, - [SMALL_STATE(3466)] = 95814, - [SMALL_STATE(3467)] = 95828, - [SMALL_STATE(3468)] = 95842, - [SMALL_STATE(3469)] = 95856, - [SMALL_STATE(3470)] = 95870, - [SMALL_STATE(3471)] = 95884, - [SMALL_STATE(3472)] = 95898, - [SMALL_STATE(3473)] = 95912, - [SMALL_STATE(3474)] = 95926, - [SMALL_STATE(3475)] = 95940, - [SMALL_STATE(3476)] = 95954, - [SMALL_STATE(3477)] = 95968, - [SMALL_STATE(3478)] = 95982, - [SMALL_STATE(3479)] = 95996, - [SMALL_STATE(3480)] = 96010, - [SMALL_STATE(3481)] = 96024, - [SMALL_STATE(3482)] = 96038, - [SMALL_STATE(3483)] = 96052, - [SMALL_STATE(3484)] = 96066, - [SMALL_STATE(3485)] = 96080, - [SMALL_STATE(3486)] = 96094, - [SMALL_STATE(3487)] = 96108, - [SMALL_STATE(3488)] = 96122, - [SMALL_STATE(3489)] = 96136, - [SMALL_STATE(3490)] = 96150, - [SMALL_STATE(3491)] = 96164, - [SMALL_STATE(3492)] = 96178, - [SMALL_STATE(3493)] = 96192, - [SMALL_STATE(3494)] = 96206, - [SMALL_STATE(3495)] = 96220, - [SMALL_STATE(3496)] = 96234, - [SMALL_STATE(3497)] = 96248, - [SMALL_STATE(3498)] = 96262, - [SMALL_STATE(3499)] = 96276, - [SMALL_STATE(3500)] = 96290, - [SMALL_STATE(3501)] = 96304, - [SMALL_STATE(3502)] = 96318, - [SMALL_STATE(3503)] = 96332, - [SMALL_STATE(3504)] = 96346, - [SMALL_STATE(3505)] = 96360, - [SMALL_STATE(3506)] = 96374, - [SMALL_STATE(3507)] = 96388, - [SMALL_STATE(3508)] = 96402, - [SMALL_STATE(3509)] = 96416, - [SMALL_STATE(3510)] = 96430, - [SMALL_STATE(3511)] = 96444, - [SMALL_STATE(3512)] = 96458, - [SMALL_STATE(3513)] = 96472, - [SMALL_STATE(3514)] = 96486, - [SMALL_STATE(3515)] = 96500, - [SMALL_STATE(3516)] = 96514, - [SMALL_STATE(3517)] = 96528, - [SMALL_STATE(3518)] = 96542, - [SMALL_STATE(3519)] = 96556, - [SMALL_STATE(3520)] = 96570, - [SMALL_STATE(3521)] = 96584, - [SMALL_STATE(3522)] = 96598, - [SMALL_STATE(3523)] = 96612, - [SMALL_STATE(3524)] = 96626, - [SMALL_STATE(3525)] = 96640, - [SMALL_STATE(3526)] = 96654, - [SMALL_STATE(3527)] = 96668, - [SMALL_STATE(3528)] = 96682, - [SMALL_STATE(3529)] = 96696, - [SMALL_STATE(3530)] = 96710, - [SMALL_STATE(3531)] = 96724, - [SMALL_STATE(3532)] = 96738, - [SMALL_STATE(3533)] = 96752, - [SMALL_STATE(3534)] = 96766, - [SMALL_STATE(3535)] = 96780, - [SMALL_STATE(3536)] = 96794, - [SMALL_STATE(3537)] = 96808, - [SMALL_STATE(3538)] = 96822, - [SMALL_STATE(3539)] = 96836, - [SMALL_STATE(3540)] = 96850, - [SMALL_STATE(3541)] = 96864, - [SMALL_STATE(3542)] = 96878, - [SMALL_STATE(3543)] = 96892, - [SMALL_STATE(3544)] = 96906, - [SMALL_STATE(3545)] = 96920, - [SMALL_STATE(3546)] = 96934, - [SMALL_STATE(3547)] = 96948, - [SMALL_STATE(3548)] = 96962, - [SMALL_STATE(3549)] = 96976, - [SMALL_STATE(3550)] = 96990, - [SMALL_STATE(3551)] = 97004, - [SMALL_STATE(3552)] = 97018, - [SMALL_STATE(3553)] = 97032, - [SMALL_STATE(3554)] = 97046, - [SMALL_STATE(3555)] = 97060, - [SMALL_STATE(3556)] = 97074, - [SMALL_STATE(3557)] = 97088, - [SMALL_STATE(3558)] = 97102, - [SMALL_STATE(3559)] = 97116, - [SMALL_STATE(3560)] = 97130, - [SMALL_STATE(3561)] = 97144, - [SMALL_STATE(3562)] = 97158, - [SMALL_STATE(3563)] = 97172, - [SMALL_STATE(3564)] = 97186, - [SMALL_STATE(3565)] = 97200, - [SMALL_STATE(3566)] = 97214, - [SMALL_STATE(3567)] = 97228, - [SMALL_STATE(3568)] = 97242, - [SMALL_STATE(3569)] = 97256, - [SMALL_STATE(3570)] = 97270, - [SMALL_STATE(3571)] = 97284, - [SMALL_STATE(3572)] = 97298, - [SMALL_STATE(3573)] = 97312, - [SMALL_STATE(3574)] = 97326, - [SMALL_STATE(3575)] = 97340, - [SMALL_STATE(3576)] = 97354, - [SMALL_STATE(3577)] = 97368, - [SMALL_STATE(3578)] = 97382, - [SMALL_STATE(3579)] = 97396, - [SMALL_STATE(3580)] = 97410, - [SMALL_STATE(3581)] = 97424, - [SMALL_STATE(3582)] = 97438, - [SMALL_STATE(3583)] = 97452, - [SMALL_STATE(3584)] = 97466, - [SMALL_STATE(3585)] = 97480, - [SMALL_STATE(3586)] = 97494, - [SMALL_STATE(3587)] = 97508, - [SMALL_STATE(3588)] = 97522, - [SMALL_STATE(3589)] = 97536, - [SMALL_STATE(3590)] = 97550, - [SMALL_STATE(3591)] = 97564, - [SMALL_STATE(3592)] = 97578, - [SMALL_STATE(3593)] = 97592, - [SMALL_STATE(3594)] = 97606, - [SMALL_STATE(3595)] = 97620, - [SMALL_STATE(3596)] = 97634, - [SMALL_STATE(3597)] = 97648, - [SMALL_STATE(3598)] = 97662, - [SMALL_STATE(3599)] = 97676, - [SMALL_STATE(3600)] = 97690, - [SMALL_STATE(3601)] = 97704, - [SMALL_STATE(3602)] = 97718, - [SMALL_STATE(3603)] = 97732, - [SMALL_STATE(3604)] = 97746, - [SMALL_STATE(3605)] = 97760, - [SMALL_STATE(3606)] = 97774, - [SMALL_STATE(3607)] = 97788, - [SMALL_STATE(3608)] = 97802, - [SMALL_STATE(3609)] = 97816, - [SMALL_STATE(3610)] = 97830, - [SMALL_STATE(3611)] = 97844, - [SMALL_STATE(3612)] = 97858, - [SMALL_STATE(3613)] = 97872, - [SMALL_STATE(3614)] = 97886, - [SMALL_STATE(3615)] = 97900, - [SMALL_STATE(3616)] = 97914, - [SMALL_STATE(3617)] = 97928, - [SMALL_STATE(3618)] = 97942, - [SMALL_STATE(3619)] = 97956, - [SMALL_STATE(3620)] = 97970, - [SMALL_STATE(3621)] = 97984, - [SMALL_STATE(3622)] = 97998, - [SMALL_STATE(3623)] = 98012, - [SMALL_STATE(3624)] = 98026, - [SMALL_STATE(3625)] = 98040, - [SMALL_STATE(3626)] = 98054, - [SMALL_STATE(3627)] = 98068, - [SMALL_STATE(3628)] = 98082, - [SMALL_STATE(3629)] = 98096, - [SMALL_STATE(3630)] = 98110, - [SMALL_STATE(3631)] = 98124, - [SMALL_STATE(3632)] = 98138, - [SMALL_STATE(3633)] = 98152, - [SMALL_STATE(3634)] = 98166, - [SMALL_STATE(3635)] = 98180, - [SMALL_STATE(3636)] = 98194, - [SMALL_STATE(3637)] = 98208, - [SMALL_STATE(3638)] = 98222, - [SMALL_STATE(3639)] = 98236, - [SMALL_STATE(3640)] = 98250, - [SMALL_STATE(3641)] = 98264, - [SMALL_STATE(3642)] = 98278, - [SMALL_STATE(3643)] = 98292, - [SMALL_STATE(3644)] = 98306, - [SMALL_STATE(3645)] = 98320, - [SMALL_STATE(3646)] = 98334, - [SMALL_STATE(3647)] = 98348, - [SMALL_STATE(3648)] = 98362, - [SMALL_STATE(3649)] = 98376, - [SMALL_STATE(3650)] = 98390, - [SMALL_STATE(3651)] = 98404, - [SMALL_STATE(3652)] = 98418, - [SMALL_STATE(3653)] = 98432, - [SMALL_STATE(3654)] = 98446, - [SMALL_STATE(3655)] = 98460, - [SMALL_STATE(3656)] = 98474, - [SMALL_STATE(3657)] = 98488, - [SMALL_STATE(3658)] = 98502, - [SMALL_STATE(3659)] = 98516, - [SMALL_STATE(3660)] = 98530, - [SMALL_STATE(3661)] = 98544, - [SMALL_STATE(3662)] = 98558, - [SMALL_STATE(3663)] = 98572, - [SMALL_STATE(3664)] = 98586, - [SMALL_STATE(3665)] = 98600, - [SMALL_STATE(3666)] = 98614, - [SMALL_STATE(3667)] = 98628, - [SMALL_STATE(3668)] = 98642, - [SMALL_STATE(3669)] = 98656, - [SMALL_STATE(3670)] = 98670, - [SMALL_STATE(3671)] = 98684, - [SMALL_STATE(3672)] = 98698, - [SMALL_STATE(3673)] = 98712, - [SMALL_STATE(3674)] = 98726, - [SMALL_STATE(3675)] = 98740, - [SMALL_STATE(3676)] = 98754, - [SMALL_STATE(3677)] = 98768, - [SMALL_STATE(3678)] = 98782, - [SMALL_STATE(3679)] = 98796, - [SMALL_STATE(3680)] = 98810, - [SMALL_STATE(3681)] = 98824, - [SMALL_STATE(3682)] = 98838, - [SMALL_STATE(3683)] = 98852, - [SMALL_STATE(3684)] = 98866, - [SMALL_STATE(3685)] = 98880, - [SMALL_STATE(3686)] = 98894, - [SMALL_STATE(3687)] = 98908, - [SMALL_STATE(3688)] = 98922, - [SMALL_STATE(3689)] = 98936, - [SMALL_STATE(3690)] = 98950, - [SMALL_STATE(3691)] = 98964, - [SMALL_STATE(3692)] = 98978, - [SMALL_STATE(3693)] = 98992, - [SMALL_STATE(3694)] = 99006, - [SMALL_STATE(3695)] = 99020, - [SMALL_STATE(3696)] = 99034, - [SMALL_STATE(3697)] = 99048, - [SMALL_STATE(3698)] = 99062, - [SMALL_STATE(3699)] = 99076, - [SMALL_STATE(3700)] = 99090, - [SMALL_STATE(3701)] = 99104, - [SMALL_STATE(3702)] = 99118, - [SMALL_STATE(3703)] = 99132, - [SMALL_STATE(3704)] = 99146, - [SMALL_STATE(3705)] = 99160, - [SMALL_STATE(3706)] = 99174, - [SMALL_STATE(3707)] = 99188, - [SMALL_STATE(3708)] = 99202, - [SMALL_STATE(3709)] = 99216, - [SMALL_STATE(3710)] = 99230, - [SMALL_STATE(3711)] = 99244, - [SMALL_STATE(3712)] = 99258, - [SMALL_STATE(3713)] = 99272, - [SMALL_STATE(3714)] = 99286, - [SMALL_STATE(3715)] = 99300, - [SMALL_STATE(3716)] = 99314, - [SMALL_STATE(3717)] = 99328, - [SMALL_STATE(3718)] = 99342, - [SMALL_STATE(3719)] = 99356, - [SMALL_STATE(3720)] = 99370, - [SMALL_STATE(3721)] = 99384, - [SMALL_STATE(3722)] = 99398, - [SMALL_STATE(3723)] = 99412, - [SMALL_STATE(3724)] = 99426, - [SMALL_STATE(3725)] = 99440, - [SMALL_STATE(3726)] = 99454, - [SMALL_STATE(3727)] = 99468, - [SMALL_STATE(3728)] = 99482, - [SMALL_STATE(3729)] = 99496, - [SMALL_STATE(3730)] = 99510, - [SMALL_STATE(3731)] = 99524, - [SMALL_STATE(3732)] = 99538, - [SMALL_STATE(3733)] = 99552, - [SMALL_STATE(3734)] = 99566, - [SMALL_STATE(3735)] = 99580, - [SMALL_STATE(3736)] = 99594, - [SMALL_STATE(3737)] = 99608, - [SMALL_STATE(3738)] = 99622, - [SMALL_STATE(3739)] = 99636, - [SMALL_STATE(3740)] = 99650, - [SMALL_STATE(3741)] = 99664, - [SMALL_STATE(3742)] = 99678, - [SMALL_STATE(3743)] = 99692, - [SMALL_STATE(3744)] = 99706, - [SMALL_STATE(3745)] = 99720, - [SMALL_STATE(3746)] = 99734, - [SMALL_STATE(3747)] = 99748, - [SMALL_STATE(3748)] = 99762, - [SMALL_STATE(3749)] = 99776, - [SMALL_STATE(3750)] = 99790, - [SMALL_STATE(3751)] = 99804, - [SMALL_STATE(3752)] = 99818, - [SMALL_STATE(3753)] = 99832, - [SMALL_STATE(3754)] = 99846, - [SMALL_STATE(3755)] = 99860, - [SMALL_STATE(3756)] = 99874, - [SMALL_STATE(3757)] = 99888, - [SMALL_STATE(3758)] = 99902, - [SMALL_STATE(3759)] = 99916, - [SMALL_STATE(3760)] = 99930, - [SMALL_STATE(3761)] = 99944, - [SMALL_STATE(3762)] = 99958, - [SMALL_STATE(3763)] = 99972, - [SMALL_STATE(3764)] = 99986, - [SMALL_STATE(3765)] = 100000, - [SMALL_STATE(3766)] = 100014, - [SMALL_STATE(3767)] = 100028, - [SMALL_STATE(3768)] = 100042, - [SMALL_STATE(3769)] = 100056, - [SMALL_STATE(3770)] = 100070, - [SMALL_STATE(3771)] = 100084, - [SMALL_STATE(3772)] = 100098, - [SMALL_STATE(3773)] = 100112, - [SMALL_STATE(3774)] = 100126, - [SMALL_STATE(3775)] = 100140, - [SMALL_STATE(3776)] = 100154, - [SMALL_STATE(3777)] = 100168, - [SMALL_STATE(3778)] = 100182, - [SMALL_STATE(3779)] = 100186, - [SMALL_STATE(3780)] = 100190, - [SMALL_STATE(3781)] = 100194, - [SMALL_STATE(3782)] = 100198, - [SMALL_STATE(3783)] = 100202, - [SMALL_STATE(3784)] = 100206, + [SMALL_STATE(1061)] = 0, + [SMALL_STATE(1062)] = 75, + [SMALL_STATE(1063)] = 148, + [SMALL_STATE(1064)] = 219, + [SMALL_STATE(1065)] = 319, + [SMALL_STATE(1066)] = 419, + [SMALL_STATE(1067)] = 519, + [SMALL_STATE(1068)] = 596, + [SMALL_STATE(1069)] = 673, + [SMALL_STATE(1070)] = 752, + [SMALL_STATE(1071)] = 829, + [SMALL_STATE(1072)] = 893, + [SMALL_STATE(1073)] = 961, + [SMALL_STATE(1074)] = 1025, + [SMALL_STATE(1075)] = 1089, + [SMALL_STATE(1076)] = 1153, + [SMALL_STATE(1077)] = 1217, + [SMALL_STATE(1078)] = 1281, + [SMALL_STATE(1079)] = 1345, + [SMALL_STATE(1080)] = 1409, + [SMALL_STATE(1081)] = 1473, + [SMALL_STATE(1082)] = 1547, + [SMALL_STATE(1083)] = 1618, + [SMALL_STATE(1084)] = 1681, + [SMALL_STATE(1085)] = 1782, + [SMALL_STATE(1086)] = 1849, + [SMALL_STATE(1087)] = 1912, + [SMALL_STATE(1088)] = 1983, + [SMALL_STATE(1089)] = 2050, + [SMALL_STATE(1090)] = 2113, + [SMALL_STATE(1091)] = 2214, + [SMALL_STATE(1092)] = 2285, + [SMALL_STATE(1093)] = 2356, + [SMALL_STATE(1094)] = 2419, + [SMALL_STATE(1095)] = 2482, + [SMALL_STATE(1096)] = 2549, + [SMALL_STATE(1097)] = 2616, + [SMALL_STATE(1098)] = 2717, + [SMALL_STATE(1099)] = 2784, + [SMALL_STATE(1100)] = 2846, + [SMALL_STATE(1101)] = 2916, + [SMALL_STATE(1102)] = 2978, + [SMALL_STATE(1103)] = 3046, + [SMALL_STATE(1104)] = 3108, + [SMALL_STATE(1105)] = 3172, + [SMALL_STATE(1106)] = 3234, + [SMALL_STATE(1107)] = 3298, + [SMALL_STATE(1108)] = 3360, + [SMALL_STATE(1109)] = 3422, + [SMALL_STATE(1110)] = 3484, + [SMALL_STATE(1111)] = 3546, + [SMALL_STATE(1112)] = 3621, + [SMALL_STATE(1113)] = 3684, + [SMALL_STATE(1114)] = 3745, + [SMALL_STATE(1115)] = 3808, + [SMALL_STATE(1116)] = 3869, + [SMALL_STATE(1117)] = 3930, + [SMALL_STATE(1118)] = 3993, + [SMALL_STATE(1119)] = 4054, + [SMALL_STATE(1120)] = 4115, + [SMALL_STATE(1121)] = 4176, + [SMALL_STATE(1122)] = 4237, + [SMALL_STATE(1123)] = 4298, + [SMALL_STATE(1124)] = 4391, + [SMALL_STATE(1125)] = 4454, + [SMALL_STATE(1126)] = 4517, + [SMALL_STATE(1127)] = 4580, + [SMALL_STATE(1128)] = 4641, + [SMALL_STATE(1129)] = 4702, + [SMALL_STATE(1130)] = 4795, + [SMALL_STATE(1131)] = 4856, + [SMALL_STATE(1132)] = 4949, + [SMALL_STATE(1133)] = 5010, + [SMALL_STATE(1134)] = 5071, + [SMALL_STATE(1135)] = 5132, + [SMALL_STATE(1136)] = 5195, + [SMALL_STATE(1137)] = 5258, + [SMALL_STATE(1138)] = 5321, + [SMALL_STATE(1139)] = 5384, + [SMALL_STATE(1140)] = 5447, + [SMALL_STATE(1141)] = 5508, + [SMALL_STATE(1142)] = 5573, + [SMALL_STATE(1143)] = 5634, + [SMALL_STATE(1144)] = 5695, + [SMALL_STATE(1145)] = 5756, + [SMALL_STATE(1146)] = 5817, + [SMALL_STATE(1147)] = 5878, + [SMALL_STATE(1148)] = 5939, + [SMALL_STATE(1149)] = 6000, + [SMALL_STATE(1150)] = 6061, + [SMALL_STATE(1151)] = 6122, + [SMALL_STATE(1152)] = 6183, + [SMALL_STATE(1153)] = 6244, + [SMALL_STATE(1154)] = 6305, + [SMALL_STATE(1155)] = 6366, + [SMALL_STATE(1156)] = 6427, + [SMALL_STATE(1157)] = 6488, + [SMALL_STATE(1158)] = 6549, + [SMALL_STATE(1159)] = 6610, + [SMALL_STATE(1160)] = 6671, + [SMALL_STATE(1161)] = 6734, + [SMALL_STATE(1162)] = 6797, + [SMALL_STATE(1163)] = 6860, + [SMALL_STATE(1164)] = 6921, + [SMALL_STATE(1165)] = 6982, + [SMALL_STATE(1166)] = 7043, + [SMALL_STATE(1167)] = 7104, + [SMALL_STATE(1168)] = 7165, + [SMALL_STATE(1169)] = 7226, + [SMALL_STATE(1170)] = 7287, + [SMALL_STATE(1171)] = 7348, + [SMALL_STATE(1172)] = 7409, + [SMALL_STATE(1173)] = 7470, + [SMALL_STATE(1174)] = 7531, + [SMALL_STATE(1175)] = 7592, + [SMALL_STATE(1176)] = 7653, + [SMALL_STATE(1177)] = 7714, + [SMALL_STATE(1178)] = 7775, + [SMALL_STATE(1179)] = 7836, + [SMALL_STATE(1180)] = 7897, + [SMALL_STATE(1181)] = 7958, + [SMALL_STATE(1182)] = 8019, + [SMALL_STATE(1183)] = 8080, + [SMALL_STATE(1184)] = 8141, + [SMALL_STATE(1185)] = 8202, + [SMALL_STATE(1186)] = 8263, + [SMALL_STATE(1187)] = 8324, + [SMALL_STATE(1188)] = 8385, + [SMALL_STATE(1189)] = 8446, + [SMALL_STATE(1190)] = 8507, + [SMALL_STATE(1191)] = 8568, + [SMALL_STATE(1192)] = 8629, + [SMALL_STATE(1193)] = 8690, + [SMALL_STATE(1194)] = 8751, + [SMALL_STATE(1195)] = 8812, + [SMALL_STATE(1196)] = 8873, + [SMALL_STATE(1197)] = 8934, + [SMALL_STATE(1198)] = 8995, + [SMALL_STATE(1199)] = 9056, + [SMALL_STATE(1200)] = 9117, + [SMALL_STATE(1201)] = 9178, + [SMALL_STATE(1202)] = 9241, + [SMALL_STATE(1203)] = 9304, + [SMALL_STATE(1204)] = 9365, + [SMALL_STATE(1205)] = 9426, + [SMALL_STATE(1206)] = 9487, + [SMALL_STATE(1207)] = 9548, + [SMALL_STATE(1208)] = 9609, + [SMALL_STATE(1209)] = 9670, + [SMALL_STATE(1210)] = 9731, + [SMALL_STATE(1211)] = 9792, + [SMALL_STATE(1212)] = 9853, + [SMALL_STATE(1213)] = 9914, + [SMALL_STATE(1214)] = 9975, + [SMALL_STATE(1215)] = 10036, + [SMALL_STATE(1216)] = 10097, + [SMALL_STATE(1217)] = 10158, + [SMALL_STATE(1218)] = 10219, + [SMALL_STATE(1219)] = 10280, + [SMALL_STATE(1220)] = 10341, + [SMALL_STATE(1221)] = 10402, + [SMALL_STATE(1222)] = 10463, + [SMALL_STATE(1223)] = 10524, + [SMALL_STATE(1224)] = 10585, + [SMALL_STATE(1225)] = 10646, + [SMALL_STATE(1226)] = 10707, + [SMALL_STATE(1227)] = 10768, + [SMALL_STATE(1228)] = 10829, + [SMALL_STATE(1229)] = 10890, + [SMALL_STATE(1230)] = 10951, + [SMALL_STATE(1231)] = 11012, + [SMALL_STATE(1232)] = 11073, + [SMALL_STATE(1233)] = 11134, + [SMALL_STATE(1234)] = 11195, + [SMALL_STATE(1235)] = 11256, + [SMALL_STATE(1236)] = 11317, + [SMALL_STATE(1237)] = 11378, + [SMALL_STATE(1238)] = 11439, + [SMALL_STATE(1239)] = 11500, + [SMALL_STATE(1240)] = 11561, + [SMALL_STATE(1241)] = 11622, + [SMALL_STATE(1242)] = 11683, + [SMALL_STATE(1243)] = 11744, + [SMALL_STATE(1244)] = 11805, + [SMALL_STATE(1245)] = 11866, + [SMALL_STATE(1246)] = 11927, + [SMALL_STATE(1247)] = 11988, + [SMALL_STATE(1248)] = 12049, + [SMALL_STATE(1249)] = 12110, + [SMALL_STATE(1250)] = 12171, + [SMALL_STATE(1251)] = 12232, + [SMALL_STATE(1252)] = 12293, + [SMALL_STATE(1253)] = 12354, + [SMALL_STATE(1254)] = 12415, + [SMALL_STATE(1255)] = 12476, + [SMALL_STATE(1256)] = 12537, + [SMALL_STATE(1257)] = 12598, + [SMALL_STATE(1258)] = 12659, + [SMALL_STATE(1259)] = 12720, + [SMALL_STATE(1260)] = 12781, + [SMALL_STATE(1261)] = 12842, + [SMALL_STATE(1262)] = 12903, + [SMALL_STATE(1263)] = 12964, + [SMALL_STATE(1264)] = 13025, + [SMALL_STATE(1265)] = 13086, + [SMALL_STATE(1266)] = 13147, + [SMALL_STATE(1267)] = 13208, + [SMALL_STATE(1268)] = 13269, + [SMALL_STATE(1269)] = 13330, + [SMALL_STATE(1270)] = 13391, + [SMALL_STATE(1271)] = 13452, + [SMALL_STATE(1272)] = 13513, + [SMALL_STATE(1273)] = 13574, + [SMALL_STATE(1274)] = 13635, + [SMALL_STATE(1275)] = 13696, + [SMALL_STATE(1276)] = 13757, + [SMALL_STATE(1277)] = 13818, + [SMALL_STATE(1278)] = 13879, + [SMALL_STATE(1279)] = 13940, + [SMALL_STATE(1280)] = 14001, + [SMALL_STATE(1281)] = 14062, + [SMALL_STATE(1282)] = 14123, + [SMALL_STATE(1283)] = 14184, + [SMALL_STATE(1284)] = 14247, + [SMALL_STATE(1285)] = 14308, + [SMALL_STATE(1286)] = 14369, + [SMALL_STATE(1287)] = 14430, + [SMALL_STATE(1288)] = 14491, + [SMALL_STATE(1289)] = 14552, + [SMALL_STATE(1290)] = 14613, + [SMALL_STATE(1291)] = 14674, + [SMALL_STATE(1292)] = 14735, + [SMALL_STATE(1293)] = 14796, + [SMALL_STATE(1294)] = 14857, + [SMALL_STATE(1295)] = 14918, + [SMALL_STATE(1296)] = 14979, + [SMALL_STATE(1297)] = 15040, + [SMALL_STATE(1298)] = 15101, + [SMALL_STATE(1299)] = 15162, + [SMALL_STATE(1300)] = 15223, + [SMALL_STATE(1301)] = 15284, + [SMALL_STATE(1302)] = 15345, + [SMALL_STATE(1303)] = 15406, + [SMALL_STATE(1304)] = 15467, + [SMALL_STATE(1305)] = 15528, + [SMALL_STATE(1306)] = 15589, + [SMALL_STATE(1307)] = 15650, + [SMALL_STATE(1308)] = 15711, + [SMALL_STATE(1309)] = 15772, + [SMALL_STATE(1310)] = 15833, + [SMALL_STATE(1311)] = 15894, + [SMALL_STATE(1312)] = 15955, + [SMALL_STATE(1313)] = 16016, + [SMALL_STATE(1314)] = 16077, + [SMALL_STATE(1315)] = 16138, + [SMALL_STATE(1316)] = 16199, + [SMALL_STATE(1317)] = 16260, + [SMALL_STATE(1318)] = 16321, + [SMALL_STATE(1319)] = 16382, + [SMALL_STATE(1320)] = 16443, + [SMALL_STATE(1321)] = 16504, + [SMALL_STATE(1322)] = 16565, + [SMALL_STATE(1323)] = 16626, + [SMALL_STATE(1324)] = 16687, + [SMALL_STATE(1325)] = 16748, + [SMALL_STATE(1326)] = 16809, + [SMALL_STATE(1327)] = 16870, + [SMALL_STATE(1328)] = 16931, + [SMALL_STATE(1329)] = 16992, + [SMALL_STATE(1330)] = 17053, + [SMALL_STATE(1331)] = 17114, + [SMALL_STATE(1332)] = 17175, + [SMALL_STATE(1333)] = 17236, + [SMALL_STATE(1334)] = 17297, + [SMALL_STATE(1335)] = 17358, + [SMALL_STATE(1336)] = 17419, + [SMALL_STATE(1337)] = 17480, + [SMALL_STATE(1338)] = 17541, + [SMALL_STATE(1339)] = 17602, + [SMALL_STATE(1340)] = 17663, + [SMALL_STATE(1341)] = 17724, + [SMALL_STATE(1342)] = 17785, + [SMALL_STATE(1343)] = 17846, + [SMALL_STATE(1344)] = 17907, + [SMALL_STATE(1345)] = 17968, + [SMALL_STATE(1346)] = 18029, + [SMALL_STATE(1347)] = 18090, + [SMALL_STATE(1348)] = 18151, + [SMALL_STATE(1349)] = 18212, + [SMALL_STATE(1350)] = 18273, + [SMALL_STATE(1351)] = 18334, + [SMALL_STATE(1352)] = 18395, + [SMALL_STATE(1353)] = 18456, + [SMALL_STATE(1354)] = 18517, + [SMALL_STATE(1355)] = 18578, + [SMALL_STATE(1356)] = 18639, + [SMALL_STATE(1357)] = 18700, + [SMALL_STATE(1358)] = 18761, + [SMALL_STATE(1359)] = 18822, + [SMALL_STATE(1360)] = 18883, + [SMALL_STATE(1361)] = 18944, + [SMALL_STATE(1362)] = 19005, + [SMALL_STATE(1363)] = 19066, + [SMALL_STATE(1364)] = 19127, + [SMALL_STATE(1365)] = 19188, + [SMALL_STATE(1366)] = 19249, + [SMALL_STATE(1367)] = 19310, + [SMALL_STATE(1368)] = 19371, + [SMALL_STATE(1369)] = 19432, + [SMALL_STATE(1370)] = 19493, + [SMALL_STATE(1371)] = 19554, + [SMALL_STATE(1372)] = 19615, + [SMALL_STATE(1373)] = 19676, + [SMALL_STATE(1374)] = 19737, + [SMALL_STATE(1375)] = 19798, + [SMALL_STATE(1376)] = 19859, + [SMALL_STATE(1377)] = 19920, + [SMALL_STATE(1378)] = 19981, + [SMALL_STATE(1379)] = 20042, + [SMALL_STATE(1380)] = 20103, + [SMALL_STATE(1381)] = 20164, + [SMALL_STATE(1382)] = 20225, + [SMALL_STATE(1383)] = 20286, + [SMALL_STATE(1384)] = 20347, + [SMALL_STATE(1385)] = 20408, + [SMALL_STATE(1386)] = 20469, + [SMALL_STATE(1387)] = 20530, + [SMALL_STATE(1388)] = 20591, + [SMALL_STATE(1389)] = 20652, + [SMALL_STATE(1390)] = 20713, + [SMALL_STATE(1391)] = 20774, + [SMALL_STATE(1392)] = 20835, + [SMALL_STATE(1393)] = 20896, + [SMALL_STATE(1394)] = 20957, + [SMALL_STATE(1395)] = 21018, + [SMALL_STATE(1396)] = 21079, + [SMALL_STATE(1397)] = 21140, + [SMALL_STATE(1398)] = 21201, + [SMALL_STATE(1399)] = 21262, + [SMALL_STATE(1400)] = 21323, + [SMALL_STATE(1401)] = 21384, + [SMALL_STATE(1402)] = 21445, + [SMALL_STATE(1403)] = 21506, + [SMALL_STATE(1404)] = 21567, + [SMALL_STATE(1405)] = 21628, + [SMALL_STATE(1406)] = 21689, + [SMALL_STATE(1407)] = 21750, + [SMALL_STATE(1408)] = 21811, + [SMALL_STATE(1409)] = 21872, + [SMALL_STATE(1410)] = 21933, + [SMALL_STATE(1411)] = 21994, + [SMALL_STATE(1412)] = 22055, + [SMALL_STATE(1413)] = 22116, + [SMALL_STATE(1414)] = 22177, + [SMALL_STATE(1415)] = 22238, + [SMALL_STATE(1416)] = 22299, + [SMALL_STATE(1417)] = 22364, + [SMALL_STATE(1418)] = 22425, + [SMALL_STATE(1419)] = 22486, + [SMALL_STATE(1420)] = 22547, + [SMALL_STATE(1421)] = 22608, + [SMALL_STATE(1422)] = 22669, + [SMALL_STATE(1423)] = 22730, + [SMALL_STATE(1424)] = 22795, + [SMALL_STATE(1425)] = 22870, + [SMALL_STATE(1426)] = 22933, + [SMALL_STATE(1427)] = 22994, + [SMALL_STATE(1428)] = 23054, + [SMALL_STATE(1429)] = 23114, + [SMALL_STATE(1430)] = 23174, + [SMALL_STATE(1431)] = 23234, + [SMALL_STATE(1432)] = 23294, + [SMALL_STATE(1433)] = 23354, + [SMALL_STATE(1434)] = 23414, + [SMALL_STATE(1435)] = 23474, + [SMALL_STATE(1436)] = 23534, + [SMALL_STATE(1437)] = 23594, + [SMALL_STATE(1438)] = 23654, + [SMALL_STATE(1439)] = 23714, + [SMALL_STATE(1440)] = 23774, + [SMALL_STATE(1441)] = 23834, + [SMALL_STATE(1442)] = 23894, + [SMALL_STATE(1443)] = 23954, + [SMALL_STATE(1444)] = 24014, + [SMALL_STATE(1445)] = 24074, + [SMALL_STATE(1446)] = 24134, + [SMALL_STATE(1447)] = 24194, + [SMALL_STATE(1448)] = 24254, + [SMALL_STATE(1449)] = 24314, + [SMALL_STATE(1450)] = 24374, + [SMALL_STATE(1451)] = 24470, + [SMALL_STATE(1452)] = 24530, + [SMALL_STATE(1453)] = 24590, + [SMALL_STATE(1454)] = 24650, + [SMALL_STATE(1455)] = 24710, + [SMALL_STATE(1456)] = 24770, + [SMALL_STATE(1457)] = 24830, + [SMALL_STATE(1458)] = 24890, + [SMALL_STATE(1459)] = 24954, + [SMALL_STATE(1460)] = 25016, + [SMALL_STATE(1461)] = 25076, + [SMALL_STATE(1462)] = 25136, + [SMALL_STATE(1463)] = 25196, + [SMALL_STATE(1464)] = 25256, + [SMALL_STATE(1465)] = 25324, + [SMALL_STATE(1466)] = 25384, + [SMALL_STATE(1467)] = 25444, + [SMALL_STATE(1468)] = 25504, + [SMALL_STATE(1469)] = 25564, + [SMALL_STATE(1470)] = 25624, + [SMALL_STATE(1471)] = 25684, + [SMALL_STATE(1472)] = 25744, + [SMALL_STATE(1473)] = 25804, + [SMALL_STATE(1474)] = 25864, + [SMALL_STATE(1475)] = 25924, + [SMALL_STATE(1476)] = 25984, + [SMALL_STATE(1477)] = 26044, + [SMALL_STATE(1478)] = 26104, + [SMALL_STATE(1479)] = 26164, + [SMALL_STATE(1480)] = 26224, + [SMALL_STATE(1481)] = 26284, + [SMALL_STATE(1482)] = 26344, + [SMALL_STATE(1483)] = 26404, + [SMALL_STATE(1484)] = 26464, + [SMALL_STATE(1485)] = 26524, + [SMALL_STATE(1486)] = 26584, + [SMALL_STATE(1487)] = 26644, + [SMALL_STATE(1488)] = 26704, + [SMALL_STATE(1489)] = 26764, + [SMALL_STATE(1490)] = 26826, + [SMALL_STATE(1491)] = 26886, + [SMALL_STATE(1492)] = 26946, + [SMALL_STATE(1493)] = 27006, + [SMALL_STATE(1494)] = 27066, + [SMALL_STATE(1495)] = 27126, + [SMALL_STATE(1496)] = 27186, + [SMALL_STATE(1497)] = 27246, + [SMALL_STATE(1498)] = 27306, + [SMALL_STATE(1499)] = 27372, + [SMALL_STATE(1500)] = 27432, + [SMALL_STATE(1501)] = 27498, + [SMALL_STATE(1502)] = 27558, + [SMALL_STATE(1503)] = 27618, + [SMALL_STATE(1504)] = 27678, + [SMALL_STATE(1505)] = 27738, + [SMALL_STATE(1506)] = 27798, + [SMALL_STATE(1507)] = 27858, + [SMALL_STATE(1508)] = 27918, + [SMALL_STATE(1509)] = 27978, + [SMALL_STATE(1510)] = 28038, + [SMALL_STATE(1511)] = 28104, + [SMALL_STATE(1512)] = 28164, + [SMALL_STATE(1513)] = 28224, + [SMALL_STATE(1514)] = 28284, + [SMALL_STATE(1515)] = 28344, + [SMALL_STATE(1516)] = 28404, + [SMALL_STATE(1517)] = 28464, + [SMALL_STATE(1518)] = 28524, + [SMALL_STATE(1519)] = 28584, + [SMALL_STATE(1520)] = 28644, + [SMALL_STATE(1521)] = 28718, + [SMALL_STATE(1522)] = 28778, + [SMALL_STATE(1523)] = 28838, + [SMALL_STATE(1524)] = 28898, + [SMALL_STATE(1525)] = 28958, + [SMALL_STATE(1526)] = 29018, + [SMALL_STATE(1527)] = 29078, + [SMALL_STATE(1528)] = 29138, + [SMALL_STATE(1529)] = 29198, + [SMALL_STATE(1530)] = 29258, + [SMALL_STATE(1531)] = 29318, + [SMALL_STATE(1532)] = 29378, + [SMALL_STATE(1533)] = 29438, + [SMALL_STATE(1534)] = 29498, + [SMALL_STATE(1535)] = 29558, + [SMALL_STATE(1536)] = 29618, + [SMALL_STATE(1537)] = 29678, + [SMALL_STATE(1538)] = 29738, + [SMALL_STATE(1539)] = 29798, + [SMALL_STATE(1540)] = 29858, + [SMALL_STATE(1541)] = 29918, + [SMALL_STATE(1542)] = 29982, + [SMALL_STATE(1543)] = 30042, + [SMALL_STATE(1544)] = 30102, + [SMALL_STATE(1545)] = 30162, + [SMALL_STATE(1546)] = 30222, + [SMALL_STATE(1547)] = 30282, + [SMALL_STATE(1548)] = 30342, + [SMALL_STATE(1549)] = 30408, + [SMALL_STATE(1550)] = 30468, + [SMALL_STATE(1551)] = 30567, + [SMALL_STATE(1552)] = 30628, + [SMALL_STATE(1553)] = 30727, + [SMALL_STATE(1554)] = 30796, + [SMALL_STATE(1555)] = 30895, + [SMALL_STATE(1556)] = 30994, + [SMALL_STATE(1557)] = 31055, + [SMALL_STATE(1558)] = 31126, + [SMALL_STATE(1559)] = 31212, + [SMALL_STATE(1560)] = 31282, + [SMALL_STATE(1561)] = 31356, + [SMALL_STATE(1562)] = 31426, + [SMALL_STATE(1563)] = 31498, + [SMALL_STATE(1564)] = 31590, + [SMALL_STATE(1565)] = 31680, + [SMALL_STATE(1566)] = 31756, + [SMALL_STATE(1567)] = 31842, + [SMALL_STATE(1568)] = 31928, + [SMALL_STATE(1569)] = 31988, + [SMALL_STATE(1570)] = 32080, + [SMALL_STATE(1571)] = 32170, + [SMALL_STATE(1572)] = 32228, + [SMALL_STATE(1573)] = 32310, + [SMALL_STATE(1574)] = 32396, + [SMALL_STATE(1575)] = 32466, + [SMALL_STATE(1576)] = 32550, + [SMALL_STATE(1577)] = 32610, + [SMALL_STATE(1578)] = 32680, + [SMALL_STATE(1579)] = 32770, + [SMALL_STATE(1580)] = 32838, + [SMALL_STATE(1581)] = 32924, + [SMALL_STATE(1582)] = 33014, + [SMALL_STATE(1583)] = 33100, + [SMALL_STATE(1584)] = 33166, + [SMALL_STATE(1585)] = 33244, + [SMALL_STATE(1586)] = 33336, + [SMALL_STATE(1587)] = 33422, + [SMALL_STATE(1588)] = 33480, + [SMALL_STATE(1589)] = 33538, + [SMALL_STATE(1590)] = 33628, + [SMALL_STATE(1591)] = 33714, + [SMALL_STATE(1592)] = 33804, + [SMALL_STATE(1593)] = 33896, + [SMALL_STATE(1594)] = 33963, + [SMALL_STATE(1595)] = 34026, + [SMALL_STATE(1596)] = 34089, + [SMALL_STATE(1597)] = 34154, + [SMALL_STATE(1598)] = 34214, + [SMALL_STATE(1599)] = 34274, + [SMALL_STATE(1600)] = 34332, + [SMALL_STATE(1601)] = 34396, + [SMALL_STATE(1602)] = 34454, + [SMALL_STATE(1603)] = 34510, + [SMALL_STATE(1604)] = 34568, + [SMALL_STATE(1605)] = 34624, + [SMALL_STATE(1606)] = 34680, + [SMALL_STATE(1607)] = 34738, + [SMALL_STATE(1608)] = 34802, + [SMALL_STATE(1609)] = 34862, + [SMALL_STATE(1610)] = 34922, + [SMALL_STATE(1611)] = 34986, + [SMALL_STATE(1612)] = 35046, + [SMALL_STATE(1613)] = 35106, + [SMALL_STATE(1614)] = 35162, + [SMALL_STATE(1615)] = 35222, + [SMALL_STATE(1616)] = 35286, + [SMALL_STATE(1617)] = 35375, + [SMALL_STATE(1618)] = 35470, + [SMALL_STATE(1619)] = 35527, + [SMALL_STATE(1620)] = 35586, + [SMALL_STATE(1621)] = 35645, + [SMALL_STATE(1622)] = 35740, + [SMALL_STATE(1623)] = 35799, + [SMALL_STATE(1624)] = 35854, + [SMALL_STATE(1625)] = 35909, + [SMALL_STATE(1626)] = 35964, + [SMALL_STATE(1627)] = 36021, + [SMALL_STATE(1628)] = 36078, + [SMALL_STATE(1629)] = 36133, + [SMALL_STATE(1630)] = 36190, + [SMALL_STATE(1631)] = 36245, + [SMALL_STATE(1632)] = 36300, + [SMALL_STATE(1633)] = 36389, + [SMALL_STATE(1634)] = 36444, + [SMALL_STATE(1635)] = 36499, + [SMALL_STATE(1636)] = 36558, + [SMALL_STATE(1637)] = 36653, + [SMALL_STATE(1638)] = 36748, + [SMALL_STATE(1639)] = 36843, + [SMALL_STATE(1640)] = 36938, + [SMALL_STATE(1641)] = 36995, + [SMALL_STATE(1642)] = 37084, + [SMALL_STATE(1643)] = 37179, + [SMALL_STATE(1644)] = 37274, + [SMALL_STATE(1645)] = 37369, + [SMALL_STATE(1646)] = 37464, + [SMALL_STATE(1647)] = 37521, + [SMALL_STATE(1648)] = 37578, + [SMALL_STATE(1649)] = 37667, + [SMALL_STATE(1650)] = 37762, + [SMALL_STATE(1651)] = 37857, + [SMALL_STATE(1652)] = 37927, + [SMALL_STATE(1653)] = 37981, + [SMALL_STATE(1654)] = 38035, + [SMALL_STATE(1655)] = 38091, + [SMALL_STATE(1656)] = 38147, + [SMALL_STATE(1657)] = 38203, + [SMALL_STATE(1658)] = 38289, + [SMALL_STATE(1659)] = 38343, + [SMALL_STATE(1660)] = 38399, + [SMALL_STATE(1661)] = 38455, + [SMALL_STATE(1662)] = 38547, + [SMALL_STATE(1663)] = 38601, + [SMALL_STATE(1664)] = 38659, + [SMALL_STATE(1665)] = 38715, + [SMALL_STATE(1666)] = 38769, + [SMALL_STATE(1667)] = 38825, + [SMALL_STATE(1668)] = 38879, + [SMALL_STATE(1669)] = 38959, + [SMALL_STATE(1670)] = 39015, + [SMALL_STATE(1671)] = 39079, + [SMALL_STATE(1672)] = 39167, + [SMALL_STATE(1673)] = 39235, + [SMALL_STATE(1674)] = 39289, + [SMALL_STATE(1675)] = 39343, + [SMALL_STATE(1676)] = 39397, + [SMALL_STATE(1677)] = 39469, + [SMALL_STATE(1678)] = 39523, + [SMALL_STATE(1679)] = 39577, + [SMALL_STATE(1680)] = 39665, + [SMALL_STATE(1681)] = 39745, + [SMALL_STATE(1682)] = 39811, + [SMALL_STATE(1683)] = 39897, + [SMALL_STATE(1684)] = 39983, + [SMALL_STATE(1685)] = 40057, + [SMALL_STATE(1686)] = 40113, + [SMALL_STATE(1687)] = 40167, + [SMALL_STATE(1688)] = 40221, + [SMALL_STATE(1689)] = 40303, + [SMALL_STATE(1690)] = 40389, + [SMALL_STATE(1691)] = 40475, + [SMALL_STATE(1692)] = 40561, + [SMALL_STATE(1693)] = 40617, + [SMALL_STATE(1694)] = 40699, + [SMALL_STATE(1695)] = 40791, + [SMALL_STATE(1696)] = 40883, + [SMALL_STATE(1697)] = 40937, + [SMALL_STATE(1698)] = 41029, + [SMALL_STATE(1699)] = 41083, + [SMALL_STATE(1700)] = 41137, + [SMALL_STATE(1701)] = 41229, + [SMALL_STATE(1702)] = 41285, + [SMALL_STATE(1703)] = 41341, + [SMALL_STATE(1704)] = 41397, + [SMALL_STATE(1705)] = 41453, + [SMALL_STATE(1706)] = 41541, + [SMALL_STATE(1707)] = 41597, + [SMALL_STATE(1708)] = 41689, + [SMALL_STATE(1709)] = 41745, + [SMALL_STATE(1710)] = 41833, + [SMALL_STATE(1711)] = 41921, + [SMALL_STATE(1712)] = 42009, + [SMALL_STATE(1713)] = 42087, + [SMALL_STATE(1714)] = 42176, + [SMALL_STATE(1715)] = 42265, + [SMALL_STATE(1716)] = 42318, + [SMALL_STATE(1717)] = 42371, + [SMALL_STATE(1718)] = 42460, + [SMALL_STATE(1719)] = 42513, + [SMALL_STATE(1720)] = 42566, + [SMALL_STATE(1721)] = 42619, + [SMALL_STATE(1722)] = 42672, + [SMALL_STATE(1723)] = 42759, + [SMALL_STATE(1724)] = 42812, + [SMALL_STATE(1725)] = 42865, + [SMALL_STATE(1726)] = 42954, + [SMALL_STATE(1727)] = 43007, + [SMALL_STATE(1728)] = 43094, + [SMALL_STATE(1729)] = 43147, + [SMALL_STATE(1730)] = 43234, + [SMALL_STATE(1731)] = 43287, + [SMALL_STATE(1732)] = 43340, + [SMALL_STATE(1733)] = 43393, + [SMALL_STATE(1734)] = 43446, + [SMALL_STATE(1735)] = 43499, + [SMALL_STATE(1736)] = 43552, + [SMALL_STATE(1737)] = 43605, + [SMALL_STATE(1738)] = 43658, + [SMALL_STATE(1739)] = 43711, + [SMALL_STATE(1740)] = 43764, + [SMALL_STATE(1741)] = 43817, + [SMALL_STATE(1742)] = 43870, + [SMALL_STATE(1743)] = 43923, + [SMALL_STATE(1744)] = 43976, + [SMALL_STATE(1745)] = 44029, + [SMALL_STATE(1746)] = 44116, + [SMALL_STATE(1747)] = 44201, + [SMALL_STATE(1748)] = 44260, + [SMALL_STATE(1749)] = 44319, + [SMALL_STATE(1750)] = 44406, + [SMALL_STATE(1751)] = 44469, + [SMALL_STATE(1752)] = 44538, + [SMALL_STATE(1753)] = 44605, + [SMALL_STATE(1754)] = 44676, + [SMALL_STATE(1755)] = 44753, + [SMALL_STATE(1756)] = 44832, + [SMALL_STATE(1757)] = 44897, + [SMALL_STATE(1758)] = 44982, + [SMALL_STATE(1759)] = 45067, + [SMALL_STATE(1760)] = 45140, + [SMALL_STATE(1761)] = 45221, + [SMALL_STATE(1762)] = 45308, + [SMALL_STATE(1763)] = 45361, + [SMALL_STATE(1764)] = 45414, + [SMALL_STATE(1765)] = 45467, + [SMALL_STATE(1766)] = 45520, + [SMALL_STATE(1767)] = 45573, + [SMALL_STATE(1768)] = 45626, + [SMALL_STATE(1769)] = 45713, + [SMALL_STATE(1770)] = 45802, + [SMALL_STATE(1771)] = 45855, + [SMALL_STATE(1772)] = 45908, + [SMALL_STATE(1773)] = 45995, + [SMALL_STATE(1774)] = 46048, + [SMALL_STATE(1775)] = 46129, + [SMALL_STATE(1776)] = 46182, + [SMALL_STATE(1777)] = 46235, + [SMALL_STATE(1778)] = 46288, + [SMALL_STATE(1779)] = 46341, + [SMALL_STATE(1780)] = 46394, + [SMALL_STATE(1781)] = 46481, + [SMALL_STATE(1782)] = 46534, + [SMALL_STATE(1783)] = 46587, + [SMALL_STATE(1784)] = 46640, + [SMALL_STATE(1785)] = 46693, + [SMALL_STATE(1786)] = 46746, + [SMALL_STATE(1787)] = 46799, + [SMALL_STATE(1788)] = 46884, + [SMALL_STATE(1789)] = 46937, + [SMALL_STATE(1790)] = 46990, + [SMALL_STATE(1791)] = 47043, + [SMALL_STATE(1792)] = 47096, + [SMALL_STATE(1793)] = 47149, + [SMALL_STATE(1794)] = 47202, + [SMALL_STATE(1795)] = 47255, + [SMALL_STATE(1796)] = 47340, + [SMALL_STATE(1797)] = 47393, + [SMALL_STATE(1798)] = 47446, + [SMALL_STATE(1799)] = 47499, + [SMALL_STATE(1800)] = 47552, + [SMALL_STATE(1801)] = 47605, + [SMALL_STATE(1802)] = 47658, + [SMALL_STATE(1803)] = 47711, + [SMALL_STATE(1804)] = 47764, + [SMALL_STATE(1805)] = 47851, + [SMALL_STATE(1806)] = 47904, + [SMALL_STATE(1807)] = 47957, + [SMALL_STATE(1808)] = 48044, + [SMALL_STATE(1809)] = 48129, + [SMALL_STATE(1810)] = 48218, + [SMALL_STATE(1811)] = 48271, + [SMALL_STATE(1812)] = 48360, + [SMALL_STATE(1813)] = 48413, + [SMALL_STATE(1814)] = 48466, + [SMALL_STATE(1815)] = 48529, + [SMALL_STATE(1816)] = 48598, + [SMALL_STATE(1817)] = 48665, + [SMALL_STATE(1818)] = 48736, + [SMALL_STATE(1819)] = 48813, + [SMALL_STATE(1820)] = 48892, + [SMALL_STATE(1821)] = 48957, + [SMALL_STATE(1822)] = 49042, + [SMALL_STATE(1823)] = 49127, + [SMALL_STATE(1824)] = 49200, + [SMALL_STATE(1825)] = 49281, + [SMALL_STATE(1826)] = 49334, + [SMALL_STATE(1827)] = 49387, + [SMALL_STATE(1828)] = 49448, + [SMALL_STATE(1829)] = 49535, + [SMALL_STATE(1830)] = 49588, + [SMALL_STATE(1831)] = 49641, + [SMALL_STATE(1832)] = 49694, + [SMALL_STATE(1833)] = 49747, + [SMALL_STATE(1834)] = 49800, + [SMALL_STATE(1835)] = 49853, + [SMALL_STATE(1836)] = 49906, + [SMALL_STATE(1837)] = 49959, + [SMALL_STATE(1838)] = 50012, + [SMALL_STATE(1839)] = 50099, + [SMALL_STATE(1840)] = 50152, + [SMALL_STATE(1841)] = 50205, + [SMALL_STATE(1842)] = 50258, + [SMALL_STATE(1843)] = 50311, + [SMALL_STATE(1844)] = 50364, + [SMALL_STATE(1845)] = 50417, + [SMALL_STATE(1846)] = 50470, + [SMALL_STATE(1847)] = 50557, + [SMALL_STATE(1848)] = 50610, + [SMALL_STATE(1849)] = 50697, + [SMALL_STATE(1850)] = 50750, + [SMALL_STATE(1851)] = 50803, + [SMALL_STATE(1852)] = 50856, + [SMALL_STATE(1853)] = 50943, + [SMALL_STATE(1854)] = 50996, + [SMALL_STATE(1855)] = 51083, + [SMALL_STATE(1856)] = 51136, + [SMALL_STATE(1857)] = 51221, + [SMALL_STATE(1858)] = 51274, + [SMALL_STATE(1859)] = 51327, + [SMALL_STATE(1860)] = 51412, + [SMALL_STATE(1861)] = 51465, + [SMALL_STATE(1862)] = 51518, + [SMALL_STATE(1863)] = 51607, + [SMALL_STATE(1864)] = 51660, + [SMALL_STATE(1865)] = 51749, + [SMALL_STATE(1866)] = 51802, + [SMALL_STATE(1867)] = 51855, + [SMALL_STATE(1868)] = 51908, + [SMALL_STATE(1869)] = 51997, + [SMALL_STATE(1870)] = 52050, + [SMALL_STATE(1871)] = 52103, + [SMALL_STATE(1872)] = 52156, + [SMALL_STATE(1873)] = 52245, + [SMALL_STATE(1874)] = 52298, + [SMALL_STATE(1875)] = 52387, + [SMALL_STATE(1876)] = 52464, + [SMALL_STATE(1877)] = 52517, + [SMALL_STATE(1878)] = 52604, + [SMALL_STATE(1879)] = 52657, + [SMALL_STATE(1880)] = 52710, + [SMALL_STATE(1881)] = 52799, + [SMALL_STATE(1882)] = 52888, + [SMALL_STATE(1883)] = 52977, + [SMALL_STATE(1884)] = 53066, + [SMALL_STATE(1885)] = 53155, + [SMALL_STATE(1886)] = 53244, + [SMALL_STATE(1887)] = 53333, + [SMALL_STATE(1888)] = 53386, + [SMALL_STATE(1889)] = 53475, + [SMALL_STATE(1890)] = 53564, + [SMALL_STATE(1891)] = 53641, + [SMALL_STATE(1892)] = 53694, + [SMALL_STATE(1893)] = 53783, + [SMALL_STATE(1894)] = 53836, + [SMALL_STATE(1895)] = 53923, + [SMALL_STATE(1896)] = 54004, + [SMALL_STATE(1897)] = 54089, + [SMALL_STATE(1898)] = 54178, + [SMALL_STATE(1899)] = 54263, + [SMALL_STATE(1900)] = 54348, + [SMALL_STATE(1901)] = 54437, + [SMALL_STATE(1902)] = 54496, + [SMALL_STATE(1903)] = 54555, + [SMALL_STATE(1904)] = 54642, + [SMALL_STATE(1905)] = 54731, + [SMALL_STATE(1906)] = 54820, + [SMALL_STATE(1907)] = 54907, + [SMALL_STATE(1908)] = 54996, + [SMALL_STATE(1909)] = 55085, + [SMALL_STATE(1910)] = 55174, + [SMALL_STATE(1911)] = 55263, + [SMALL_STATE(1912)] = 55352, + [SMALL_STATE(1913)] = 55439, + [SMALL_STATE(1914)] = 55528, + [SMALL_STATE(1915)] = 55617, + [SMALL_STATE(1916)] = 55706, + [SMALL_STATE(1917)] = 55795, + [SMALL_STATE(1918)] = 55884, + [SMALL_STATE(1919)] = 55973, + [SMALL_STATE(1920)] = 56062, + [SMALL_STATE(1921)] = 56151, + [SMALL_STATE(1922)] = 56240, + [SMALL_STATE(1923)] = 56329, + [SMALL_STATE(1924)] = 56418, + [SMALL_STATE(1925)] = 56507, + [SMALL_STATE(1926)] = 56596, + [SMALL_STATE(1927)] = 56685, + [SMALL_STATE(1928)] = 56774, + [SMALL_STATE(1929)] = 56827, + [SMALL_STATE(1930)] = 56912, + [SMALL_STATE(1931)] = 57001, + [SMALL_STATE(1932)] = 57090, + [SMALL_STATE(1933)] = 57179, + [SMALL_STATE(1934)] = 57268, + [SMALL_STATE(1935)] = 57321, + [SMALL_STATE(1936)] = 57407, + [SMALL_STATE(1937)] = 57493, + [SMALL_STATE(1938)] = 57579, + [SMALL_STATE(1939)] = 57665, + [SMALL_STATE(1940)] = 57751, + [SMALL_STATE(1941)] = 57835, + [SMALL_STATE(1942)] = 57909, + [SMALL_STATE(1943)] = 57995, + [SMALL_STATE(1944)] = 58081, + [SMALL_STATE(1945)] = 58167, + [SMALL_STATE(1946)] = 58241, + [SMALL_STATE(1947)] = 58327, + [SMALL_STATE(1948)] = 58413, + [SMALL_STATE(1949)] = 58499, + [SMALL_STATE(1950)] = 58585, + [SMALL_STATE(1951)] = 58671, + [SMALL_STATE(1952)] = 58757, + [SMALL_STATE(1953)] = 58843, + [SMALL_STATE(1954)] = 58927, + [SMALL_STATE(1955)] = 59013, + [SMALL_STATE(1956)] = 59099, + [SMALL_STATE(1957)] = 59185, + [SMALL_STATE(1958)] = 59259, + [SMALL_STATE(1959)] = 59345, + [SMALL_STATE(1960)] = 59431, + [SMALL_STATE(1961)] = 59517, + [SMALL_STATE(1962)] = 59591, + [SMALL_STATE(1963)] = 59665, + [SMALL_STATE(1964)] = 59751, + [SMALL_STATE(1965)] = 59837, + [SMALL_STATE(1966)] = 59923, + [SMALL_STATE(1967)] = 60009, + [SMALL_STATE(1968)] = 60095, + [SMALL_STATE(1969)] = 60181, + [SMALL_STATE(1970)] = 60267, + [SMALL_STATE(1971)] = 60353, + [SMALL_STATE(1972)] = 60439, + [SMALL_STATE(1973)] = 60514, + [SMALL_STATE(1974)] = 60589, + [SMALL_STATE(1975)] = 60664, + [SMALL_STATE(1976)] = 60739, + [SMALL_STATE(1977)] = 60814, + [SMALL_STATE(1978)] = 60889, + [SMALL_STATE(1979)] = 60964, + [SMALL_STATE(1980)] = 61039, + [SMALL_STATE(1981)] = 61086, + [SMALL_STATE(1982)] = 61133, + [SMALL_STATE(1983)] = 61180, + [SMALL_STATE(1984)] = 61242, + [SMALL_STATE(1985)] = 61304, + [SMALL_STATE(1986)] = 61366, + [SMALL_STATE(1987)] = 61428, + [SMALL_STATE(1988)] = 61490, + [SMALL_STATE(1989)] = 61552, + [SMALL_STATE(1990)] = 61614, + [SMALL_STATE(1991)] = 61676, + [SMALL_STATE(1992)] = 61738, + [SMALL_STATE(1993)] = 61797, + [SMALL_STATE(1994)] = 61856, + [SMALL_STATE(1995)] = 61892, + [SMALL_STATE(1996)] = 61928, + [SMALL_STATE(1997)] = 61965, + [SMALL_STATE(1998)] = 62002, + [SMALL_STATE(1999)] = 62055, + [SMALL_STATE(2000)] = 62092, + [SMALL_STATE(2001)] = 62129, + [SMALL_STATE(2002)] = 62173, + [SMALL_STATE(2003)] = 62209, + [SMALL_STATE(2004)] = 62243, + [SMALL_STATE(2005)] = 62277, + [SMALL_STATE(2006)] = 62313, + [SMALL_STATE(2007)] = 62357, + [SMALL_STATE(2008)] = 62391, + [SMALL_STATE(2009)] = 62427, + [SMALL_STATE(2010)] = 62461, + [SMALL_STATE(2011)] = 62505, + [SMALL_STATE(2012)] = 62541, + [SMALL_STATE(2013)] = 62572, + [SMALL_STATE(2014)] = 62623, + [SMALL_STATE(2015)] = 62656, + [SMALL_STATE(2016)] = 62689, + [SMALL_STATE(2017)] = 62722, + [SMALL_STATE(2018)] = 62763, + [SMALL_STATE(2019)] = 62796, + [SMALL_STATE(2020)] = 62856, + [SMALL_STATE(2021)] = 62888, + [SMALL_STATE(2022)] = 62920, + [SMALL_STATE(2023)] = 62980, + [SMALL_STATE(2024)] = 63018, + [SMALL_STATE(2025)] = 63056, + [SMALL_STATE(2026)] = 63088, + [SMALL_STATE(2027)] = 63126, + [SMALL_STATE(2028)] = 63164, + [SMALL_STATE(2029)] = 63210, + [SMALL_STATE(2030)] = 63254, + [SMALL_STATE(2031)] = 63287, + [SMALL_STATE(2032)] = 63342, + [SMALL_STATE(2033)] = 63383, + [SMALL_STATE(2034)] = 63436, + [SMALL_STATE(2035)] = 63465, + [SMALL_STATE(2036)] = 63498, + [SMALL_STATE(2037)] = 63551, + [SMALL_STATE(2038)] = 63584, + [SMALL_STATE(2039)] = 63613, + [SMALL_STATE(2040)] = 63656, + [SMALL_STATE(2041)] = 63685, + [SMALL_STATE(2042)] = 63716, + [SMALL_STATE(2043)] = 63749, + [SMALL_STATE(2044)] = 63778, + [SMALL_STATE(2045)] = 63807, + [SMALL_STATE(2046)] = 63840, + [SMALL_STATE(2047)] = 63869, + [SMALL_STATE(2048)] = 63898, + [SMALL_STATE(2049)] = 63927, + [SMALL_STATE(2050)] = 63956, + [SMALL_STATE(2051)] = 63989, + [SMALL_STATE(2052)] = 64017, + [SMALL_STATE(2053)] = 64045, + [SMALL_STATE(2054)] = 64073, + [SMALL_STATE(2055)] = 64101, + [SMALL_STATE(2056)] = 64129, + [SMALL_STATE(2057)] = 64157, + [SMALL_STATE(2058)] = 64185, + [SMALL_STATE(2059)] = 64213, + [SMALL_STATE(2060)] = 64241, + [SMALL_STATE(2061)] = 64271, + [SMALL_STATE(2062)] = 64299, + [SMALL_STATE(2063)] = 64327, + [SMALL_STATE(2064)] = 64355, + [SMALL_STATE(2065)] = 64383, + [SMALL_STATE(2066)] = 64411, + [SMALL_STATE(2067)] = 64455, + [SMALL_STATE(2068)] = 64483, + [SMALL_STATE(2069)] = 64511, + [SMALL_STATE(2070)] = 64539, + [SMALL_STATE(2071)] = 64567, + [SMALL_STATE(2072)] = 64595, + [SMALL_STATE(2073)] = 64623, + [SMALL_STATE(2074)] = 64651, + [SMALL_STATE(2075)] = 64679, + [SMALL_STATE(2076)] = 64707, + [SMALL_STATE(2077)] = 64735, + [SMALL_STATE(2078)] = 64763, + [SMALL_STATE(2079)] = 64791, + [SMALL_STATE(2080)] = 64819, + [SMALL_STATE(2081)] = 64847, + [SMALL_STATE(2082)] = 64875, + [SMALL_STATE(2083)] = 64903, + [SMALL_STATE(2084)] = 64933, + [SMALL_STATE(2085)] = 64961, + [SMALL_STATE(2086)] = 64989, + [SMALL_STATE(2087)] = 65017, + [SMALL_STATE(2088)] = 65045, + [SMALL_STATE(2089)] = 65073, + [SMALL_STATE(2090)] = 65102, + [SMALL_STATE(2091)] = 65137, + [SMALL_STATE(2092)] = 65166, + [SMALL_STATE(2093)] = 65195, + [SMALL_STATE(2094)] = 65224, + [SMALL_STATE(2095)] = 65253, + [SMALL_STATE(2096)] = 65282, + [SMALL_STATE(2097)] = 65311, + [SMALL_STATE(2098)] = 65340, + [SMALL_STATE(2099)] = 65369, + [SMALL_STATE(2100)] = 65400, + [SMALL_STATE(2101)] = 65429, + [SMALL_STATE(2102)] = 65459, + [SMALL_STATE(2103)] = 65487, + [SMALL_STATE(2104)] = 65531, + [SMALL_STATE(2105)] = 65563, + [SMALL_STATE(2106)] = 65595, + [SMALL_STATE(2107)] = 65627, + [SMALL_STATE(2108)] = 65659, + [SMALL_STATE(2109)] = 65691, + [SMALL_STATE(2110)] = 65737, + [SMALL_STATE(2111)] = 65769, + [SMALL_STATE(2112)] = 65801, + [SMALL_STATE(2113)] = 65833, + [SMALL_STATE(2114)] = 65865, + [SMALL_STATE(2115)] = 65897, + [SMALL_STATE(2116)] = 65929, + [SMALL_STATE(2117)] = 65961, + [SMALL_STATE(2118)] = 66001, + [SMALL_STATE(2119)] = 66030, + [SMALL_STATE(2120)] = 66073, + [SMALL_STATE(2121)] = 66116, + [SMALL_STATE(2122)] = 66159, + [SMALL_STATE(2123)] = 66188, + [SMALL_STATE(2124)] = 66231, + [SMALL_STATE(2125)] = 66274, + [SMALL_STATE(2126)] = 66317, + [SMALL_STATE(2127)] = 66354, + [SMALL_STATE(2128)] = 66388, + [SMALL_STATE(2129)] = 66426, + [SMALL_STATE(2130)] = 66464, + [SMALL_STATE(2131)] = 66488, + [SMALL_STATE(2132)] = 66526, + [SMALL_STATE(2133)] = 66554, + [SMALL_STATE(2134)] = 66582, + [SMALL_STATE(2135)] = 66610, + [SMALL_STATE(2136)] = 66638, + [SMALL_STATE(2137)] = 66662, + [SMALL_STATE(2138)] = 66700, + [SMALL_STATE(2139)] = 66724, + [SMALL_STATE(2140)] = 66748, + [SMALL_STATE(2141)] = 66788, + [SMALL_STATE(2142)] = 66816, + [SMALL_STATE(2143)] = 66856, + [SMALL_STATE(2144)] = 66884, + [SMALL_STATE(2145)] = 66912, + [SMALL_STATE(2146)] = 66940, + [SMALL_STATE(2147)] = 66968, + [SMALL_STATE(2148)] = 67008, + [SMALL_STATE(2149)] = 67036, + [SMALL_STATE(2150)] = 67064, + [SMALL_STATE(2151)] = 67092, + [SMALL_STATE(2152)] = 67120, + [SMALL_STATE(2153)] = 67160, + [SMALL_STATE(2154)] = 67200, + [SMALL_STATE(2155)] = 67228, + [SMALL_STATE(2156)] = 67266, + [SMALL_STATE(2157)] = 67296, + [SMALL_STATE(2158)] = 67336, + [SMALL_STATE(2159)] = 67364, + [SMALL_STATE(2160)] = 67388, + [SMALL_STATE(2161)] = 67428, + [SMALL_STATE(2162)] = 67458, + [SMALL_STATE(2163)] = 67498, + [SMALL_STATE(2164)] = 67538, + [SMALL_STATE(2165)] = 67576, + [SMALL_STATE(2166)] = 67614, + [SMALL_STATE(2167)] = 67652, + [SMALL_STATE(2168)] = 67692, + [SMALL_STATE(2169)] = 67722, + [SMALL_STATE(2170)] = 67760, + [SMALL_STATE(2171)] = 67790, + [SMALL_STATE(2172)] = 67818, + [SMALL_STATE(2173)] = 67856, + [SMALL_STATE(2174)] = 67894, + [SMALL_STATE(2175)] = 67932, + [SMALL_STATE(2176)] = 67969, + [SMALL_STATE(2177)] = 67992, + [SMALL_STATE(2178)] = 68023, + [SMALL_STATE(2179)] = 68064, + [SMALL_STATE(2180)] = 68087, + [SMALL_STATE(2181)] = 68128, + [SMALL_STATE(2182)] = 68169, + [SMALL_STATE(2183)] = 68192, + [SMALL_STATE(2184)] = 68215, + [SMALL_STATE(2185)] = 68252, + [SMALL_STATE(2186)] = 68289, + [SMALL_STATE(2187)] = 68312, + [SMALL_STATE(2188)] = 68335, + [SMALL_STATE(2189)] = 68372, + [SMALL_STATE(2190)] = 68395, + [SMALL_STATE(2191)] = 68418, + [SMALL_STATE(2192)] = 68449, + [SMALL_STATE(2193)] = 68472, + [SMALL_STATE(2194)] = 68495, + [SMALL_STATE(2195)] = 68536, + [SMALL_STATE(2196)] = 68559, + [SMALL_STATE(2197)] = 68582, + [SMALL_STATE(2198)] = 68605, + [SMALL_STATE(2199)] = 68640, + [SMALL_STATE(2200)] = 68663, + [SMALL_STATE(2201)] = 68686, + [SMALL_STATE(2202)] = 68709, + [SMALL_STATE(2203)] = 68732, + [SMALL_STATE(2204)] = 68755, + [SMALL_STATE(2205)] = 68788, + [SMALL_STATE(2206)] = 68811, + [SMALL_STATE(2207)] = 68842, + [SMALL_STATE(2208)] = 68865, + [SMALL_STATE(2209)] = 68888, + [SMALL_STATE(2210)] = 68911, + [SMALL_STATE(2211)] = 68934, + [SMALL_STATE(2212)] = 68957, + [SMALL_STATE(2213)] = 68980, + [SMALL_STATE(2214)] = 69011, + [SMALL_STATE(2215)] = 69042, + [SMALL_STATE(2216)] = 69065, + [SMALL_STATE(2217)] = 69100, + [SMALL_STATE(2218)] = 69131, + [SMALL_STATE(2219)] = 69154, + [SMALL_STATE(2220)] = 69177, + [SMALL_STATE(2221)] = 69212, + [SMALL_STATE(2222)] = 69235, + [SMALL_STATE(2223)] = 69258, + [SMALL_STATE(2224)] = 69281, + [SMALL_STATE(2225)] = 69304, + [SMALL_STATE(2226)] = 69339, + [SMALL_STATE(2227)] = 69362, + [SMALL_STATE(2228)] = 69385, + [SMALL_STATE(2229)] = 69408, + [SMALL_STATE(2230)] = 69431, + [SMALL_STATE(2231)] = 69459, + [SMALL_STATE(2232)] = 69487, + [SMALL_STATE(2233)] = 69519, + [SMALL_STATE(2234)] = 69547, + [SMALL_STATE(2235)] = 69579, + [SMALL_STATE(2236)] = 69617, + [SMALL_STATE(2237)] = 69641, + [SMALL_STATE(2238)] = 69679, + [SMALL_STATE(2239)] = 69707, + [SMALL_STATE(2240)] = 69741, + [SMALL_STATE(2241)] = 69779, + [SMALL_STATE(2242)] = 69803, + [SMALL_STATE(2243)] = 69841, + [SMALL_STATE(2244)] = 69865, + [SMALL_STATE(2245)] = 69897, + [SMALL_STATE(2246)] = 69925, + [SMALL_STATE(2247)] = 69963, + [SMALL_STATE(2248)] = 69993, + [SMALL_STATE(2249)] = 70031, + [SMALL_STATE(2250)] = 70069, + [SMALL_STATE(2251)] = 70107, + [SMALL_STATE(2252)] = 70141, + [SMALL_STATE(2253)] = 70167, + [SMALL_STATE(2254)] = 70195, + [SMALL_STATE(2255)] = 70227, + [SMALL_STATE(2256)] = 70259, + [SMALL_STATE(2257)] = 70289, + [SMALL_STATE(2258)] = 70321, + [SMALL_STATE(2259)] = 70359, + [SMALL_STATE(2260)] = 70397, + [SMALL_STATE(2261)] = 70433, + [SMALL_STATE(2262)] = 70461, + [SMALL_STATE(2263)] = 70499, + [SMALL_STATE(2264)] = 70537, + [SMALL_STATE(2265)] = 70567, + [SMALL_STATE(2266)] = 70591, + [SMALL_STATE(2267)] = 70629, + [SMALL_STATE(2268)] = 70661, + [SMALL_STATE(2269)] = 70699, + [SMALL_STATE(2270)] = 70725, + [SMALL_STATE(2271)] = 70751, + [SMALL_STATE(2272)] = 70775, + [SMALL_STATE(2273)] = 70807, + [SMALL_STATE(2274)] = 70835, + [SMALL_STATE(2275)] = 70867, + [SMALL_STATE(2276)] = 70905, + [SMALL_STATE(2277)] = 70937, + [SMALL_STATE(2278)] = 70967, + [SMALL_STATE(2279)] = 70999, + [SMALL_STATE(2280)] = 71031, + [SMALL_STATE(2281)] = 71069, + [SMALL_STATE(2282)] = 71101, + [SMALL_STATE(2283)] = 71136, + [SMALL_STATE(2284)] = 71171, + [SMALL_STATE(2285)] = 71204, + [SMALL_STATE(2286)] = 71239, + [SMALL_STATE(2287)] = 71274, + [SMALL_STATE(2288)] = 71309, + [SMALL_STATE(2289)] = 71344, + [SMALL_STATE(2290)] = 71379, + [SMALL_STATE(2291)] = 71414, + [SMALL_STATE(2292)] = 71449, + [SMALL_STATE(2293)] = 71482, + [SMALL_STATE(2294)] = 71517, + [SMALL_STATE(2295)] = 71542, + [SMALL_STATE(2296)] = 71563, + [SMALL_STATE(2297)] = 71598, + [SMALL_STATE(2298)] = 71625, + [SMALL_STATE(2299)] = 71660, + [SMALL_STATE(2300)] = 71695, + [SMALL_STATE(2301)] = 71730, + [SMALL_STATE(2302)] = 71765, + [SMALL_STATE(2303)] = 71800, + [SMALL_STATE(2304)] = 71821, + [SMALL_STATE(2305)] = 71856, + [SMALL_STATE(2306)] = 71891, + [SMALL_STATE(2307)] = 71924, + [SMALL_STATE(2308)] = 71949, + [SMALL_STATE(2309)] = 71984, + [SMALL_STATE(2310)] = 72019, + [SMALL_STATE(2311)] = 72054, + [SMALL_STATE(2312)] = 72075, + [SMALL_STATE(2313)] = 72110, + [SMALL_STATE(2314)] = 72145, + [SMALL_STATE(2315)] = 72180, + [SMALL_STATE(2316)] = 72215, + [SMALL_STATE(2317)] = 72250, + [SMALL_STATE(2318)] = 72285, + [SMALL_STATE(2319)] = 72320, + [SMALL_STATE(2320)] = 72355, + [SMALL_STATE(2321)] = 72390, + [SMALL_STATE(2322)] = 72425, + [SMALL_STATE(2323)] = 72460, + [SMALL_STATE(2324)] = 72495, + [SMALL_STATE(2325)] = 72530, + [SMALL_STATE(2326)] = 72563, + [SMALL_STATE(2327)] = 72598, + [SMALL_STATE(2328)] = 72633, + [SMALL_STATE(2329)] = 72668, + [SMALL_STATE(2330)] = 72697, + [SMALL_STATE(2331)] = 72732, + [SMALL_STATE(2332)] = 72767, + [SMALL_STATE(2333)] = 72792, + [SMALL_STATE(2334)] = 72825, + [SMALL_STATE(2335)] = 72860, + [SMALL_STATE(2336)] = 72881, + [SMALL_STATE(2337)] = 72913, + [SMALL_STATE(2338)] = 72945, + [SMALL_STATE(2339)] = 72977, + [SMALL_STATE(2340)] = 73009, + [SMALL_STATE(2341)] = 73041, + [SMALL_STATE(2342)] = 73063, + [SMALL_STATE(2343)] = 73095, + [SMALL_STATE(2344)] = 73127, + [SMALL_STATE(2345)] = 73159, + [SMALL_STATE(2346)] = 73191, + [SMALL_STATE(2347)] = 73213, + [SMALL_STATE(2348)] = 73243, + [SMALL_STATE(2349)] = 73273, + [SMALL_STATE(2350)] = 73295, + [SMALL_STATE(2351)] = 73327, + [SMALL_STATE(2352)] = 73357, + [SMALL_STATE(2353)] = 73387, + [SMALL_STATE(2354)] = 73417, + [SMALL_STATE(2355)] = 73447, + [SMALL_STATE(2356)] = 73479, + [SMALL_STATE(2357)] = 73511, + [SMALL_STATE(2358)] = 73537, + [SMALL_STATE(2359)] = 73569, + [SMALL_STATE(2360)] = 73601, + [SMALL_STATE(2361)] = 73633, + [SMALL_STATE(2362)] = 73665, + [SMALL_STATE(2363)] = 73695, + [SMALL_STATE(2364)] = 73725, + [SMALL_STATE(2365)] = 73757, + [SMALL_STATE(2366)] = 73787, + [SMALL_STATE(2367)] = 73819, + [SMALL_STATE(2368)] = 73851, + [SMALL_STATE(2369)] = 73883, + [SMALL_STATE(2370)] = 73915, + [SMALL_STATE(2371)] = 73937, + [SMALL_STATE(2372)] = 73965, + [SMALL_STATE(2373)] = 73997, + [SMALL_STATE(2374)] = 74029, + [SMALL_STATE(2375)] = 74061, + [SMALL_STATE(2376)] = 74093, + [SMALL_STATE(2377)] = 74121, + [SMALL_STATE(2378)] = 74147, + [SMALL_STATE(2379)] = 74175, + [SMALL_STATE(2380)] = 74207, + [SMALL_STATE(2381)] = 74239, + [SMALL_STATE(2382)] = 74269, + [SMALL_STATE(2383)] = 74301, + [SMALL_STATE(2384)] = 74333, + [SMALL_STATE(2385)] = 74365, + [SMALL_STATE(2386)] = 74397, + [SMALL_STATE(2387)] = 74425, + [SMALL_STATE(2388)] = 74451, + [SMALL_STATE(2389)] = 74483, + [SMALL_STATE(2390)] = 74515, + [SMALL_STATE(2391)] = 74547, + [SMALL_STATE(2392)] = 74573, + [SMALL_STATE(2393)] = 74605, + [SMALL_STATE(2394)] = 74637, + [SMALL_STATE(2395)] = 74669, + [SMALL_STATE(2396)] = 74697, + [SMALL_STATE(2397)] = 74719, + [SMALL_STATE(2398)] = 74751, + [SMALL_STATE(2399)] = 74783, + [SMALL_STATE(2400)] = 74805, + [SMALL_STATE(2401)] = 74834, + [SMALL_STATE(2402)] = 74863, + [SMALL_STATE(2403)] = 74892, + [SMALL_STATE(2404)] = 74921, + [SMALL_STATE(2405)] = 74950, + [SMALL_STATE(2406)] = 74979, + [SMALL_STATE(2407)] = 75008, + [SMALL_STATE(2408)] = 75037, + [SMALL_STATE(2409)] = 75066, + [SMALL_STATE(2410)] = 75095, + [SMALL_STATE(2411)] = 75118, + [SMALL_STATE(2412)] = 75143, + [SMALL_STATE(2413)] = 75172, + [SMALL_STATE(2414)] = 75201, + [SMALL_STATE(2415)] = 75222, + [SMALL_STATE(2416)] = 75249, + [SMALL_STATE(2417)] = 75268, + [SMALL_STATE(2418)] = 75289, + [SMALL_STATE(2419)] = 75318, + [SMALL_STATE(2420)] = 75339, + [SMALL_STATE(2421)] = 75368, + [SMALL_STATE(2422)] = 75389, + [SMALL_STATE(2423)] = 75418, + [SMALL_STATE(2424)] = 75447, + [SMALL_STATE(2425)] = 75474, + [SMALL_STATE(2426)] = 75495, + [SMALL_STATE(2427)] = 75522, + [SMALL_STATE(2428)] = 75551, + [SMALL_STATE(2429)] = 75580, + [SMALL_STATE(2430)] = 75609, + [SMALL_STATE(2431)] = 75638, + [SMALL_STATE(2432)] = 75661, + [SMALL_STATE(2433)] = 75690, + [SMALL_STATE(2434)] = 75719, + [SMALL_STATE(2435)] = 75748, + [SMALL_STATE(2436)] = 75767, + [SMALL_STATE(2437)] = 75796, + [SMALL_STATE(2438)] = 75819, + [SMALL_STATE(2439)] = 75842, + [SMALL_STATE(2440)] = 75865, + [SMALL_STATE(2441)] = 75894, + [SMALL_STATE(2442)] = 75923, + [SMALL_STATE(2443)] = 75948, + [SMALL_STATE(2444)] = 75969, + [SMALL_STATE(2445)] = 75990, + [SMALL_STATE(2446)] = 76019, + [SMALL_STATE(2447)] = 76048, + [SMALL_STATE(2448)] = 76071, + [SMALL_STATE(2449)] = 76092, + [SMALL_STATE(2450)] = 76113, + [SMALL_STATE(2451)] = 76142, + [SMALL_STATE(2452)] = 76171, + [SMALL_STATE(2453)] = 76194, + [SMALL_STATE(2454)] = 76217, + [SMALL_STATE(2455)] = 76244, + [SMALL_STATE(2456)] = 76265, + [SMALL_STATE(2457)] = 76294, + [SMALL_STATE(2458)] = 76319, + [SMALL_STATE(2459)] = 76348, + [SMALL_STATE(2460)] = 76369, + [SMALL_STATE(2461)] = 76396, + [SMALL_STATE(2462)] = 76423, + [SMALL_STATE(2463)] = 76444, + [SMALL_STATE(2464)] = 76473, + [SMALL_STATE(2465)] = 76502, + [SMALL_STATE(2466)] = 76531, + [SMALL_STATE(2467)] = 76560, + [SMALL_STATE(2468)] = 76589, + [SMALL_STATE(2469)] = 76618, + [SMALL_STATE(2470)] = 76647, + [SMALL_STATE(2471)] = 76668, + [SMALL_STATE(2472)] = 76691, + [SMALL_STATE(2473)] = 76716, + [SMALL_STATE(2474)] = 76739, + [SMALL_STATE(2475)] = 76768, + [SMALL_STATE(2476)] = 76797, + [SMALL_STATE(2477)] = 76826, + [SMALL_STATE(2478)] = 76855, + [SMALL_STATE(2479)] = 76884, + [SMALL_STATE(2480)] = 76913, + [SMALL_STATE(2481)] = 76934, + [SMALL_STATE(2482)] = 76955, + [SMALL_STATE(2483)] = 76984, + [SMALL_STATE(2484)] = 77013, + [SMALL_STATE(2485)] = 77042, + [SMALL_STATE(2486)] = 77065, + [SMALL_STATE(2487)] = 77094, + [SMALL_STATE(2488)] = 77123, + [SMALL_STATE(2489)] = 77152, + [SMALL_STATE(2490)] = 77181, + [SMALL_STATE(2491)] = 77210, + [SMALL_STATE(2492)] = 77233, + [SMALL_STATE(2493)] = 77262, + [SMALL_STATE(2494)] = 77291, + [SMALL_STATE(2495)] = 77320, + [SMALL_STATE(2496)] = 77343, + [SMALL_STATE(2497)] = 77372, + [SMALL_STATE(2498)] = 77395, + [SMALL_STATE(2499)] = 77424, + [SMALL_STATE(2500)] = 77447, + [SMALL_STATE(2501)] = 77476, + [SMALL_STATE(2502)] = 77505, + [SMALL_STATE(2503)] = 77528, + [SMALL_STATE(2504)] = 77557, + [SMALL_STATE(2505)] = 77586, + [SMALL_STATE(2506)] = 77607, + [SMALL_STATE(2507)] = 77625, + [SMALL_STATE(2508)] = 77651, + [SMALL_STATE(2509)] = 77669, + [SMALL_STATE(2510)] = 77695, + [SMALL_STATE(2511)] = 77713, + [SMALL_STATE(2512)] = 77731, + [SMALL_STATE(2513)] = 77749, + [SMALL_STATE(2514)] = 77767, + [SMALL_STATE(2515)] = 77793, + [SMALL_STATE(2516)] = 77817, + [SMALL_STATE(2517)] = 77843, + [SMALL_STATE(2518)] = 77867, + [SMALL_STATE(2519)] = 77893, + [SMALL_STATE(2520)] = 77915, + [SMALL_STATE(2521)] = 77935, + [SMALL_STATE(2522)] = 77961, + [SMALL_STATE(2523)] = 77983, + [SMALL_STATE(2524)] = 78009, + [SMALL_STATE(2525)] = 78033, + [SMALL_STATE(2526)] = 78059, + [SMALL_STATE(2527)] = 78085, + [SMALL_STATE(2528)] = 78109, + [SMALL_STATE(2529)] = 78133, + [SMALL_STATE(2530)] = 78157, + [SMALL_STATE(2531)] = 78183, + [SMALL_STATE(2532)] = 78209, + [SMALL_STATE(2533)] = 78235, + [SMALL_STATE(2534)] = 78261, + [SMALL_STATE(2535)] = 78287, + [SMALL_STATE(2536)] = 78311, + [SMALL_STATE(2537)] = 78329, + [SMALL_STATE(2538)] = 78355, + [SMALL_STATE(2539)] = 78381, + [SMALL_STATE(2540)] = 78399, + [SMALL_STATE(2541)] = 78417, + [SMALL_STATE(2542)] = 78439, + [SMALL_STATE(2543)] = 78465, + [SMALL_STATE(2544)] = 78491, + [SMALL_STATE(2545)] = 78517, + [SMALL_STATE(2546)] = 78535, + [SMALL_STATE(2547)] = 78561, + [SMALL_STATE(2548)] = 78583, + [SMALL_STATE(2549)] = 78609, + [SMALL_STATE(2550)] = 78635, + [SMALL_STATE(2551)] = 78661, + [SMALL_STATE(2552)] = 78679, + [SMALL_STATE(2553)] = 78705, + [SMALL_STATE(2554)] = 78731, + [SMALL_STATE(2555)] = 78749, + [SMALL_STATE(2556)] = 78771, + [SMALL_STATE(2557)] = 78797, + [SMALL_STATE(2558)] = 78815, + [SMALL_STATE(2559)] = 78841, + [SMALL_STATE(2560)] = 78865, + [SMALL_STATE(2561)] = 78883, + [SMALL_STATE(2562)] = 78909, + [SMALL_STATE(2563)] = 78933, + [SMALL_STATE(2564)] = 78957, + [SMALL_STATE(2565)] = 78983, + [SMALL_STATE(2566)] = 79009, + [SMALL_STATE(2567)] = 79031, + [SMALL_STATE(2568)] = 79057, + [SMALL_STATE(2569)] = 79075, + [SMALL_STATE(2570)] = 79101, + [SMALL_STATE(2571)] = 79119, + [SMALL_STATE(2572)] = 79143, + [SMALL_STATE(2573)] = 79161, + [SMALL_STATE(2574)] = 79187, + [SMALL_STATE(2575)] = 79207, + [SMALL_STATE(2576)] = 79233, + [SMALL_STATE(2577)] = 79251, + [SMALL_STATE(2578)] = 79269, + [SMALL_STATE(2579)] = 79293, + [SMALL_STATE(2580)] = 79319, + [SMALL_STATE(2581)] = 79341, + [SMALL_STATE(2582)] = 79367, + [SMALL_STATE(2583)] = 79385, + [SMALL_STATE(2584)] = 79411, + [SMALL_STATE(2585)] = 79437, + [SMALL_STATE(2586)] = 79461, + [SMALL_STATE(2587)] = 79487, + [SMALL_STATE(2588)] = 79505, + [SMALL_STATE(2589)] = 79531, + [SMALL_STATE(2590)] = 79557, + [SMALL_STATE(2591)] = 79583, + [SMALL_STATE(2592)] = 79607, + [SMALL_STATE(2593)] = 79633, + [SMALL_STATE(2594)] = 79651, + [SMALL_STATE(2595)] = 79677, + [SMALL_STATE(2596)] = 79697, + [SMALL_STATE(2597)] = 79715, + [SMALL_STATE(2598)] = 79741, + [SMALL_STATE(2599)] = 79767, + [SMALL_STATE(2600)] = 79793, + [SMALL_STATE(2601)] = 79813, + [SMALL_STATE(2602)] = 79839, + [SMALL_STATE(2603)] = 79865, + [SMALL_STATE(2604)] = 79891, + [SMALL_STATE(2605)] = 79909, + [SMALL_STATE(2606)] = 79935, + [SMALL_STATE(2607)] = 79953, + [SMALL_STATE(2608)] = 79975, + [SMALL_STATE(2609)] = 80001, + [SMALL_STATE(2610)] = 80027, + [SMALL_STATE(2611)] = 80051, + [SMALL_STATE(2612)] = 80075, + [SMALL_STATE(2613)] = 80101, + [SMALL_STATE(2614)] = 80119, + [SMALL_STATE(2615)] = 80142, + [SMALL_STATE(2616)] = 80165, + [SMALL_STATE(2617)] = 80188, + [SMALL_STATE(2618)] = 80211, + [SMALL_STATE(2619)] = 80232, + [SMALL_STATE(2620)] = 80253, + [SMALL_STATE(2621)] = 80276, + [SMALL_STATE(2622)] = 80299, + [SMALL_STATE(2623)] = 80322, + [SMALL_STATE(2624)] = 80345, + [SMALL_STATE(2625)] = 80368, + [SMALL_STATE(2626)] = 80385, + [SMALL_STATE(2627)] = 80408, + [SMALL_STATE(2628)] = 80431, + [SMALL_STATE(2629)] = 80454, + [SMALL_STATE(2630)] = 80475, + [SMALL_STATE(2631)] = 80498, + [SMALL_STATE(2632)] = 80521, + [SMALL_STATE(2633)] = 80544, + [SMALL_STATE(2634)] = 80567, + [SMALL_STATE(2635)] = 80588, + [SMALL_STATE(2636)] = 80611, + [SMALL_STATE(2637)] = 80634, + [SMALL_STATE(2638)] = 80657, + [SMALL_STATE(2639)] = 80678, + [SMALL_STATE(2640)] = 80701, + [SMALL_STATE(2641)] = 80724, + [SMALL_STATE(2642)] = 80747, + [SMALL_STATE(2643)] = 80770, + [SMALL_STATE(2644)] = 80793, + [SMALL_STATE(2645)] = 80816, + [SMALL_STATE(2646)] = 80839, + [SMALL_STATE(2647)] = 80862, + [SMALL_STATE(2648)] = 80885, + [SMALL_STATE(2649)] = 80908, + [SMALL_STATE(2650)] = 80931, + [SMALL_STATE(2651)] = 80954, + [SMALL_STATE(2652)] = 80971, + [SMALL_STATE(2653)] = 80994, + [SMALL_STATE(2654)] = 81017, + [SMALL_STATE(2655)] = 81040, + [SMALL_STATE(2656)] = 81063, + [SMALL_STATE(2657)] = 81086, + [SMALL_STATE(2658)] = 81109, + [SMALL_STATE(2659)] = 81128, + [SMALL_STATE(2660)] = 81151, + [SMALL_STATE(2661)] = 81174, + [SMALL_STATE(2662)] = 81195, + [SMALL_STATE(2663)] = 81218, + [SMALL_STATE(2664)] = 81241, + [SMALL_STATE(2665)] = 81264, + [SMALL_STATE(2666)] = 81287, + [SMALL_STATE(2667)] = 81310, + [SMALL_STATE(2668)] = 81333, + [SMALL_STATE(2669)] = 81356, + [SMALL_STATE(2670)] = 81379, + [SMALL_STATE(2671)] = 81402, + [SMALL_STATE(2672)] = 81425, + [SMALL_STATE(2673)] = 81448, + [SMALL_STATE(2674)] = 81471, + [SMALL_STATE(2675)] = 81494, + [SMALL_STATE(2676)] = 81517, + [SMALL_STATE(2677)] = 81540, + [SMALL_STATE(2678)] = 81563, + [SMALL_STATE(2679)] = 81586, + [SMALL_STATE(2680)] = 81609, + [SMALL_STATE(2681)] = 81630, + [SMALL_STATE(2682)] = 81653, + [SMALL_STATE(2683)] = 81676, + [SMALL_STATE(2684)] = 81699, + [SMALL_STATE(2685)] = 81722, + [SMALL_STATE(2686)] = 81741, + [SMALL_STATE(2687)] = 81764, + [SMALL_STATE(2688)] = 81787, + [SMALL_STATE(2689)] = 81810, + [SMALL_STATE(2690)] = 81833, + [SMALL_STATE(2691)] = 81856, + [SMALL_STATE(2692)] = 81879, + [SMALL_STATE(2693)] = 81902, + [SMALL_STATE(2694)] = 81925, + [SMALL_STATE(2695)] = 81946, + [SMALL_STATE(2696)] = 81969, + [SMALL_STATE(2697)] = 81992, + [SMALL_STATE(2698)] = 82015, + [SMALL_STATE(2699)] = 82038, + [SMALL_STATE(2700)] = 82061, + [SMALL_STATE(2701)] = 82084, + [SMALL_STATE(2702)] = 82107, + [SMALL_STATE(2703)] = 82130, + [SMALL_STATE(2704)] = 82153, + [SMALL_STATE(2705)] = 82176, + [SMALL_STATE(2706)] = 82199, + [SMALL_STATE(2707)] = 82222, + [SMALL_STATE(2708)] = 82245, + [SMALL_STATE(2709)] = 82268, + [SMALL_STATE(2710)] = 82287, + [SMALL_STATE(2711)] = 82310, + [SMALL_STATE(2712)] = 82333, + [SMALL_STATE(2713)] = 82356, + [SMALL_STATE(2714)] = 82379, + [SMALL_STATE(2715)] = 82402, + [SMALL_STATE(2716)] = 82425, + [SMALL_STATE(2717)] = 82448, + [SMALL_STATE(2718)] = 82471, + [SMALL_STATE(2719)] = 82490, + [SMALL_STATE(2720)] = 82513, + [SMALL_STATE(2721)] = 82536, + [SMALL_STATE(2722)] = 82559, + [SMALL_STATE(2723)] = 82582, + [SMALL_STATE(2724)] = 82605, + [SMALL_STATE(2725)] = 82626, + [SMALL_STATE(2726)] = 82649, + [SMALL_STATE(2727)] = 82672, + [SMALL_STATE(2728)] = 82695, + [SMALL_STATE(2729)] = 82718, + [SMALL_STATE(2730)] = 82741, + [SMALL_STATE(2731)] = 82764, + [SMALL_STATE(2732)] = 82787, + [SMALL_STATE(2733)] = 82810, + [SMALL_STATE(2734)] = 82831, + [SMALL_STATE(2735)] = 82854, + [SMALL_STATE(2736)] = 82873, + [SMALL_STATE(2737)] = 82896, + [SMALL_STATE(2738)] = 82919, + [SMALL_STATE(2739)] = 82942, + [SMALL_STATE(2740)] = 82965, + [SMALL_STATE(2741)] = 82988, + [SMALL_STATE(2742)] = 83011, + [SMALL_STATE(2743)] = 83034, + [SMALL_STATE(2744)] = 83057, + [SMALL_STATE(2745)] = 83080, + [SMALL_STATE(2746)] = 83103, + [SMALL_STATE(2747)] = 83124, + [SMALL_STATE(2748)] = 83147, + [SMALL_STATE(2749)] = 83170, + [SMALL_STATE(2750)] = 83193, + [SMALL_STATE(2751)] = 83216, + [SMALL_STATE(2752)] = 83239, + [SMALL_STATE(2753)] = 83260, + [SMALL_STATE(2754)] = 83283, + [SMALL_STATE(2755)] = 83306, + [SMALL_STATE(2756)] = 83329, + [SMALL_STATE(2757)] = 83352, + [SMALL_STATE(2758)] = 83375, + [SMALL_STATE(2759)] = 83398, + [SMALL_STATE(2760)] = 83421, + [SMALL_STATE(2761)] = 83440, + [SMALL_STATE(2762)] = 83459, + [SMALL_STATE(2763)] = 83480, + [SMALL_STATE(2764)] = 83497, + [SMALL_STATE(2765)] = 83516, + [SMALL_STATE(2766)] = 83537, + [SMALL_STATE(2767)] = 83556, + [SMALL_STATE(2768)] = 83579, + [SMALL_STATE(2769)] = 83602, + [SMALL_STATE(2770)] = 83621, + [SMALL_STATE(2771)] = 83644, + [SMALL_STATE(2772)] = 83663, + [SMALL_STATE(2773)] = 83686, + [SMALL_STATE(2774)] = 83703, + [SMALL_STATE(2775)] = 83726, + [SMALL_STATE(2776)] = 83749, + [SMALL_STATE(2777)] = 83772, + [SMALL_STATE(2778)] = 83791, + [SMALL_STATE(2779)] = 83810, + [SMALL_STATE(2780)] = 83831, + [SMALL_STATE(2781)] = 83850, + [SMALL_STATE(2782)] = 83871, + [SMALL_STATE(2783)] = 83894, + [SMALL_STATE(2784)] = 83917, + [SMALL_STATE(2785)] = 83940, + [SMALL_STATE(2786)] = 83961, + [SMALL_STATE(2787)] = 83980, + [SMALL_STATE(2788)] = 84003, + [SMALL_STATE(2789)] = 84026, + [SMALL_STATE(2790)] = 84049, + [SMALL_STATE(2791)] = 84072, + [SMALL_STATE(2792)] = 84095, + [SMALL_STATE(2793)] = 84118, + [SMALL_STATE(2794)] = 84139, + [SMALL_STATE(2795)] = 84162, + [SMALL_STATE(2796)] = 84185, + [SMALL_STATE(2797)] = 84208, + [SMALL_STATE(2798)] = 84231, + [SMALL_STATE(2799)] = 84250, + [SMALL_STATE(2800)] = 84269, + [SMALL_STATE(2801)] = 84290, + [SMALL_STATE(2802)] = 84313, + [SMALL_STATE(2803)] = 84336, + [SMALL_STATE(2804)] = 84359, + [SMALL_STATE(2805)] = 84382, + [SMALL_STATE(2806)] = 84403, + [SMALL_STATE(2807)] = 84424, + [SMALL_STATE(2808)] = 84443, + [SMALL_STATE(2809)] = 84466, + [SMALL_STATE(2810)] = 84489, + [SMALL_STATE(2811)] = 84508, + [SMALL_STATE(2812)] = 84531, + [SMALL_STATE(2813)] = 84554, + [SMALL_STATE(2814)] = 84577, + [SMALL_STATE(2815)] = 84598, + [SMALL_STATE(2816)] = 84621, + [SMALL_STATE(2817)] = 84644, + [SMALL_STATE(2818)] = 84667, + [SMALL_STATE(2819)] = 84690, + [SMALL_STATE(2820)] = 84709, + [SMALL_STATE(2821)] = 84726, + [SMALL_STATE(2822)] = 84749, + [SMALL_STATE(2823)] = 84768, + [SMALL_STATE(2824)] = 84791, + [SMALL_STATE(2825)] = 84814, + [SMALL_STATE(2826)] = 84835, + [SMALL_STATE(2827)] = 84858, + [SMALL_STATE(2828)] = 84881, + [SMALL_STATE(2829)] = 84900, + [SMALL_STATE(2830)] = 84923, + [SMALL_STATE(2831)] = 84946, + [SMALL_STATE(2832)] = 84969, + [SMALL_STATE(2833)] = 84988, + [SMALL_STATE(2834)] = 85007, + [SMALL_STATE(2835)] = 85026, + [SMALL_STATE(2836)] = 85049, + [SMALL_STATE(2837)] = 85072, + [SMALL_STATE(2838)] = 85095, + [SMALL_STATE(2839)] = 85118, + [SMALL_STATE(2840)] = 85141, + [SMALL_STATE(2841)] = 85164, + [SMALL_STATE(2842)] = 85187, + [SMALL_STATE(2843)] = 85210, + [SMALL_STATE(2844)] = 85233, + [SMALL_STATE(2845)] = 85254, + [SMALL_STATE(2846)] = 85277, + [SMALL_STATE(2847)] = 85300, + [SMALL_STATE(2848)] = 85323, + [SMALL_STATE(2849)] = 85346, + [SMALL_STATE(2850)] = 85367, + [SMALL_STATE(2851)] = 85390, + [SMALL_STATE(2852)] = 85413, + [SMALL_STATE(2853)] = 85432, + [SMALL_STATE(2854)] = 85455, + [SMALL_STATE(2855)] = 85478, + [SMALL_STATE(2856)] = 85499, + [SMALL_STATE(2857)] = 85522, + [SMALL_STATE(2858)] = 85541, + [SMALL_STATE(2859)] = 85564, + [SMALL_STATE(2860)] = 85583, + [SMALL_STATE(2861)] = 85606, + [SMALL_STATE(2862)] = 85629, + [SMALL_STATE(2863)] = 85648, + [SMALL_STATE(2864)] = 85671, + [SMALL_STATE(2865)] = 85694, + [SMALL_STATE(2866)] = 85713, + [SMALL_STATE(2867)] = 85736, + [SMALL_STATE(2868)] = 85759, + [SMALL_STATE(2869)] = 85778, + [SMALL_STATE(2870)] = 85801, + [SMALL_STATE(2871)] = 85824, + [SMALL_STATE(2872)] = 85847, + [SMALL_STATE(2873)] = 85870, + [SMALL_STATE(2874)] = 85893, + [SMALL_STATE(2875)] = 85916, + [SMALL_STATE(2876)] = 85935, + [SMALL_STATE(2877)] = 85955, + [SMALL_STATE(2878)] = 85975, + [SMALL_STATE(2879)] = 85995, + [SMALL_STATE(2880)] = 86015, + [SMALL_STATE(2881)] = 86035, + [SMALL_STATE(2882)] = 86055, + [SMALL_STATE(2883)] = 86071, + [SMALL_STATE(2884)] = 86087, + [SMALL_STATE(2885)] = 86107, + [SMALL_STATE(2886)] = 86127, + [SMALL_STATE(2887)] = 86147, + [SMALL_STATE(2888)] = 86167, + [SMALL_STATE(2889)] = 86187, + [SMALL_STATE(2890)] = 86207, + [SMALL_STATE(2891)] = 86227, + [SMALL_STATE(2892)] = 86247, + [SMALL_STATE(2893)] = 86267, + [SMALL_STATE(2894)] = 86287, + [SMALL_STATE(2895)] = 86307, + [SMALL_STATE(2896)] = 86327, + [SMALL_STATE(2897)] = 86347, + [SMALL_STATE(2898)] = 86367, + [SMALL_STATE(2899)] = 86387, + [SMALL_STATE(2900)] = 86407, + [SMALL_STATE(2901)] = 86427, + [SMALL_STATE(2902)] = 86447, + [SMALL_STATE(2903)] = 86463, + [SMALL_STATE(2904)] = 86481, + [SMALL_STATE(2905)] = 86497, + [SMALL_STATE(2906)] = 86513, + [SMALL_STATE(2907)] = 86533, + [SMALL_STATE(2908)] = 86553, + [SMALL_STATE(2909)] = 86573, + [SMALL_STATE(2910)] = 86593, + [SMALL_STATE(2911)] = 86613, + [SMALL_STATE(2912)] = 86633, + [SMALL_STATE(2913)] = 86649, + [SMALL_STATE(2914)] = 86667, + [SMALL_STATE(2915)] = 86687, + [SMALL_STATE(2916)] = 86707, + [SMALL_STATE(2917)] = 86727, + [SMALL_STATE(2918)] = 86743, + [SMALL_STATE(2919)] = 86763, + [SMALL_STATE(2920)] = 86783, + [SMALL_STATE(2921)] = 86803, + [SMALL_STATE(2922)] = 86823, + [SMALL_STATE(2923)] = 86843, + [SMALL_STATE(2924)] = 86863, + [SMALL_STATE(2925)] = 86879, + [SMALL_STATE(2926)] = 86899, + [SMALL_STATE(2927)] = 86919, + [SMALL_STATE(2928)] = 86939, + [SMALL_STATE(2929)] = 86959, + [SMALL_STATE(2930)] = 86977, + [SMALL_STATE(2931)] = 86993, + [SMALL_STATE(2932)] = 87013, + [SMALL_STATE(2933)] = 87033, + [SMALL_STATE(2934)] = 87053, + [SMALL_STATE(2935)] = 87073, + [SMALL_STATE(2936)] = 87093, + [SMALL_STATE(2937)] = 87113, + [SMALL_STATE(2938)] = 87133, + [SMALL_STATE(2939)] = 87153, + [SMALL_STATE(2940)] = 87169, + [SMALL_STATE(2941)] = 87187, + [SMALL_STATE(2942)] = 87207, + [SMALL_STATE(2943)] = 87227, + [SMALL_STATE(2944)] = 87247, + [SMALL_STATE(2945)] = 87267, + [SMALL_STATE(2946)] = 87287, + [SMALL_STATE(2947)] = 87307, + [SMALL_STATE(2948)] = 87325, + [SMALL_STATE(2949)] = 87345, + [SMALL_STATE(2950)] = 87363, + [SMALL_STATE(2951)] = 87379, + [SMALL_STATE(2952)] = 87395, + [SMALL_STATE(2953)] = 87415, + [SMALL_STATE(2954)] = 87435, + [SMALL_STATE(2955)] = 87451, + [SMALL_STATE(2956)] = 87469, + [SMALL_STATE(2957)] = 87487, + [SMALL_STATE(2958)] = 87503, + [SMALL_STATE(2959)] = 87523, + [SMALL_STATE(2960)] = 87539, + [SMALL_STATE(2961)] = 87559, + [SMALL_STATE(2962)] = 87577, + [SMALL_STATE(2963)] = 87597, + [SMALL_STATE(2964)] = 87617, + [SMALL_STATE(2965)] = 87633, + [SMALL_STATE(2966)] = 87653, + [SMALL_STATE(2967)] = 87673, + [SMALL_STATE(2968)] = 87693, + [SMALL_STATE(2969)] = 87713, + [SMALL_STATE(2970)] = 87729, + [SMALL_STATE(2971)] = 87749, + [SMALL_STATE(2972)] = 87769, + [SMALL_STATE(2973)] = 87789, + [SMALL_STATE(2974)] = 87809, + [SMALL_STATE(2975)] = 87829, + [SMALL_STATE(2976)] = 87849, + [SMALL_STATE(2977)] = 87869, + [SMALL_STATE(2978)] = 87889, + [SMALL_STATE(2979)] = 87909, + [SMALL_STATE(2980)] = 87929, + [SMALL_STATE(2981)] = 87949, + [SMALL_STATE(2982)] = 87965, + [SMALL_STATE(2983)] = 87985, + [SMALL_STATE(2984)] = 88005, + [SMALL_STATE(2985)] = 88025, + [SMALL_STATE(2986)] = 88043, + [SMALL_STATE(2987)] = 88063, + [SMALL_STATE(2988)] = 88083, + [SMALL_STATE(2989)] = 88103, + [SMALL_STATE(2990)] = 88123, + [SMALL_STATE(2991)] = 88143, + [SMALL_STATE(2992)] = 88163, + [SMALL_STATE(2993)] = 88183, + [SMALL_STATE(2994)] = 88199, + [SMALL_STATE(2995)] = 88219, + [SMALL_STATE(2996)] = 88239, + [SMALL_STATE(2997)] = 88255, + [SMALL_STATE(2998)] = 88275, + [SMALL_STATE(2999)] = 88291, + [SMALL_STATE(3000)] = 88311, + [SMALL_STATE(3001)] = 88331, + [SMALL_STATE(3002)] = 88351, + [SMALL_STATE(3003)] = 88371, + [SMALL_STATE(3004)] = 88387, + [SMALL_STATE(3005)] = 88407, + [SMALL_STATE(3006)] = 88427, + [SMALL_STATE(3007)] = 88447, + [SMALL_STATE(3008)] = 88463, + [SMALL_STATE(3009)] = 88481, + [SMALL_STATE(3010)] = 88499, + [SMALL_STATE(3011)] = 88515, + [SMALL_STATE(3012)] = 88531, + [SMALL_STATE(3013)] = 88549, + [SMALL_STATE(3014)] = 88569, + [SMALL_STATE(3015)] = 88589, + [SMALL_STATE(3016)] = 88609, + [SMALL_STATE(3017)] = 88629, + [SMALL_STATE(3018)] = 88649, + [SMALL_STATE(3019)] = 88667, + [SMALL_STATE(3020)] = 88687, + [SMALL_STATE(3021)] = 88707, + [SMALL_STATE(3022)] = 88725, + [SMALL_STATE(3023)] = 88741, + [SMALL_STATE(3024)] = 88757, + [SMALL_STATE(3025)] = 88773, + [SMALL_STATE(3026)] = 88793, + [SMALL_STATE(3027)] = 88809, + [SMALL_STATE(3028)] = 88829, + [SMALL_STATE(3029)] = 88845, + [SMALL_STATE(3030)] = 88861, + [SMALL_STATE(3031)] = 88881, + [SMALL_STATE(3032)] = 88901, + [SMALL_STATE(3033)] = 88921, + [SMALL_STATE(3034)] = 88941, + [SMALL_STATE(3035)] = 88961, + [SMALL_STATE(3036)] = 88981, + [SMALL_STATE(3037)] = 88997, + [SMALL_STATE(3038)] = 89013, + [SMALL_STATE(3039)] = 89033, + [SMALL_STATE(3040)] = 89053, + [SMALL_STATE(3041)] = 89073, + [SMALL_STATE(3042)] = 89089, + [SMALL_STATE(3043)] = 89109, + [SMALL_STATE(3044)] = 89129, + [SMALL_STATE(3045)] = 89145, + [SMALL_STATE(3046)] = 89165, + [SMALL_STATE(3047)] = 89181, + [SMALL_STATE(3048)] = 89201, + [SMALL_STATE(3049)] = 89221, + [SMALL_STATE(3050)] = 89241, + [SMALL_STATE(3051)] = 89261, + [SMALL_STATE(3052)] = 89279, + [SMALL_STATE(3053)] = 89299, + [SMALL_STATE(3054)] = 89315, + [SMALL_STATE(3055)] = 89333, + [SMALL_STATE(3056)] = 89353, + [SMALL_STATE(3057)] = 89373, + [SMALL_STATE(3058)] = 89389, + [SMALL_STATE(3059)] = 89409, + [SMALL_STATE(3060)] = 89425, + [SMALL_STATE(3061)] = 89443, + [SMALL_STATE(3062)] = 89463, + [SMALL_STATE(3063)] = 89483, + [SMALL_STATE(3064)] = 89503, + [SMALL_STATE(3065)] = 89523, + [SMALL_STATE(3066)] = 89543, + [SMALL_STATE(3067)] = 89559, + [SMALL_STATE(3068)] = 89577, + [SMALL_STATE(3069)] = 89593, + [SMALL_STATE(3070)] = 89609, + [SMALL_STATE(3071)] = 89627, + [SMALL_STATE(3072)] = 89647, + [SMALL_STATE(3073)] = 89663, + [SMALL_STATE(3074)] = 89683, + [SMALL_STATE(3075)] = 89703, + [SMALL_STATE(3076)] = 89721, + [SMALL_STATE(3077)] = 89741, + [SMALL_STATE(3078)] = 89759, + [SMALL_STATE(3079)] = 89779, + [SMALL_STATE(3080)] = 89797, + [SMALL_STATE(3081)] = 89817, + [SMALL_STATE(3082)] = 89837, + [SMALL_STATE(3083)] = 89857, + [SMALL_STATE(3084)] = 89877, + [SMALL_STATE(3085)] = 89895, + [SMALL_STATE(3086)] = 89915, + [SMALL_STATE(3087)] = 89935, + [SMALL_STATE(3088)] = 89955, + [SMALL_STATE(3089)] = 89973, + [SMALL_STATE(3090)] = 89993, + [SMALL_STATE(3091)] = 90011, + [SMALL_STATE(3092)] = 90029, + [SMALL_STATE(3093)] = 90045, + [SMALL_STATE(3094)] = 90065, + [SMALL_STATE(3095)] = 90085, + [SMALL_STATE(3096)] = 90105, + [SMALL_STATE(3097)] = 90123, + [SMALL_STATE(3098)] = 90143, + [SMALL_STATE(3099)] = 90163, + [SMALL_STATE(3100)] = 90183, + [SMALL_STATE(3101)] = 90203, + [SMALL_STATE(3102)] = 90221, + [SMALL_STATE(3103)] = 90241, + [SMALL_STATE(3104)] = 90261, + [SMALL_STATE(3105)] = 90279, + [SMALL_STATE(3106)] = 90297, + [SMALL_STATE(3107)] = 90313, + [SMALL_STATE(3108)] = 90333, + [SMALL_STATE(3109)] = 90353, + [SMALL_STATE(3110)] = 90371, + [SMALL_STATE(3111)] = 90389, + [SMALL_STATE(3112)] = 90407, + [SMALL_STATE(3113)] = 90425, + [SMALL_STATE(3114)] = 90445, + [SMALL_STATE(3115)] = 90465, + [SMALL_STATE(3116)] = 90485, + [SMALL_STATE(3117)] = 90505, + [SMALL_STATE(3118)] = 90521, + [SMALL_STATE(3119)] = 90539, + [SMALL_STATE(3120)] = 90557, + [SMALL_STATE(3121)] = 90577, + [SMALL_STATE(3122)] = 90597, + [SMALL_STATE(3123)] = 90617, + [SMALL_STATE(3124)] = 90633, + [SMALL_STATE(3125)] = 90653, + [SMALL_STATE(3126)] = 90673, + [SMALL_STATE(3127)] = 90689, + [SMALL_STATE(3128)] = 90709, + [SMALL_STATE(3129)] = 90729, + [SMALL_STATE(3130)] = 90749, + [SMALL_STATE(3131)] = 90769, + [SMALL_STATE(3132)] = 90789, + [SMALL_STATE(3133)] = 90809, + [SMALL_STATE(3134)] = 90829, + [SMALL_STATE(3135)] = 90849, + [SMALL_STATE(3136)] = 90869, + [SMALL_STATE(3137)] = 90889, + [SMALL_STATE(3138)] = 90909, + [SMALL_STATE(3139)] = 90927, + [SMALL_STATE(3140)] = 90947, + [SMALL_STATE(3141)] = 90963, + [SMALL_STATE(3142)] = 90983, + [SMALL_STATE(3143)] = 90999, + [SMALL_STATE(3144)] = 91019, + [SMALL_STATE(3145)] = 91039, + [SMALL_STATE(3146)] = 91057, + [SMALL_STATE(3147)] = 91077, + [SMALL_STATE(3148)] = 91097, + [SMALL_STATE(3149)] = 91117, + [SMALL_STATE(3150)] = 91137, + [SMALL_STATE(3151)] = 91157, + [SMALL_STATE(3152)] = 91177, + [SMALL_STATE(3153)] = 91197, + [SMALL_STATE(3154)] = 91217, + [SMALL_STATE(3155)] = 91237, + [SMALL_STATE(3156)] = 91257, + [SMALL_STATE(3157)] = 91277, + [SMALL_STATE(3158)] = 91295, + [SMALL_STATE(3159)] = 91315, + [SMALL_STATE(3160)] = 91335, + [SMALL_STATE(3161)] = 91355, + [SMALL_STATE(3162)] = 91375, + [SMALL_STATE(3163)] = 91395, + [SMALL_STATE(3164)] = 91411, + [SMALL_STATE(3165)] = 91431, + [SMALL_STATE(3166)] = 91449, + [SMALL_STATE(3167)] = 91469, + [SMALL_STATE(3168)] = 91489, + [SMALL_STATE(3169)] = 91505, + [SMALL_STATE(3170)] = 91525, + [SMALL_STATE(3171)] = 91545, + [SMALL_STATE(3172)] = 91561, + [SMALL_STATE(3173)] = 91581, + [SMALL_STATE(3174)] = 91601, + [SMALL_STATE(3175)] = 91621, + [SMALL_STATE(3176)] = 91641, + [SMALL_STATE(3177)] = 91661, + [SMALL_STATE(3178)] = 91681, + [SMALL_STATE(3179)] = 91701, + [SMALL_STATE(3180)] = 91721, + [SMALL_STATE(3181)] = 91737, + [SMALL_STATE(3182)] = 91753, + [SMALL_STATE(3183)] = 91769, + [SMALL_STATE(3184)] = 91789, + [SMALL_STATE(3185)] = 91809, + [SMALL_STATE(3186)] = 91829, + [SMALL_STATE(3187)] = 91849, + [SMALL_STATE(3188)] = 91864, + [SMALL_STATE(3189)] = 91881, + [SMALL_STATE(3190)] = 91898, + [SMALL_STATE(3191)] = 91915, + [SMALL_STATE(3192)] = 91932, + [SMALL_STATE(3193)] = 91949, + [SMALL_STATE(3194)] = 91966, + [SMALL_STATE(3195)] = 91983, + [SMALL_STATE(3196)] = 92000, + [SMALL_STATE(3197)] = 92017, + [SMALL_STATE(3198)] = 92032, + [SMALL_STATE(3199)] = 92049, + [SMALL_STATE(3200)] = 92066, + [SMALL_STATE(3201)] = 92083, + [SMALL_STATE(3202)] = 92100, + [SMALL_STATE(3203)] = 92117, + [SMALL_STATE(3204)] = 92134, + [SMALL_STATE(3205)] = 92151, + [SMALL_STATE(3206)] = 92168, + [SMALL_STATE(3207)] = 92185, + [SMALL_STATE(3208)] = 92202, + [SMALL_STATE(3209)] = 92219, + [SMALL_STATE(3210)] = 92236, + [SMALL_STATE(3211)] = 92253, + [SMALL_STATE(3212)] = 92270, + [SMALL_STATE(3213)] = 92287, + [SMALL_STATE(3214)] = 92304, + [SMALL_STATE(3215)] = 92319, + [SMALL_STATE(3216)] = 92336, + [SMALL_STATE(3217)] = 92351, + [SMALL_STATE(3218)] = 92368, + [SMALL_STATE(3219)] = 92383, + [SMALL_STATE(3220)] = 92400, + [SMALL_STATE(3221)] = 92417, + [SMALL_STATE(3222)] = 92432, + [SMALL_STATE(3223)] = 92447, + [SMALL_STATE(3224)] = 92462, + [SMALL_STATE(3225)] = 92479, + [SMALL_STATE(3226)] = 92494, + [SMALL_STATE(3227)] = 92511, + [SMALL_STATE(3228)] = 92528, + [SMALL_STATE(3229)] = 92545, + [SMALL_STATE(3230)] = 92562, + [SMALL_STATE(3231)] = 92579, + [SMALL_STATE(3232)] = 92596, + [SMALL_STATE(3233)] = 92613, + [SMALL_STATE(3234)] = 92630, + [SMALL_STATE(3235)] = 92647, + [SMALL_STATE(3236)] = 92664, + [SMALL_STATE(3237)] = 92681, + [SMALL_STATE(3238)] = 92698, + [SMALL_STATE(3239)] = 92715, + [SMALL_STATE(3240)] = 92732, + [SMALL_STATE(3241)] = 92749, + [SMALL_STATE(3242)] = 92764, + [SMALL_STATE(3243)] = 92781, + [SMALL_STATE(3244)] = 92798, + [SMALL_STATE(3245)] = 92813, + [SMALL_STATE(3246)] = 92830, + [SMALL_STATE(3247)] = 92847, + [SMALL_STATE(3248)] = 92864, + [SMALL_STATE(3249)] = 92881, + [SMALL_STATE(3250)] = 92898, + [SMALL_STATE(3251)] = 92915, + [SMALL_STATE(3252)] = 92930, + [SMALL_STATE(3253)] = 92947, + [SMALL_STATE(3254)] = 92964, + [SMALL_STATE(3255)] = 92981, + [SMALL_STATE(3256)] = 92998, + [SMALL_STATE(3257)] = 93015, + [SMALL_STATE(3258)] = 93032, + [SMALL_STATE(3259)] = 93049, + [SMALL_STATE(3260)] = 93064, + [SMALL_STATE(3261)] = 93081, + [SMALL_STATE(3262)] = 93098, + [SMALL_STATE(3263)] = 93115, + [SMALL_STATE(3264)] = 93132, + [SMALL_STATE(3265)] = 93149, + [SMALL_STATE(3266)] = 93166, + [SMALL_STATE(3267)] = 93183, + [SMALL_STATE(3268)] = 93200, + [SMALL_STATE(3269)] = 93217, + [SMALL_STATE(3270)] = 93234, + [SMALL_STATE(3271)] = 93251, + [SMALL_STATE(3272)] = 93268, + [SMALL_STATE(3273)] = 93285, + [SMALL_STATE(3274)] = 93302, + [SMALL_STATE(3275)] = 93319, + [SMALL_STATE(3276)] = 93336, + [SMALL_STATE(3277)] = 93353, + [SMALL_STATE(3278)] = 93370, + [SMALL_STATE(3279)] = 93387, + [SMALL_STATE(3280)] = 93404, + [SMALL_STATE(3281)] = 93421, + [SMALL_STATE(3282)] = 93438, + [SMALL_STATE(3283)] = 93455, + [SMALL_STATE(3284)] = 93472, + [SMALL_STATE(3285)] = 93489, + [SMALL_STATE(3286)] = 93504, + [SMALL_STATE(3287)] = 93521, + [SMALL_STATE(3288)] = 93536, + [SMALL_STATE(3289)] = 93553, + [SMALL_STATE(3290)] = 93570, + [SMALL_STATE(3291)] = 93587, + [SMALL_STATE(3292)] = 93604, + [SMALL_STATE(3293)] = 93621, + [SMALL_STATE(3294)] = 93638, + [SMALL_STATE(3295)] = 93655, + [SMALL_STATE(3296)] = 93670, + [SMALL_STATE(3297)] = 93687, + [SMALL_STATE(3298)] = 93704, + [SMALL_STATE(3299)] = 93721, + [SMALL_STATE(3300)] = 93738, + [SMALL_STATE(3301)] = 93755, + [SMALL_STATE(3302)] = 93772, + [SMALL_STATE(3303)] = 93789, + [SMALL_STATE(3304)] = 93806, + [SMALL_STATE(3305)] = 93821, + [SMALL_STATE(3306)] = 93838, + [SMALL_STATE(3307)] = 93855, + [SMALL_STATE(3308)] = 93872, + [SMALL_STATE(3309)] = 93889, + [SMALL_STATE(3310)] = 93906, + [SMALL_STATE(3311)] = 93923, + [SMALL_STATE(3312)] = 93940, + [SMALL_STATE(3313)] = 93957, + [SMALL_STATE(3314)] = 93974, + [SMALL_STATE(3315)] = 93991, + [SMALL_STATE(3316)] = 94008, + [SMALL_STATE(3317)] = 94025, + [SMALL_STATE(3318)] = 94042, + [SMALL_STATE(3319)] = 94059, + [SMALL_STATE(3320)] = 94076, + [SMALL_STATE(3321)] = 94093, + [SMALL_STATE(3322)] = 94110, + [SMALL_STATE(3323)] = 94127, + [SMALL_STATE(3324)] = 94144, + [SMALL_STATE(3325)] = 94161, + [SMALL_STATE(3326)] = 94178, + [SMALL_STATE(3327)] = 94195, + [SMALL_STATE(3328)] = 94212, + [SMALL_STATE(3329)] = 94229, + [SMALL_STATE(3330)] = 94246, + [SMALL_STATE(3331)] = 94261, + [SMALL_STATE(3332)] = 94278, + [SMALL_STATE(3333)] = 94295, + [SMALL_STATE(3334)] = 94312, + [SMALL_STATE(3335)] = 94329, + [SMALL_STATE(3336)] = 94346, + [SMALL_STATE(3337)] = 94363, + [SMALL_STATE(3338)] = 94378, + [SMALL_STATE(3339)] = 94395, + [SMALL_STATE(3340)] = 94410, + [SMALL_STATE(3341)] = 94427, + [SMALL_STATE(3342)] = 94442, + [SMALL_STATE(3343)] = 94459, + [SMALL_STATE(3344)] = 94476, + [SMALL_STATE(3345)] = 94493, + [SMALL_STATE(3346)] = 94510, + [SMALL_STATE(3347)] = 94525, + [SMALL_STATE(3348)] = 94540, + [SMALL_STATE(3349)] = 94557, + [SMALL_STATE(3350)] = 94572, + [SMALL_STATE(3351)] = 94587, + [SMALL_STATE(3352)] = 94604, + [SMALL_STATE(3353)] = 94619, + [SMALL_STATE(3354)] = 94634, + [SMALL_STATE(3355)] = 94651, + [SMALL_STATE(3356)] = 94668, + [SMALL_STATE(3357)] = 94685, + [SMALL_STATE(3358)] = 94700, + [SMALL_STATE(3359)] = 94717, + [SMALL_STATE(3360)] = 94732, + [SMALL_STATE(3361)] = 94749, + [SMALL_STATE(3362)] = 94766, + [SMALL_STATE(3363)] = 94781, + [SMALL_STATE(3364)] = 94798, + [SMALL_STATE(3365)] = 94815, + [SMALL_STATE(3366)] = 94832, + [SMALL_STATE(3367)] = 94849, + [SMALL_STATE(3368)] = 94864, + [SMALL_STATE(3369)] = 94881, + [SMALL_STATE(3370)] = 94898, + [SMALL_STATE(3371)] = 94915, + [SMALL_STATE(3372)] = 94930, + [SMALL_STATE(3373)] = 94947, + [SMALL_STATE(3374)] = 94964, + [SMALL_STATE(3375)] = 94981, + [SMALL_STATE(3376)] = 94996, + [SMALL_STATE(3377)] = 95011, + [SMALL_STATE(3378)] = 95028, + [SMALL_STATE(3379)] = 95043, + [SMALL_STATE(3380)] = 95060, + [SMALL_STATE(3381)] = 95077, + [SMALL_STATE(3382)] = 95094, + [SMALL_STATE(3383)] = 95109, + [SMALL_STATE(3384)] = 95126, + [SMALL_STATE(3385)] = 95141, + [SMALL_STATE(3386)] = 95158, + [SMALL_STATE(3387)] = 95175, + [SMALL_STATE(3388)] = 95192, + [SMALL_STATE(3389)] = 95207, + [SMALL_STATE(3390)] = 95224, + [SMALL_STATE(3391)] = 95241, + [SMALL_STATE(3392)] = 95258, + [SMALL_STATE(3393)] = 95275, + [SMALL_STATE(3394)] = 95292, + [SMALL_STATE(3395)] = 95309, + [SMALL_STATE(3396)] = 95324, + [SMALL_STATE(3397)] = 95341, + [SMALL_STATE(3398)] = 95358, + [SMALL_STATE(3399)] = 95375, + [SMALL_STATE(3400)] = 95392, + [SMALL_STATE(3401)] = 95407, + [SMALL_STATE(3402)] = 95422, + [SMALL_STATE(3403)] = 95437, + [SMALL_STATE(3404)] = 95454, + [SMALL_STATE(3405)] = 95469, + [SMALL_STATE(3406)] = 95486, + [SMALL_STATE(3407)] = 95501, + [SMALL_STATE(3408)] = 95518, + [SMALL_STATE(3409)] = 95535, + [SMALL_STATE(3410)] = 95552, + [SMALL_STATE(3411)] = 95567, + [SMALL_STATE(3412)] = 95584, + [SMALL_STATE(3413)] = 95601, + [SMALL_STATE(3414)] = 95618, + [SMALL_STATE(3415)] = 95635, + [SMALL_STATE(3416)] = 95652, + [SMALL_STATE(3417)] = 95669, + [SMALL_STATE(3418)] = 95684, + [SMALL_STATE(3419)] = 95701, + [SMALL_STATE(3420)] = 95718, + [SMALL_STATE(3421)] = 95735, + [SMALL_STATE(3422)] = 95752, + [SMALL_STATE(3423)] = 95769, + [SMALL_STATE(3424)] = 95786, + [SMALL_STATE(3425)] = 95803, + [SMALL_STATE(3426)] = 95820, + [SMALL_STATE(3427)] = 95837, + [SMALL_STATE(3428)] = 95854, + [SMALL_STATE(3429)] = 95869, + [SMALL_STATE(3430)] = 95884, + [SMALL_STATE(3431)] = 95901, + [SMALL_STATE(3432)] = 95918, + [SMALL_STATE(3433)] = 95935, + [SMALL_STATE(3434)] = 95952, + [SMALL_STATE(3435)] = 95969, + [SMALL_STATE(3436)] = 95986, + [SMALL_STATE(3437)] = 96003, + [SMALL_STATE(3438)] = 96020, + [SMALL_STATE(3439)] = 96035, + [SMALL_STATE(3440)] = 96052, + [SMALL_STATE(3441)] = 96069, + [SMALL_STATE(3442)] = 96086, + [SMALL_STATE(3443)] = 96101, + [SMALL_STATE(3444)] = 96118, + [SMALL_STATE(3445)] = 96133, + [SMALL_STATE(3446)] = 96148, + [SMALL_STATE(3447)] = 96165, + [SMALL_STATE(3448)] = 96182, + [SMALL_STATE(3449)] = 96199, + [SMALL_STATE(3450)] = 96214, + [SMALL_STATE(3451)] = 96231, + [SMALL_STATE(3452)] = 96248, + [SMALL_STATE(3453)] = 96265, + [SMALL_STATE(3454)] = 96282, + [SMALL_STATE(3455)] = 96299, + [SMALL_STATE(3456)] = 96316, + [SMALL_STATE(3457)] = 96333, + [SMALL_STATE(3458)] = 96350, + [SMALL_STATE(3459)] = 96367, + [SMALL_STATE(3460)] = 96382, + [SMALL_STATE(3461)] = 96397, + [SMALL_STATE(3462)] = 96414, + [SMALL_STATE(3463)] = 96431, + [SMALL_STATE(3464)] = 96448, + [SMALL_STATE(3465)] = 96465, + [SMALL_STATE(3466)] = 96482, + [SMALL_STATE(3467)] = 96499, + [SMALL_STATE(3468)] = 96516, + [SMALL_STATE(3469)] = 96533, + [SMALL_STATE(3470)] = 96550, + [SMALL_STATE(3471)] = 96567, + [SMALL_STATE(3472)] = 96584, + [SMALL_STATE(3473)] = 96601, + [SMALL_STATE(3474)] = 96618, + [SMALL_STATE(3475)] = 96635, + [SMALL_STATE(3476)] = 96652, + [SMALL_STATE(3477)] = 96669, + [SMALL_STATE(3478)] = 96686, + [SMALL_STATE(3479)] = 96703, + [SMALL_STATE(3480)] = 96720, + [SMALL_STATE(3481)] = 96737, + [SMALL_STATE(3482)] = 96754, + [SMALL_STATE(3483)] = 96771, + [SMALL_STATE(3484)] = 96786, + [SMALL_STATE(3485)] = 96803, + [SMALL_STATE(3486)] = 96820, + [SMALL_STATE(3487)] = 96835, + [SMALL_STATE(3488)] = 96852, + [SMALL_STATE(3489)] = 96869, + [SMALL_STATE(3490)] = 96886, + [SMALL_STATE(3491)] = 96903, + [SMALL_STATE(3492)] = 96920, + [SMALL_STATE(3493)] = 96935, + [SMALL_STATE(3494)] = 96952, + [SMALL_STATE(3495)] = 96969, + [SMALL_STATE(3496)] = 96983, + [SMALL_STATE(3497)] = 96997, + [SMALL_STATE(3498)] = 97011, + [SMALL_STATE(3499)] = 97025, + [SMALL_STATE(3500)] = 97039, + [SMALL_STATE(3501)] = 97053, + [SMALL_STATE(3502)] = 97067, + [SMALL_STATE(3503)] = 97081, + [SMALL_STATE(3504)] = 97095, + [SMALL_STATE(3505)] = 97109, + [SMALL_STATE(3506)] = 97123, + [SMALL_STATE(3507)] = 97137, + [SMALL_STATE(3508)] = 97151, + [SMALL_STATE(3509)] = 97165, + [SMALL_STATE(3510)] = 97179, + [SMALL_STATE(3511)] = 97193, + [SMALL_STATE(3512)] = 97207, + [SMALL_STATE(3513)] = 97221, + [SMALL_STATE(3514)] = 97235, + [SMALL_STATE(3515)] = 97249, + [SMALL_STATE(3516)] = 97263, + [SMALL_STATE(3517)] = 97277, + [SMALL_STATE(3518)] = 97291, + [SMALL_STATE(3519)] = 97305, + [SMALL_STATE(3520)] = 97319, + [SMALL_STATE(3521)] = 97333, + [SMALL_STATE(3522)] = 97347, + [SMALL_STATE(3523)] = 97361, + [SMALL_STATE(3524)] = 97375, + [SMALL_STATE(3525)] = 97389, + [SMALL_STATE(3526)] = 97403, + [SMALL_STATE(3527)] = 97417, + [SMALL_STATE(3528)] = 97431, + [SMALL_STATE(3529)] = 97445, + [SMALL_STATE(3530)] = 97459, + [SMALL_STATE(3531)] = 97473, + [SMALL_STATE(3532)] = 97487, + [SMALL_STATE(3533)] = 97501, + [SMALL_STATE(3534)] = 97515, + [SMALL_STATE(3535)] = 97529, + [SMALL_STATE(3536)] = 97543, + [SMALL_STATE(3537)] = 97557, + [SMALL_STATE(3538)] = 97571, + [SMALL_STATE(3539)] = 97585, + [SMALL_STATE(3540)] = 97599, + [SMALL_STATE(3541)] = 97613, + [SMALL_STATE(3542)] = 97627, + [SMALL_STATE(3543)] = 97641, + [SMALL_STATE(3544)] = 97655, + [SMALL_STATE(3545)] = 97669, + [SMALL_STATE(3546)] = 97683, + [SMALL_STATE(3547)] = 97697, + [SMALL_STATE(3548)] = 97711, + [SMALL_STATE(3549)] = 97725, + [SMALL_STATE(3550)] = 97739, + [SMALL_STATE(3551)] = 97753, + [SMALL_STATE(3552)] = 97767, + [SMALL_STATE(3553)] = 97781, + [SMALL_STATE(3554)] = 97795, + [SMALL_STATE(3555)] = 97809, + [SMALL_STATE(3556)] = 97823, + [SMALL_STATE(3557)] = 97837, + [SMALL_STATE(3558)] = 97851, + [SMALL_STATE(3559)] = 97865, + [SMALL_STATE(3560)] = 97879, + [SMALL_STATE(3561)] = 97893, + [SMALL_STATE(3562)] = 97907, + [SMALL_STATE(3563)] = 97921, + [SMALL_STATE(3564)] = 97935, + [SMALL_STATE(3565)] = 97949, + [SMALL_STATE(3566)] = 97963, + [SMALL_STATE(3567)] = 97977, + [SMALL_STATE(3568)] = 97991, + [SMALL_STATE(3569)] = 98005, + [SMALL_STATE(3570)] = 98019, + [SMALL_STATE(3571)] = 98033, + [SMALL_STATE(3572)] = 98047, + [SMALL_STATE(3573)] = 98061, + [SMALL_STATE(3574)] = 98075, + [SMALL_STATE(3575)] = 98089, + [SMALL_STATE(3576)] = 98103, + [SMALL_STATE(3577)] = 98117, + [SMALL_STATE(3578)] = 98131, + [SMALL_STATE(3579)] = 98145, + [SMALL_STATE(3580)] = 98159, + [SMALL_STATE(3581)] = 98173, + [SMALL_STATE(3582)] = 98187, + [SMALL_STATE(3583)] = 98201, + [SMALL_STATE(3584)] = 98215, + [SMALL_STATE(3585)] = 98229, + [SMALL_STATE(3586)] = 98243, + [SMALL_STATE(3587)] = 98257, + [SMALL_STATE(3588)] = 98271, + [SMALL_STATE(3589)] = 98285, + [SMALL_STATE(3590)] = 98299, + [SMALL_STATE(3591)] = 98313, + [SMALL_STATE(3592)] = 98327, + [SMALL_STATE(3593)] = 98341, + [SMALL_STATE(3594)] = 98355, + [SMALL_STATE(3595)] = 98369, + [SMALL_STATE(3596)] = 98383, + [SMALL_STATE(3597)] = 98397, + [SMALL_STATE(3598)] = 98411, + [SMALL_STATE(3599)] = 98425, + [SMALL_STATE(3600)] = 98439, + [SMALL_STATE(3601)] = 98453, + [SMALL_STATE(3602)] = 98467, + [SMALL_STATE(3603)] = 98481, + [SMALL_STATE(3604)] = 98495, + [SMALL_STATE(3605)] = 98509, + [SMALL_STATE(3606)] = 98523, + [SMALL_STATE(3607)] = 98537, + [SMALL_STATE(3608)] = 98551, + [SMALL_STATE(3609)] = 98565, + [SMALL_STATE(3610)] = 98579, + [SMALL_STATE(3611)] = 98593, + [SMALL_STATE(3612)] = 98607, + [SMALL_STATE(3613)] = 98621, + [SMALL_STATE(3614)] = 98635, + [SMALL_STATE(3615)] = 98649, + [SMALL_STATE(3616)] = 98663, + [SMALL_STATE(3617)] = 98677, + [SMALL_STATE(3618)] = 98691, + [SMALL_STATE(3619)] = 98705, + [SMALL_STATE(3620)] = 98719, + [SMALL_STATE(3621)] = 98733, + [SMALL_STATE(3622)] = 98747, + [SMALL_STATE(3623)] = 98761, + [SMALL_STATE(3624)] = 98775, + [SMALL_STATE(3625)] = 98789, + [SMALL_STATE(3626)] = 98803, + [SMALL_STATE(3627)] = 98817, + [SMALL_STATE(3628)] = 98831, + [SMALL_STATE(3629)] = 98845, + [SMALL_STATE(3630)] = 98859, + [SMALL_STATE(3631)] = 98873, + [SMALL_STATE(3632)] = 98887, + [SMALL_STATE(3633)] = 98901, + [SMALL_STATE(3634)] = 98915, + [SMALL_STATE(3635)] = 98929, + [SMALL_STATE(3636)] = 98943, + [SMALL_STATE(3637)] = 98957, + [SMALL_STATE(3638)] = 98971, + [SMALL_STATE(3639)] = 98985, + [SMALL_STATE(3640)] = 98999, + [SMALL_STATE(3641)] = 99013, + [SMALL_STATE(3642)] = 99027, + [SMALL_STATE(3643)] = 99041, + [SMALL_STATE(3644)] = 99055, + [SMALL_STATE(3645)] = 99069, + [SMALL_STATE(3646)] = 99083, + [SMALL_STATE(3647)] = 99097, + [SMALL_STATE(3648)] = 99111, + [SMALL_STATE(3649)] = 99125, + [SMALL_STATE(3650)] = 99139, + [SMALL_STATE(3651)] = 99153, + [SMALL_STATE(3652)] = 99167, + [SMALL_STATE(3653)] = 99181, + [SMALL_STATE(3654)] = 99195, + [SMALL_STATE(3655)] = 99209, + [SMALL_STATE(3656)] = 99223, + [SMALL_STATE(3657)] = 99237, + [SMALL_STATE(3658)] = 99251, + [SMALL_STATE(3659)] = 99265, + [SMALL_STATE(3660)] = 99279, + [SMALL_STATE(3661)] = 99293, + [SMALL_STATE(3662)] = 99307, + [SMALL_STATE(3663)] = 99321, + [SMALL_STATE(3664)] = 99335, + [SMALL_STATE(3665)] = 99349, + [SMALL_STATE(3666)] = 99363, + [SMALL_STATE(3667)] = 99377, + [SMALL_STATE(3668)] = 99391, + [SMALL_STATE(3669)] = 99405, + [SMALL_STATE(3670)] = 99419, + [SMALL_STATE(3671)] = 99433, + [SMALL_STATE(3672)] = 99447, + [SMALL_STATE(3673)] = 99461, + [SMALL_STATE(3674)] = 99475, + [SMALL_STATE(3675)] = 99489, + [SMALL_STATE(3676)] = 99503, + [SMALL_STATE(3677)] = 99517, + [SMALL_STATE(3678)] = 99531, + [SMALL_STATE(3679)] = 99545, + [SMALL_STATE(3680)] = 99559, + [SMALL_STATE(3681)] = 99573, + [SMALL_STATE(3682)] = 99587, + [SMALL_STATE(3683)] = 99601, + [SMALL_STATE(3684)] = 99615, + [SMALL_STATE(3685)] = 99629, + [SMALL_STATE(3686)] = 99643, + [SMALL_STATE(3687)] = 99657, + [SMALL_STATE(3688)] = 99671, + [SMALL_STATE(3689)] = 99685, + [SMALL_STATE(3690)] = 99699, + [SMALL_STATE(3691)] = 99713, + [SMALL_STATE(3692)] = 99727, + [SMALL_STATE(3693)] = 99741, + [SMALL_STATE(3694)] = 99755, + [SMALL_STATE(3695)] = 99769, + [SMALL_STATE(3696)] = 99783, + [SMALL_STATE(3697)] = 99797, + [SMALL_STATE(3698)] = 99811, + [SMALL_STATE(3699)] = 99825, + [SMALL_STATE(3700)] = 99839, + [SMALL_STATE(3701)] = 99853, + [SMALL_STATE(3702)] = 99867, + [SMALL_STATE(3703)] = 99881, + [SMALL_STATE(3704)] = 99895, + [SMALL_STATE(3705)] = 99909, + [SMALL_STATE(3706)] = 99923, + [SMALL_STATE(3707)] = 99937, + [SMALL_STATE(3708)] = 99951, + [SMALL_STATE(3709)] = 99965, + [SMALL_STATE(3710)] = 99979, + [SMALL_STATE(3711)] = 99993, + [SMALL_STATE(3712)] = 100007, + [SMALL_STATE(3713)] = 100021, + [SMALL_STATE(3714)] = 100035, + [SMALL_STATE(3715)] = 100049, + [SMALL_STATE(3716)] = 100063, + [SMALL_STATE(3717)] = 100077, + [SMALL_STATE(3718)] = 100091, + [SMALL_STATE(3719)] = 100105, + [SMALL_STATE(3720)] = 100119, + [SMALL_STATE(3721)] = 100133, + [SMALL_STATE(3722)] = 100147, + [SMALL_STATE(3723)] = 100161, + [SMALL_STATE(3724)] = 100175, + [SMALL_STATE(3725)] = 100189, + [SMALL_STATE(3726)] = 100203, + [SMALL_STATE(3727)] = 100217, + [SMALL_STATE(3728)] = 100231, + [SMALL_STATE(3729)] = 100245, + [SMALL_STATE(3730)] = 100259, + [SMALL_STATE(3731)] = 100273, + [SMALL_STATE(3732)] = 100287, + [SMALL_STATE(3733)] = 100301, + [SMALL_STATE(3734)] = 100315, + [SMALL_STATE(3735)] = 100329, + [SMALL_STATE(3736)] = 100343, + [SMALL_STATE(3737)] = 100357, + [SMALL_STATE(3738)] = 100371, + [SMALL_STATE(3739)] = 100385, + [SMALL_STATE(3740)] = 100399, + [SMALL_STATE(3741)] = 100413, + [SMALL_STATE(3742)] = 100427, + [SMALL_STATE(3743)] = 100441, + [SMALL_STATE(3744)] = 100455, + [SMALL_STATE(3745)] = 100469, + [SMALL_STATE(3746)] = 100483, + [SMALL_STATE(3747)] = 100497, + [SMALL_STATE(3748)] = 100511, + [SMALL_STATE(3749)] = 100525, + [SMALL_STATE(3750)] = 100539, + [SMALL_STATE(3751)] = 100553, + [SMALL_STATE(3752)] = 100567, + [SMALL_STATE(3753)] = 100581, + [SMALL_STATE(3754)] = 100595, + [SMALL_STATE(3755)] = 100609, + [SMALL_STATE(3756)] = 100623, + [SMALL_STATE(3757)] = 100637, + [SMALL_STATE(3758)] = 100651, + [SMALL_STATE(3759)] = 100665, + [SMALL_STATE(3760)] = 100679, + [SMALL_STATE(3761)] = 100693, + [SMALL_STATE(3762)] = 100707, + [SMALL_STATE(3763)] = 100721, + [SMALL_STATE(3764)] = 100735, + [SMALL_STATE(3765)] = 100749, + [SMALL_STATE(3766)] = 100763, + [SMALL_STATE(3767)] = 100777, + [SMALL_STATE(3768)] = 100791, + [SMALL_STATE(3769)] = 100805, + [SMALL_STATE(3770)] = 100819, + [SMALL_STATE(3771)] = 100833, + [SMALL_STATE(3772)] = 100847, + [SMALL_STATE(3773)] = 100861, + [SMALL_STATE(3774)] = 100875, + [SMALL_STATE(3775)] = 100889, + [SMALL_STATE(3776)] = 100903, + [SMALL_STATE(3777)] = 100917, + [SMALL_STATE(3778)] = 100931, + [SMALL_STATE(3779)] = 100945, + [SMALL_STATE(3780)] = 100959, + [SMALL_STATE(3781)] = 100973, + [SMALL_STATE(3782)] = 100987, + [SMALL_STATE(3783)] = 101001, + [SMALL_STATE(3784)] = 101015, + [SMALL_STATE(3785)] = 101029, + [SMALL_STATE(3786)] = 101043, + [SMALL_STATE(3787)] = 101057, + [SMALL_STATE(3788)] = 101071, + [SMALL_STATE(3789)] = 101085, + [SMALL_STATE(3790)] = 101099, + [SMALL_STATE(3791)] = 101113, + [SMALL_STATE(3792)] = 101127, + [SMALL_STATE(3793)] = 101141, + [SMALL_STATE(3794)] = 101155, + [SMALL_STATE(3795)] = 101169, + [SMALL_STATE(3796)] = 101183, + [SMALL_STATE(3797)] = 101197, + [SMALL_STATE(3798)] = 101211, + [SMALL_STATE(3799)] = 101225, + [SMALL_STATE(3800)] = 101239, + [SMALL_STATE(3801)] = 101253, + [SMALL_STATE(3802)] = 101267, + [SMALL_STATE(3803)] = 101281, + [SMALL_STATE(3804)] = 101295, + [SMALL_STATE(3805)] = 101309, + [SMALL_STATE(3806)] = 101323, + [SMALL_STATE(3807)] = 101337, + [SMALL_STATE(3808)] = 101351, + [SMALL_STATE(3809)] = 101365, + [SMALL_STATE(3810)] = 101379, + [SMALL_STATE(3811)] = 101393, + [SMALL_STATE(3812)] = 101407, + [SMALL_STATE(3813)] = 101421, + [SMALL_STATE(3814)] = 101435, + [SMALL_STATE(3815)] = 101439, + [SMALL_STATE(3816)] = 101443, + [SMALL_STATE(3817)] = 101447, + [SMALL_STATE(3818)] = 101451, + [SMALL_STATE(3819)] = 101455, + [SMALL_STATE(3820)] = 101459, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(768), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2709), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2127), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1102), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [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(870), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2867), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3613), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2860), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2855), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2083), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3577), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1100), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(158), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(12), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(290), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(249), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(810), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(877), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3375), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3592), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2574), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2603), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1409), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1508), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(843), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1060), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2598), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(365), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3001), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2842), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3160), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2599), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1491), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2731), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1424), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3460), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3543), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3619), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2746), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3622), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1100), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(179), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(142), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(354), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1551), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(245), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(809), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(872), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3441), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3638), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2393), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2636), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1416), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1458), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(848), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1069), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(186), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2782), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(364), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2650), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2788), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3293), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2783), + [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1494), + [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2855), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1474), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3760), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1556), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3577), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), - [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2743), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2788), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2783), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2855), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3577), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2959), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3309), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2681), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2198), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2417), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2724), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2455), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 194), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 194), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 202), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 202), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1121), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2852), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2435), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2294), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3250), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2789), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3246), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2025), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(257), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [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_scoped_type_identifier, 3, 0, 52), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3413), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2786), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2435), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2046), + [5596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(265), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [6008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(791), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(453), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2274), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 160), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), + [6531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(796), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2331), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), + [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2460), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2140), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(457), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2321), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [7236] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -202080,10 +203907,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [8] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, [9] = { [ts_external_token_raw_string_literal_content] = true,